├── .gitattributes ├── .gitignore ├── .paket ├── Paket.Restore.targets ├── paket.bootstrapper.exe └── paket.targets ├── .travis.yml ├── FSharp.Charting.Gtk ├── AssemblyInfo.Gtk.fs ├── FSharp.Charting.Gtk.fs ├── FSharp.Charting.Gtk.fsproj ├── FSharp.Charting.Gtk.fsx ├── libs │ ├── Mono.Cairo.dll │ ├── atk-sharp.dll │ ├── gdk-sharp.dll │ ├── glib-sharp.dll │ └── gtk-sharp.dll └── paket.references ├── FSharp.Charting.Tests.sln ├── FSharp.Charting.sln ├── FSharp.Charting ├── AssemblyInfo.fs ├── FSharp.Charting.fs ├── FSharp.Charting.fsproj ├── FSharp.Charting.fsx └── paket.references ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── build.cmd ├── build.fsx ├── build.sh ├── docs ├── content │ ├── BarAndColumnCharts.fsx │ ├── BoxPlotCharts.fsx │ ├── EventEx-0.1.fsx │ ├── FurtherSamples.fsx │ ├── FurtherSamplesGtk.fsx │ ├── LiveChartSamples.fsx │ ├── PieAndDougnutCharts.fsx │ ├── PointAndLineCharts.fsx │ ├── ReferencingTheLibrary.fsx │ ├── StockAndCandlestickCharts.fsx │ ├── UsingChartsInWPF.md │ ├── contributing.md │ ├── fsharpcharting.md │ └── index.fsx ├── files │ └── images │ │ └── logo.png └── tools │ ├── formatters.fsx │ ├── generate.fsx │ └── templates │ └── template.cshtml ├── lib └── GtkSharp │ ├── 2.12 │ ├── bin │ │ ├── MonoPosixHelper.dll │ │ ├── atksharpglue-2.dll │ │ ├── gdk-pixbuf-query-loaders.exe │ │ ├── gdksharpglue-2.dll │ │ ├── gladesharpglue-2.dll │ │ ├── glibsharpglue-2.dll │ │ ├── gspawn-win32-helper-console.exe │ │ ├── gspawn-win32-helper.exe │ │ ├── gtk-query-immodules-2.0.exe │ │ ├── gtksharpglue-2.dll │ │ ├── icudata48.dll │ │ ├── icui18n48.dll │ │ ├── icuio48.dll │ │ ├── icule48.dll │ │ ├── iculx48.dll │ │ ├── icutu48.dll │ │ ├── icuuc48.dll │ │ ├── intl.dll │ │ ├── libatk-1.0-0.dll │ │ ├── libcairo-2.dll │ │ ├── libcroco-0.6-3.dll │ │ ├── libexpat-1.dll │ │ ├── libffi-6.dll │ │ ├── libfontconfig-1.dll │ │ ├── libfreetype-6.dll │ │ ├── libgailutil-2.0-0.dll │ │ ├── libgcc_s_sjlj-1.dll │ │ ├── libgdk-win32-2.0-0.dll │ │ ├── libgdk_pixbuf-2.0-0.dll │ │ ├── libgio-2.0-0.dll │ │ ├── libglade-2.0-0.dll │ │ ├── libglib-2.0-0.dll │ │ ├── libgmodule-2.0-0.dll │ │ ├── libgobject-2.0-0.dll │ │ ├── libgsf-1-114.dll │ │ ├── libgsf-win32-1-114.dll │ │ ├── libgthread-2.0-0.dll │ │ ├── libgtk-win32-2.0-0.dll │ │ ├── libharfbuzz-0.dll │ │ ├── libintl-8.dll │ │ ├── libjasper-1.dll │ │ ├── libjpeg-8.dll │ │ ├── liblzma-5.dll │ │ ├── libpango-1.0-0.dll │ │ ├── libpangocairo-1.0-0.dll │ │ ├── libpangoft2-1.0-0.dll │ │ ├── libpangowin32-1.0-0.dll │ │ ├── libpixman-1-0.dll │ │ ├── libpng15-15.dll │ │ ├── libpng16.dll │ │ ├── librsvg-2-2.dll │ │ ├── libstdc++-6.dll │ │ ├── libtiff-5.dll │ │ ├── libxml2-2.dll │ │ ├── pango-querymodules.exe │ │ ├── pangosharpglue-2.dll │ │ └── zlib1.dll │ ├── etc │ │ ├── fonts │ │ │ ├── fonts.conf │ │ │ └── fonts.dtd │ │ ├── gtk-2.0 │ │ │ ├── gdk-pixbuf.loaders │ │ │ ├── gtk.immodules │ │ │ ├── gtkrc │ │ │ └── immultipress.conf │ │ └── pango │ │ │ └── pango.modules │ ├── lib │ │ ├── Mono.Cairo │ │ │ └── Mono.Cairo.dll │ │ ├── Mono.Posix │ │ │ └── Mono.Posix.dll │ │ ├── gtk-2.0 │ │ │ ├── 2.10.0 │ │ │ │ └── engines │ │ │ │ │ ├── libpixmap.dll │ │ │ │ │ ├── libsvg.dll │ │ │ │ │ ├── libwimp.dll │ │ │ │ │ └── libxamarin.dll │ │ │ └── modules │ │ │ │ └── libgail.dll │ │ └── gtk-sharp-2.0 │ │ │ ├── atk-sharp.dll │ │ │ ├── atk-sharp.pdb │ │ │ ├── gdk-sharp.dll │ │ │ ├── gdk-sharp.pdb │ │ │ ├── glade-sharp.dll │ │ │ ├── glade-sharp.pdb │ │ │ ├── glib-sharp.dll │ │ │ ├── glib-sharp.pdb │ │ │ ├── gtk-dotnet.dll │ │ │ ├── gtk-dotnet.pdb │ │ │ ├── gtk-sharp.dll │ │ │ ├── pango-sharp.dll │ │ │ └── pango-sharp.pdb │ └── share │ │ ├── icons │ │ └── hicolor │ │ │ └── index.theme │ │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── af_atk10.mo │ │ │ │ ├── af_gtk20-properties.mo │ │ │ │ └── af_gtk20.mo │ │ ├── am │ │ │ └── LC_MESSAGES │ │ │ │ ├── am_atk10.mo │ │ │ │ ├── am_glib20.mo │ │ │ │ ├── am_gtk20-properties.mo │ │ │ │ └── am_gtk20.mo │ │ ├── ang │ │ │ └── LC_MESSAGES │ │ │ │ ├── ang_gtk20-properties.mo │ │ │ │ └── ang_gtk20.mo │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── ar_atk10.mo │ │ │ │ ├── ar_glib20.mo │ │ │ │ ├── ar_gtk20-properties.mo │ │ │ │ └── ar_gtk20.mo │ │ ├── as │ │ │ └── LC_MESSAGES │ │ │ │ ├── as_atk10.mo │ │ │ │ ├── as_glib20.mo │ │ │ │ ├── as_gtk20-properties.mo │ │ │ │ └── as_gtk20.mo │ │ ├── ast │ │ │ └── LC_MESSAGES │ │ │ │ ├── ast_gtk20-properties.mo │ │ │ │ └── ast_gtk20.mo │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ ├── az_atk10.mo │ │ │ │ ├── az_glib20.mo │ │ │ │ ├── az_gtk20-properties.mo │ │ │ │ └── az_gtk20.mo │ │ ├── az_IR │ │ │ └── LC_MESSAGES │ │ │ │ ├── az_IR_gtk20-properties.mo │ │ │ │ └── az_IR_gtk20.mo │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── be_atk10.mo │ │ │ │ ├── be_glib20.mo │ │ │ │ ├── be_gtk20-properties.mo │ │ │ │ └── be_gtk20.mo │ │ ├── be@latin │ │ │ └── LC_MESSAGES │ │ │ │ ├── be@latin_atk10.mo │ │ │ │ ├── be@latin_glib20.mo │ │ │ │ ├── be@latin_gtk20-properties.mo │ │ │ │ └── be@latin_gtk20.mo │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── bg_atk10.mo │ │ │ │ ├── bg_glib20.mo │ │ │ │ ├── bg_gtk20-properties.mo │ │ │ │ └── bg_gtk20.mo │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── bn_atk10.mo │ │ │ │ ├── bn_glib20.mo │ │ │ │ ├── bn_gtk20-properties.mo │ │ │ │ └── bn_gtk20.mo │ │ ├── bn_IN │ │ │ └── LC_MESSAGES │ │ │ │ ├── bn_IN_atk10.mo │ │ │ │ ├── bn_IN_glib20.mo │ │ │ │ ├── bn_IN_gtk20-properties.mo │ │ │ │ └── bn_IN_gtk20.mo │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ ├── br_gtk20-properties.mo │ │ │ │ └── br_gtk20.mo │ │ ├── bs │ │ │ └── LC_MESSAGES │ │ │ │ ├── bs_atk10.mo │ │ │ │ ├── bs_glib20.mo │ │ │ │ ├── bs_gtk20-properties.mo │ │ │ │ └── bs_gtk20.mo │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── ca_atk10.mo │ │ │ │ ├── ca_glib20.mo │ │ │ │ ├── ca_gtk20-properties.mo │ │ │ │ └── ca_gtk20.mo │ │ ├── ca@valencia │ │ │ └── LC_MESSAGES │ │ │ │ ├── ca@valencia_atk10.mo │ │ │ │ ├── ca@valencia_glib20.mo │ │ │ │ ├── ca@valencia_gtk20-properties.mo │ │ │ │ └── ca@valencia_gtk20.mo │ │ ├── crh │ │ │ └── LC_MESSAGES │ │ │ │ ├── crh_gtk20-properties.mo │ │ │ │ └── crh_gtk20.mo │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── cs_atk10.mo │ │ │ │ ├── cs_glib20.mo │ │ │ │ ├── cs_gtk20-properties.mo │ │ │ │ └── cs_gtk20.mo │ │ ├── cy │ │ │ └── LC_MESSAGES │ │ │ │ ├── cy_atk10.mo │ │ │ │ ├── cy_glib20.mo │ │ │ │ ├── cy_gtk20-properties.mo │ │ │ │ └── cy_gtk20.mo │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── da_atk10.mo │ │ │ │ ├── da_glib20.mo │ │ │ │ ├── da_gtk20-properties.mo │ │ │ │ └── da_gtk20.mo │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── de_atk10.mo │ │ │ │ ├── de_glib20.mo │ │ │ │ ├── de_gtk20-properties.mo │ │ │ │ └── de_gtk20.mo │ │ ├── dz │ │ │ └── LC_MESSAGES │ │ │ │ ├── dz_atk10.mo │ │ │ │ ├── dz_glib20.mo │ │ │ │ ├── dz_gtk20-properties.mo │ │ │ │ └── dz_gtk20.mo │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── el_atk10.mo │ │ │ │ ├── el_glib20.mo │ │ │ │ ├── el_gtk20-properties.mo │ │ │ │ └── el_gtk20.mo │ │ ├── en_CA │ │ │ └── LC_MESSAGES │ │ │ │ ├── en_CA_atk10.mo │ │ │ │ ├── en_CA_glib20.mo │ │ │ │ ├── en_CA_gtk20-properties.mo │ │ │ │ └── en_CA_gtk20.mo │ │ ├── en_GB │ │ │ └── LC_MESSAGES │ │ │ │ ├── en_GB_atk10.mo │ │ │ │ ├── en_GB_glib20.mo │ │ │ │ ├── en_GB_gtk20-properties.mo │ │ │ │ └── en_GB_gtk20.mo │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ ├── eo_atk10.mo │ │ │ │ ├── eo_glib20.mo │ │ │ │ ├── eo_gtk20-properties.mo │ │ │ │ └── eo_gtk20.mo │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── es_atk10.mo │ │ │ │ ├── es_glib20.mo │ │ │ │ ├── es_gtk20-properties.mo │ │ │ │ └── es_gtk20.mo │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── et_atk10.mo │ │ │ │ ├── et_glib20.mo │ │ │ │ ├── et_gtk20-properties.mo │ │ │ │ └── et_gtk20.mo │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ ├── eu_atk10.mo │ │ │ │ ├── eu_glib20.mo │ │ │ │ ├── eu_gtk20-properties.mo │ │ │ │ └── eu_gtk20.mo │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── fa_atk10.mo │ │ │ │ ├── fa_glib20.mo │ │ │ │ ├── fa_gtk20-properties.mo │ │ │ │ └── fa_gtk20.mo │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── fi_atk10.mo │ │ │ │ ├── fi_glib20.mo │ │ │ │ ├── fi_gtk20-properties.mo │ │ │ │ └── fi_gtk20.mo │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── fr_atk10.mo │ │ │ │ ├── fr_glib20.mo │ │ │ │ ├── fr_gtk20-properties.mo │ │ │ │ └── fr_gtk20.mo │ │ ├── ga │ │ │ └── LC_MESSAGES │ │ │ │ ├── ga_atk10.mo │ │ │ │ ├── ga_glib20.mo │ │ │ │ ├── ga_gtk20-properties.mo │ │ │ │ └── ga_gtk20.mo │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ ├── gl_atk10.mo │ │ │ │ ├── gl_glib20.mo │ │ │ │ ├── gl_gtk20-properties.mo │ │ │ │ └── gl_gtk20.mo │ │ ├── gu │ │ │ └── LC_MESSAGES │ │ │ │ ├── gu_atk10.mo │ │ │ │ ├── gu_glib20.mo │ │ │ │ ├── gu_gtk20-properties.mo │ │ │ │ └── gu_gtk20.mo │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── he_atk10.mo │ │ │ │ ├── he_glib20.mo │ │ │ │ ├── he_gtk20-properties.mo │ │ │ │ └── he_gtk20.mo │ │ ├── hi │ │ │ └── LC_MESSAGES │ │ │ │ ├── hi_atk10.mo │ │ │ │ ├── hi_glib20.mo │ │ │ │ ├── hi_gtk20-properties.mo │ │ │ │ └── hi_gtk20.mo │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── hr_atk10.mo │ │ │ │ ├── hr_glib20.mo │ │ │ │ ├── hr_gtk20-properties.mo │ │ │ │ └── hr_gtk20.mo │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── hu_atk10.mo │ │ │ │ ├── hu_glib20.mo │ │ │ │ ├── hu_gtk20-properties.mo │ │ │ │ └── hu_gtk20.mo │ │ ├── hy │ │ │ └── LC_MESSAGES │ │ │ │ ├── hy_glib20.mo │ │ │ │ ├── hy_gtk20-properties.mo │ │ │ │ └── hy_gtk20.mo │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ ├── ia_gtk20-properties.mo │ │ │ │ └── ia_gtk20.mo │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── id_atk10.mo │ │ │ │ ├── id_glib20.mo │ │ │ │ ├── id_gtk20-properties.mo │ │ │ │ └── id_gtk20.mo │ │ ├── io │ │ │ └── LC_MESSAGES │ │ │ │ ├── io_gtk20-properties.mo │ │ │ │ └── io_gtk20.mo │ │ ├── is │ │ │ └── LC_MESSAGES │ │ │ │ ├── is_atk10.mo │ │ │ │ ├── is_glib20.mo │ │ │ │ ├── is_gtk20-properties.mo │ │ │ │ └── is_gtk20.mo │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── it_atk10.mo │ │ │ │ ├── it_glib20.mo │ │ │ │ ├── it_gtk20-properties.mo │ │ │ │ └── it_gtk20.mo │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── ja_atk10.mo │ │ │ │ ├── ja_glib20.mo │ │ │ │ ├── ja_gtk20-properties.mo │ │ │ │ └── ja_gtk20.mo │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── ka_atk10.mo │ │ │ │ ├── ka_glib20.mo │ │ │ │ ├── ka_gtk20-properties.mo │ │ │ │ └── ka_gtk20.mo │ │ ├── kn │ │ │ └── LC_MESSAGES │ │ │ │ ├── kn_atk10.mo │ │ │ │ ├── kn_glib20.mo │ │ │ │ ├── kn_gtk20-properties.mo │ │ │ │ └── kn_gtk20.mo │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── ko_atk10.mo │ │ │ │ ├── ko_glib20.mo │ │ │ │ ├── ko_gtk20-properties.mo │ │ │ │ └── ko_gtk20.mo │ │ ├── ku │ │ │ └── LC_MESSAGES │ │ │ │ ├── ku_atk10.mo │ │ │ │ ├── ku_glib20.mo │ │ │ │ ├── ku_gtk20-properties.mo │ │ │ │ └── ku_gtk20.mo │ │ ├── li │ │ │ └── LC_MESSAGES │ │ │ │ ├── li_atk10.mo │ │ │ │ ├── li_gtk20-properties.mo │ │ │ │ └── li_gtk20.mo │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── lt_atk10.mo │ │ │ │ ├── lt_glib20.mo │ │ │ │ ├── lt_gtk20-properties.mo │ │ │ │ └── lt_gtk20.mo │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── lv_atk10.mo │ │ │ │ ├── lv_glib20.mo │ │ │ │ ├── lv_gtk20-properties.mo │ │ │ │ └── lv_gtk20.mo │ │ ├── mai │ │ │ └── LC_MESSAGES │ │ │ │ ├── mai_atk10.mo │ │ │ │ ├── mai_glib20.mo │ │ │ │ ├── mai_gtk20-properties.mo │ │ │ │ └── mai_gtk20.mo │ │ ├── mg │ │ │ └── LC_MESSAGES │ │ │ │ └── mg_glib20.mo │ │ ├── mi │ │ │ └── LC_MESSAGES │ │ │ │ ├── mi_gtk20-properties.mo │ │ │ │ └── mi_gtk20.mo │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ ├── mk_atk10.mo │ │ │ │ ├── mk_glib20.mo │ │ │ │ ├── mk_gtk20-properties.mo │ │ │ │ └── mk_gtk20.mo │ │ ├── ml │ │ │ └── LC_MESSAGES │ │ │ │ ├── ml_atk10.mo │ │ │ │ ├── ml_glib20.mo │ │ │ │ ├── ml_gtk20-properties.mo │ │ │ │ └── ml_gtk20.mo │ │ ├── mn │ │ │ └── LC_MESSAGES │ │ │ │ ├── mn_atk10.mo │ │ │ │ ├── mn_glib20.mo │ │ │ │ ├── mn_gtk20-properties.mo │ │ │ │ └── mn_gtk20.mo │ │ ├── mr │ │ │ └── LC_MESSAGES │ │ │ │ ├── mr_atk10.mo │ │ │ │ ├── mr_glib20.mo │ │ │ │ ├── mr_gtk20-properties.mo │ │ │ │ └── mr_gtk20.mo │ │ ├── ms │ │ │ └── LC_MESSAGES │ │ │ │ ├── ms_atk10.mo │ │ │ │ ├── ms_glib20.mo │ │ │ │ ├── ms_gtk20-properties.mo │ │ │ │ └── ms_gtk20.mo │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ ├── nb_atk10.mo │ │ │ │ ├── nb_glib20.mo │ │ │ │ ├── nb_gtk20-properties.mo │ │ │ │ └── nb_gtk20.mo │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ ├── ne_atk10.mo │ │ │ │ ├── ne_glib20.mo │ │ │ │ ├── ne_gtk20-properties.mo │ │ │ │ └── ne_gtk20.mo │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── nl_atk10.mo │ │ │ │ ├── nl_glib20.mo │ │ │ │ ├── nl_gtk20-properties.mo │ │ │ │ └── nl_gtk20.mo │ │ ├── nn │ │ │ └── LC_MESSAGES │ │ │ │ ├── nn_atk10.mo │ │ │ │ ├── nn_glib20.mo │ │ │ │ ├── nn_gtk20-properties.mo │ │ │ │ └── nn_gtk20.mo │ │ ├── nso │ │ │ └── LC_MESSAGES │ │ │ │ ├── nso_gtk20-properties.mo │ │ │ │ └── nso_gtk20.mo │ │ ├── oc │ │ │ └── LC_MESSAGES │ │ │ │ ├── oc_atk10.mo │ │ │ │ ├── oc_glib20.mo │ │ │ │ ├── oc_gtk20-properties.mo │ │ │ │ └── oc_gtk20.mo │ │ ├── or │ │ │ └── LC_MESSAGES │ │ │ │ ├── or_atk10.mo │ │ │ │ ├── or_glib20.mo │ │ │ │ ├── or_gtk20-properties.mo │ │ │ │ └── or_gtk20.mo │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ ├── pa_atk10.mo │ │ │ │ ├── pa_glib20.mo │ │ │ │ ├── pa_gtk20-properties.mo │ │ │ │ └── pa_gtk20.mo │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── pl_atk10.mo │ │ │ │ ├── pl_glib20.mo │ │ │ │ ├── pl_gtk20-properties.mo │ │ │ │ └── pl_gtk20.mo │ │ ├── ps │ │ │ └── LC_MESSAGES │ │ │ │ ├── ps_atk10.mo │ │ │ │ ├── ps_glib20.mo │ │ │ │ ├── ps_gtk20-properties.mo │ │ │ │ └── ps_gtk20.mo │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ ├── pt_atk10.mo │ │ │ │ ├── pt_glib20.mo │ │ │ │ ├── pt_gtk20-properties.mo │ │ │ │ └── pt_gtk20.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── pt_BR_atk10.mo │ │ │ │ ├── pt_BR_glib20.mo │ │ │ │ ├── pt_BR_gtk20-properties.mo │ │ │ │ └── pt_BR_gtk20.mo │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── ro_atk10.mo │ │ │ │ ├── ro_glib20.mo │ │ │ │ ├── ro_gtk20-properties.mo │ │ │ │ └── ro_gtk20.mo │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── ru_atk10.mo │ │ │ │ ├── ru_glib20.mo │ │ │ │ ├── ru_gtk20-properties.mo │ │ │ │ └── ru_gtk20.mo │ │ ├── rw │ │ │ └── LC_MESSAGES │ │ │ │ ├── rw_atk10.mo │ │ │ │ ├── rw_glib20.mo │ │ │ │ ├── rw_gtk20-properties.mo │ │ │ │ └── rw_gtk20.mo │ │ ├── si │ │ │ └── LC_MESSAGES │ │ │ │ ├── si_atk10.mo │ │ │ │ ├── si_glib20.mo │ │ │ │ ├── si_gtk20-properties.mo │ │ │ │ └── si_gtk20.mo │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── sk_atk10.mo │ │ │ │ ├── sk_glib20.mo │ │ │ │ ├── sk_gtk20-properties.mo │ │ │ │ └── sk_gtk20.mo │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sl_atk10.mo │ │ │ │ ├── sl_glib20.mo │ │ │ │ ├── sl_gtk20-properties.mo │ │ │ │ └── sl_gtk20.mo │ │ ├── sq │ │ │ └── LC_MESSAGES │ │ │ │ ├── sq_atk10.mo │ │ │ │ ├── sq_glib20.mo │ │ │ │ ├── sq_gtk20-properties.mo │ │ │ │ └── sq_gtk20.mo │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sr_atk10.mo │ │ │ │ ├── sr_glib20.mo │ │ │ │ ├── sr_gtk20-properties.mo │ │ │ │ └── sr_gtk20.mo │ │ ├── sr@ije │ │ │ └── LC_MESSAGES │ │ │ │ ├── sr@ije_atk10.mo │ │ │ │ ├── sr@ije_glib20.mo │ │ │ │ ├── sr@ije_gtk20-properties.mo │ │ │ │ └── sr@ije_gtk20.mo │ │ ├── sr@latin │ │ │ └── LC_MESSAGES │ │ │ │ ├── sr@latin_atk10.mo │ │ │ │ ├── sr@latin_glib20.mo │ │ │ │ ├── sr@latin_gtk20-properties.mo │ │ │ │ └── sr@latin_gtk20.mo │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── sv_atk10.mo │ │ │ │ ├── sv_glib20.mo │ │ │ │ ├── sv_gtk20-properties.mo │ │ │ │ └── sv_gtk20.mo │ │ ├── ta │ │ │ └── LC_MESSAGES │ │ │ │ ├── ta_atk10.mo │ │ │ │ ├── ta_glib20.mo │ │ │ │ ├── ta_gtk20-properties.mo │ │ │ │ └── ta_gtk20.mo │ │ ├── te │ │ │ └── LC_MESSAGES │ │ │ │ ├── te_atk10.mo │ │ │ │ ├── te_glib20.mo │ │ │ │ ├── te_gtk20-properties.mo │ │ │ │ └── te_gtk20.mo │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── th_atk10.mo │ │ │ │ ├── th_glib20.mo │ │ │ │ ├── th_gtk20-properties.mo │ │ │ │ └── th_gtk20.mo │ │ ├── tk │ │ │ └── LC_MESSAGES │ │ │ │ ├── tk_atk10.mo │ │ │ │ ├── tk_gtk20-properties.mo │ │ │ │ └── tk_gtk20.mo │ │ ├── tl │ │ │ └── LC_MESSAGES │ │ │ │ └── tl_glib20.mo │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── tr_atk10.mo │ │ │ │ ├── tr_glib20.mo │ │ │ │ ├── tr_gtk20-properties.mo │ │ │ │ └── tr_gtk20.mo │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ ├── tt_atk10.mo │ │ │ │ ├── tt_glib20.mo │ │ │ │ ├── tt_gtk20-properties.mo │ │ │ │ └── tt_gtk20.mo │ │ ├── ug │ │ │ └── LC_MESSAGES │ │ │ │ └── ug_atk10.mo │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── uk_atk10.mo │ │ │ │ ├── uk_glib20.mo │ │ │ │ ├── uk_gtk20-properties.mo │ │ │ │ └── uk_gtk20.mo │ │ ├── ur │ │ │ └── LC_MESSAGES │ │ │ │ ├── ur_gtk20-properties.mo │ │ │ │ └── ur_gtk20.mo │ │ ├── uz │ │ │ └── LC_MESSAGES │ │ │ │ ├── uz_gtk20-properties.mo │ │ │ │ └── uz_gtk20.mo │ │ ├── uz@cyrillic │ │ │ └── LC_MESSAGES │ │ │ │ ├── uz@cyrillic_gtk20-properties.mo │ │ │ │ └── uz@cyrillic_gtk20.mo │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── vi_atk10.mo │ │ │ │ ├── vi_glib20.mo │ │ │ │ ├── vi_gtk20-properties.mo │ │ │ │ └── vi_gtk20.mo │ │ ├── wa │ │ │ └── LC_MESSAGES │ │ │ │ ├── wa_atk10.mo │ │ │ │ ├── wa_glib20.mo │ │ │ │ ├── wa_gtk20-properties.mo │ │ │ │ └── wa_gtk20.mo │ │ ├── xh │ │ │ └── LC_MESSAGES │ │ │ │ ├── xh_atk10.mo │ │ │ │ ├── xh_glib20.mo │ │ │ │ ├── xh_gtk20-properties.mo │ │ │ │ └── xh_gtk20.mo │ │ ├── yi │ │ │ └── LC_MESSAGES │ │ │ │ ├── yi_atk10.mo │ │ │ │ ├── yi_glib20.mo │ │ │ │ ├── yi_gtk20-properties.mo │ │ │ │ └── yi_gtk20.mo │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── zh_CN_atk10.mo │ │ │ │ ├── zh_CN_glib20.mo │ │ │ │ ├── zh_CN_gtk20-properties.mo │ │ │ │ └── zh_CN_gtk20.mo │ │ ├── zh_HK │ │ │ └── LC_MESSAGES │ │ │ │ ├── zh_HK_atk10.mo │ │ │ │ ├── zh_HK_glib20.mo │ │ │ │ ├── zh_HK_gtk20-properties.mo │ │ │ │ └── zh_HK_gtk20.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── zh_TW_atk10.mo │ │ │ ├── zh_TW_glib20.mo │ │ │ ├── zh_TW_gtk20-properties.mo │ │ │ └── zh_TW_gtk20.mo │ │ └── themes │ │ ├── Default │ │ └── gtkrc │ │ └── MS-Windows │ │ └── gtk-2.0 │ │ └── gtkrc │ └── updateinfo ├── misc ├── logo.pdn └── logo.png ├── nuget ├── FSharp.Charting.Gtk.nuspec ├── FSharp.Charting.Gtk.template ├── FSharp.Charting.nuspec ├── FSharp.Charting.template └── publish.cmd ├── paket.dependencies ├── paket.lock ├── src ├── AssemblyInfo.Gtk.fs ├── AssemblyInfo.fs ├── FSharp.Charting.Gtk.fsproj └── paket.references └── tests ├── Chart.Tests.fs ├── Common └── FsUnit.fs ├── FSharp.Charting.Tests.fsproj ├── app.config └── paket.references /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.sln text eol=crlf merge=union 5 | 6 | # Standard to msysgit 7 | *.doc diff=astextplain 8 | *.DOC diff=astextplain 9 | *.docx diff=astextplain 10 | *.DOCX diff=astextplain 11 | *.dot diff=astextplain 12 | *.DOT diff=astextplain 13 | *.pdf diff=astextplain 14 | *.PDF diff=astextplain 15 | *.rtf diff=astextplain 16 | *.RTF diff=astextplain 17 | 18 | *.sh text eol=lf 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/bin/* 2 | src/obj/* 3 | bin/* 4 | tests/bin/* 5 | tests/obj/* 6 | *.suo 7 | packages/* 8 | TestResults.xml 9 | temp/* 10 | .paket/paket.exe 11 | *.orig 12 | docs/output 13 | .fake 14 | FSharp.Charting.Gtk/bin/ 15 | FSharp.Charting.Gtk/obj/ 16 | FSharp.Charting/obj/ 17 | -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | 7 | true 8 | $(MSBuildThisFileDirectory) 9 | $(MSBuildThisFileDirectory)..\ 10 | 11 | 12 | 13 | $(PaketToolsPath)paket.exe 14 | $(PaketToolsPath)paket.bootstrapper.exe 15 | "$(PaketExePath)" 16 | mono --runtime=v4.0.30319 $(PaketExePath) 17 | "$(PaketBootStrapperExePath)" 18 | mono --runtime=v4.0.30319 $(PaketBootStrapperExePath) 19 | 20 | $(PaketCommand) restore 21 | $(PaketBootStrapperCommand) 22 | 23 | RestorePackages; $(BuildDependsOn); 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: csharp 2 | 3 | install: 4 | 5 | script: 6 | - ./build.sh BuildGtk 7 | 8 | -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/AssemblyInfo.Gtk.fs: -------------------------------------------------------------------------------- 1 | // Auto-Generated by FAKE; do not edit 2 | namespace System 3 | open System.Reflection 4 | 5 | [] 6 | [] 7 | [] 8 | [] 9 | [] 10 | do () 11 | 12 | module internal AssemblyVersionInformation = 13 | let [] AssemblyTitle = "FSharp.Charting.Gtk" 14 | let [] AssemblyProduct = "FSharp.Charting.Gtk" 15 | let [] AssemblyDescription = "A Charting Library for F# (Gtk, cross-platform)" 16 | let [] AssemblyVersion = "2.1.0" 17 | let [] AssemblyFileVersion = "2.1.0" 18 | -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/FSharp.Charting.Gtk.fsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | #nowarn "211" 4 | #nowarn "40" 5 | 6 | // When compiling, a reference to this is needed 7 | 8 | #r "FSharp.Compiler.Interactive.Settings.dll" 9 | 10 | // On windows we just reference the DLLs. On Mono we must reference them in ../gtk-sharp-2.0 relative 11 | // to the Mono installation. 12 | // 13 | // On Mono OSX/Linux we could just use 14 | // 15 | //#r "../gtk-sharp-2.0/gtk-sharp.dll" 16 | //#r "../gtk-sharp-2.0/gdk-sharp.dll" 17 | //#r "../gtk-sharp-2.0/atk-sharp.dll" 18 | //#r "../gtk-sharp-2.0/glib-sharp.dll" 19 | // 20 | // and on .NET on Windows 21 | // 22 | //#r "gtk-sharp.dll" 23 | //#r "gdk-sharp.dll" 24 | //#r "atk-sharp.dll" 25 | //#r "glib-sharp.dll" 26 | 27 | #I "/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/gtk-sharp-2.0" 28 | #I "/usr/lib/mono/gtk-sharp-2.0" 29 | 30 | // In Ubuntu, GTK-sharp libraries are split into various directories 31 | #I "/usr/lib/cli/glib-sharp-2.0/" 32 | #I "/usr/lib/cli/atk-sharp-2.0/" 33 | #I "/usr/lib/cli/gtk-sharp-2.0/" 34 | #I "/usr/lib/cli/gdk-sharp-2.0/" 35 | 36 | #r "gtk-sharp.dll" 37 | #r "gdk-sharp.dll" 38 | #r "atk-sharp.dll" 39 | #r "glib-sharp.dll" 40 | 41 | // In F# 2.0, 3.0 and 3.1, the resolution of #r paths in #load'd scripts is NOT relative to the directory where the script 42 | // lives. However, the resolution of #I paths is, and the #I paths have local file scope. 43 | // 44 | // This means that using #I __SOURCE_DIRECTORY__ is sufficient to enable local resolution of #r and #I paths within an included script file. 45 | 46 | #I __SOURCE_DIRECTORY__ 47 | #I "lib/net40" 48 | 49 | #r "OxyPlot.dll" 50 | #r "OxyPlot.GtkSharp.dll" 51 | #r "FSharp.Charting.Gtk.dll" 52 | 53 | open System 54 | let verifyMac () = 55 | try 56 | use p=new System.Diagnostics.Process() 57 | p.StartInfo.FileName<-"uname" 58 | p.StartInfo.Arguments<-"-s" 59 | p.StartInfo.RedirectStandardOutput<-true 60 | p.StartInfo.UseShellExecute<-false 61 | p.StartInfo.CreateNoWindow<-true 62 | p.Start() |> ignore 63 | let kernalName=p.StandardOutput.ReadLine() 64 | p.WaitForExit() 65 | kernalName="Darwin" 66 | with 67 | |_ ->false 68 | 69 | let isMac = 70 | match Environment.OSVersion.Platform with 71 | | PlatformID.MacOSX -> true 72 | | PlatformID.Unix -> verifyMac() 73 | | _ -> false 74 | // Workaround bug http://stackoverflow.com/questions/13885454/mono-on-osx-couldnt-find-gtksharpglue-2-dll 75 | // 76 | // There is no harm if this code is run more than once. 77 | if isMac then 78 | let prevDynLoadPath = Environment.GetEnvironmentVariable("DYLD_FALLBACK_LIBRARY_PATH") 79 | let newDynLoadPath = "/Library/Frameworks/Mono.framework/Versions/Current/lib" + (match prevDynLoadPath with null -> "" | s -> ":" + s) + ":/usr/lib" 80 | System.Environment.SetEnvironmentVariable("DYLD_FALLBACK_LIBRARY_PATH", newDynLoadPath) 81 | 82 | // Initialize Gtk. There is no harm if this code is run more than once. 83 | Gtk.Application.Init() 84 | 85 | fsi.EventLoop <- 86 | { new Microsoft.FSharp.Compiler.Interactive.IEventLoop with 87 | member x.Run() = Gtk.Application.Run() |> ignore; false 88 | member x.Invoke f = 89 | let res = ref None 90 | let evt = new System.Threading.AutoResetEvent(false) 91 | Gtk.Application.Invoke(new System.EventHandler(fun _ _ -> 92 | res := Some(f()) 93 | evt.Set() |> ignore )) 94 | evt.WaitOne() |> ignore 95 | res.Value.Value 96 | member x.ScheduleRestart() = () } 97 | 98 | 99 | // Add an auto-display for things of type "GenericChart" 100 | 101 | open FSharp.Charting 102 | module FsiAutoShow = 103 | fsi.AddPrinter(fun (ch:FSharp.Charting.ChartTypes.GenericChart) -> ch.ShowChart() |> ignore; "(Chart)") 104 | 105 | -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/libs/Mono.Cairo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/FSharp.Charting.Gtk/libs/Mono.Cairo.dll -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/libs/atk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/FSharp.Charting.Gtk/libs/atk-sharp.dll -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/libs/gdk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/FSharp.Charting.Gtk/libs/gdk-sharp.dll -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/libs/glib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/FSharp.Charting.Gtk/libs/glib-sharp.dll -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/libs/gtk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/FSharp.Charting.Gtk/libs/gtk-sharp.dll -------------------------------------------------------------------------------- /FSharp.Charting.Gtk/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core 2 | OxyPlot.GtkSharp -------------------------------------------------------------------------------- /FSharp.Charting.Tests.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 12.00 2 | # Visual Studio 2013 3 | VisualStudioVersion = 12.0.31101.0 4 | MinimumVisualStudioVersion = 10.0.40219.1 5 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{47D32F6E-7247-4196-8F8F-277C52DCA647}" 6 | ProjectSection(SolutionItems) = preProject 7 | paket.dependencies = paket.dependencies 8 | paket.lock = paket.lock 9 | EndProjectSection 10 | EndProject 11 | Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Charting.Tests", "tests\FSharp.Charting.Tests.fsproj", "{5EF9FF95-1C75-458A-983A-168E43945913}" 12 | EndProject 13 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0A9E8062-1D58-4E25-B89A-16B72E95A012}" 14 | ProjectSection(SolutionItems) = preProject 15 | examples\BarAndColumnCharts.fsx = examples\BarAndColumnCharts.fsx 16 | examples\BoxPlotCharts.fsx = examples\BoxPlotCharts.fsx 17 | examples\EventEx-0.1.fsx = examples\EventEx-0.1.fsx 18 | examples\FurtherSamples.fsx = examples\FurtherSamples.fsx 19 | examples\LiveChartSamples.fsx = examples\LiveChartSamples.fsx 20 | examples\PieAndDougnutCharts.fsx = examples\PieAndDougnutCharts.fsx 21 | examples\PointAndLineCharts.fsx = examples\PointAndLineCharts.fsx 22 | examples\ReferencingTheLibrary.fsx = examples\ReferencingTheLibrary.fsx 23 | examples\StockAndCandlestickCharts.fsx = examples\StockAndCandlestickCharts.fsx 24 | EndProjectSection 25 | EndProject 26 | Global 27 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 28 | Debug|Any CPU = Debug|Any CPU 29 | Release|Any CPU = Release|Any CPU 30 | EndGlobalSection 31 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 32 | {5EF9FF95-1C75-458A-983A-168E43945913}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 33 | {5EF9FF95-1C75-458A-983A-168E43945913}.Debug|Any CPU.Build.0 = Debug|Any CPU 34 | {5EF9FF95-1C75-458A-983A-168E43945913}.Release|Any CPU.ActiveCfg = Release|Any CPU 35 | {5EF9FF95-1C75-458A-983A-168E43945913}.Release|Any CPU.Build.0 = Release|Any CPU 36 | EndGlobalSection 37 | GlobalSection(SolutionProperties) = preSolution 38 | HideSolutionNode = FALSE 39 | EndGlobalSection 40 | EndGlobal 41 | -------------------------------------------------------------------------------- /FSharp.Charting/AssemblyInfo.fs: -------------------------------------------------------------------------------- 1 | // Auto-Generated by FAKE; do not edit 2 | namespace System 3 | open System.Reflection 4 | 5 | [] 6 | [] 7 | [] 8 | [] 9 | [] 10 | do () 11 | 12 | module internal AssemblyVersionInformation = 13 | let [] AssemblyTitle = "FSharp.Charting" 14 | let [] AssemblyProduct = "FSharp.Charting" 15 | let [] AssemblyDescription = "A Charting Library for F#" 16 | let [] AssemblyVersion = "2.1.0" 17 | let [] AssemblyFileVersion = "2.1.0" 18 | -------------------------------------------------------------------------------- /FSharp.Charting/FSharp.Charting.fsx: -------------------------------------------------------------------------------- 1 | //---------------------------------------------------------------------------- 2 | // Copyright (c) 2002-2013 Microsoft Corporation 3 | // 4 | // This source code is subject to terms and conditions of the Apache License, Version 2.0. A 5 | // copy of the license can be found in the License.html file at the root of this distribution. 6 | // By using this source code in any fashion, you are agreeing to be bound 7 | // by the terms of the Apache License, Version 2.0. 8 | // 9 | // You must not remove this notice, or any other, from this software. 10 | // 11 | // Originally based on https://fsharppowerpack.codeplex.com/SourceControl/changeset/71707 12 | // 13 | // Modified by Tomas Petricek and other contributors under the Apache 2.0 License 14 | //---------------------------------------------------------------------------- 15 | 16 | #r "System.Windows.Forms.DataVisualization.dll" 17 | #nowarn "211" 18 | #I __SOURCE_DIRECTORY__ 19 | #I "lib/net45" 20 | #r "FSharp.Charting.dll" 21 | 22 | open FSharp.Charting 23 | module FsiAutoShow = 24 | fsi.AddPrinter(fun (ch:FSharp.Charting.ChartTypes.GenericChart) -> ch.ShowChart() |> ignore; "(Chart)") 25 | 26 | -------------------------------------------------------------------------------- /FSharp.Charting/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Tomas Petricek 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a 6 | copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included 14 | in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 17 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | Packaged versions of this software may include copies of OxyPlot.Core.dll and OxyPlot.GtkSharp.dll, license below. 25 | 26 | ------ 27 | 28 | The MIT License (MIT) 29 | 30 | Copyright (c) 2012 Oystein Bjorke 31 | 32 | Permission is hereby granted, free of charge, to any person obtaining a 33 | copy of this software and associated documentation files (the 34 | "Software"), to deal in the Software without restriction, including 35 | without limitation the rights to use, copy, modify, merge, publish, 36 | distribute, sublicense, and/or sell copies of the Software, and to 37 | permit persons to whom the Software is furnished to do so, subject to 38 | the following conditions: 39 | 40 | The above copyright notice and this permission notice shall be included 41 | in all copies or substantial portions of the Software. 42 | 43 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 44 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 45 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 46 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 47 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 48 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 49 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FSharp.Charting [![Travis build status](https://travis-ci.org/fslaborg/FSharp.Charting.png)](https://travis-ci.org/fslaborg/FSharp.Charting) [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/enfmk5gpa6f12tu6/branch/master?svg=true)](https://ci.appveyor.com/project/tpetricek/fsharp-charting/branch/master) 2 | 3 | The `FSharp.Charting` library implements charting suitable for use from F# scripting. 4 | 5 | See https://fslab.org/FSharp.Charting/ and [other charting libraries for use with F#](https://fsharp.org/guides/data-science/#charting) 6 | 7 | ## Library license 8 | 9 | The library is available under MIT. For more information see the [License file](https://github.com/fslaborg/FSharp.Charting/blob/master/LICENSE.md) in the GitHub repository. 10 | 11 | ## Maintainer(s) 12 | 13 | - [@dsyme](https://github.com/dsyme) 14 | - [@tpetricek](https://github.com/tpetricek) 15 | - [@simra](https://github.com/simra) 16 | 17 | The default maintainer account for projects under "fslaborg" is [@fsprojects](https://github.com/fsprojects) - F# Community Project Incubation Space (repo management) 18 | 19 | ## Releasing 20 | 21 | Release packages using: 22 | 23 | set APIKEY=... 24 | ..\fsharp\.nuget\NuGet.exe push -source https://nuget.org bin\*.nupkg %APIKEY% 25 | -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- 1 | #### 2.1.0 - 20.07.2018 2 | * Merge master to get 0.91 updates 3 | 4 | #### 2.0.0 - 20.07.2018 5 | * Update docs an rebrand as 2.0.0 6 | 7 | #### 0.91.1 11.08.2017 8 | * Fix #133 9 | * Add Candlestick charts. #131 10 | 11 | #### 0.91.0 07.06.2017 12 | * Update packages 13 | * Use paket to build nuget packages 14 | * Update to OxyPlot 1.0.0 15 | 16 | #### 0.90.14 - 20.04.2016 17 | * Enable access to underlying .NET chart object 18 | * Save chart objects without Form creation 19 | 20 | #### 0.90.13 - 29.10.2015 21 | * Fix problem https://github.com/fslaborg/FSharp.Charting/issues/33 22 | 23 | #### 0.90.12 - 07.07.2015 24 | * Fix problem with Gtk by removing use of Gtk nuget package 25 | 26 | #### 0.90.11 - 18.06.2015 27 | * Add Show and Save methods to Chart helper class. 28 | 29 | #### 0.90.10 - 20.04.2015 30 | * Update project links 31 | 32 | #### 0.90.9 - 10.12.2014 33 | * Update to OxyPlot 2014.1.546 34 | 35 | #### 0.90.8 36 | * Fix #58 37 | 38 | #### 0.90.7 39 | * Return Form from ShowForm 40 | 41 | #### 0.90.6 42 | * Fix load on OSX 43 | * Update MacOSX recognition function 44 | 45 | #### 0.90 46 | * Includes the updated 'fluent' operators and renames 'FSharpChart' to 'Chart' 47 | * Includes LiveChart and pipelined operators. 48 | * Improve documentation. 49 | * Include Y-value overloads and add build of FSharp.Charting.AspNet.dll 50 | * Include correct version in FSharp.Charting.fsx 51 | * Support DateTimeOffset and custom types as X axis values 52 | * Include correct version in FSharp.Charting.fsx 53 | * Include correct version in FSharp.Charting.fsx (Finally!) 54 | * Add preliminary version of FSharp.Charting.Gtk 55 | * Revert to multiple nuget packages 56 | 57 | #### 0.60 58 | * Support for binding a StackedChart with multiple Data Series 59 | 60 | #### 0.56 61 | * Support for defaults and ToolTip's in addition to some WPF samples 62 | * Minor changes for additional With properties and WithSeries.Marker() 63 | 64 | #### 0.5 65 | * Support for 3D Charts and naming of data series for BoxPlot charts 66 | 67 | #### 0.4 68 | * Property Change Events for Name, Title, Margin, Legend, and Custom properties. 69 | 70 | #### 0.3 71 | * Includes Clipboard and SaveAs Capabilities (supporting multiple file formats) 72 | 73 | #### 0.2 74 | * Base Version 75 | 76 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | init: 2 | - git config --global core.autocrlf input 3 | install: 4 | - cinst gtksharp -y 5 | build_script: 6 | - cmd: build.cmd 7 | test: off 8 | version: 0.0.1.{build} 9 | artifacts: 10 | - path: bin 11 | name: bin 12 | -------------------------------------------------------------------------------- /build.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cls 3 | 4 | .paket\paket.bootstrapper.exe 5 | if errorlevel 1 ( 6 | exit /b %errorlevel% 7 | ) 8 | 9 | .paket\paket.exe restore 10 | if errorlevel 1 ( 11 | exit /b %errorlevel% 12 | ) 13 | 14 | packages\FAKE\tools\FAKE.exe build.fsx %* 15 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if test "$OS" = "Windows_NT" 3 | then 4 | # use .Net 5 | 6 | .paket/paket.bootstrapper.exe 7 | exit_code=$? 8 | if [ $exit_code -ne 0 ]; then 9 | exit $exit_code 10 | fi 11 | 12 | .paket/paket.exe restore 13 | exit_code=$? 14 | if [ $exit_code -ne 0 ]; then 15 | exit $exit_code 16 | fi 17 | 18 | packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx 19 | else 20 | # use mono 21 | mono .paket/paket.bootstrapper.exe 22 | exit_code=$? 23 | if [ $exit_code -ne 0 ]; then 24 | exit $exit_code 25 | fi 26 | 27 | mono .paket/paket.exe restore 28 | exit_code=$? 29 | if [ $exit_code -ne 0 ]; then 30 | exit $exit_code 31 | fi 32 | 33 | mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx 34 | fi 35 | -------------------------------------------------------------------------------- /docs/content/BarAndColumnCharts.fsx: -------------------------------------------------------------------------------- 1 | (*** hide ***) 2 | #I "../../bin" 3 | (** 4 | # FSharp.Charting: Bar and Column Charts 5 | 6 | *Summary:* This example shows how to create bar and column charts in F#. 7 | 8 | The input data in this example is an F# list of tuples containing continent names and total populations. 9 | The example demonstrates how to display a bar/column chart with names of continents as labels and the 10 | populations as the values. A sample bar chart is shown below. 11 | 12 | A bar or a column chart can be created using the `Chart.Column` and `Chart.Bar` methods. 13 | 14 | All methods are overloaded and can be called with various types of parameters. When called with a list 15 | containing just Y values, the chart automatically uses the sequence 1, 2, 3… for the X values. Alternatively, 16 | it is possible to provide a list containing both X and Y values as a tuple, which gives a way to draw 2D 17 | curves and scatter plots as well. Here are three examples: 18 | 19 | *) 20 | 21 | // On Mac OSX use FSharp.Charting.Gtk.fsx 22 | #I "packages/FSharp.Charting.Gtk" 23 | #load "FSharp.Charting.Gtk.fsx" 24 | 25 | open FSharp.Charting 26 | open System 27 | 28 | let countryData = 29 | [ "Africa", 1033043; 30 | "Asia", 4166741; 31 | "Europe", 732759; 32 | "South America", 588649; 33 | "North America", 351659; 34 | "Oceania", 35838 ] 35 | 36 | (*** define-output:bar ***) 37 | Chart.Bar countryData 38 | (*** include-it:bar ***) 39 | 40 | (*** define-output:col ***) 41 | Chart.Column countryData 42 | (*** include-it:col ***) 43 | 44 | (*** define-output:bar2 ***) 45 | Chart.Bar [ 0 .. 10 ] 46 | (*** include-it:bar2 ***) 47 | 48 | (** 49 | When using F# Interactive, each of these examples needs to be evaluated separately. This way, F# Interactive 50 | invokes a handler that automatically shows the created chart. 51 | 52 | The first example specifies the data source as a single list that contains two-element tuples. The first 53 | element of the tuple is the X value (category) and the second element is the population. 54 | 55 | The second example creates a Column chart instead of a Bar chart. 56 | 57 | The third example below shows that you may also simply give a set of Y values, rather than (X,Y) value pairs. 58 | 59 | *) 60 | 61 | -------------------------------------------------------------------------------- /docs/content/BoxPlotCharts.fsx: -------------------------------------------------------------------------------- 1 | (*** hide ***) 2 | #I "../../bin" 3 | (** 4 | # FSharp.Charting: BoxPlot Charts 5 | 6 | *Summary:* This example shows how to create boxplot diagrams in F#. It looks at how 7 | to create a single boxplot from six statistics about an observation set as well as 8 | how to automatically create boxplots from observations. 9 | 10 | When creating boxplot charts, it is possible to use either six statistics (Lower whisker, Upper whisker, Lower box, Upper box, Average, Median) 11 | that define the boxplot data, or to infer these statistics from a set of values and let the library generate 12 | the boxplot diagram automatically. 13 | 14 | A boxplot diagram shows six basic statistics about a set of observations. It displays the 15 | dataset minimum and maximum, the upper and lower quartiles, the average value, and the 16 | median. When the F# script calculates these six statistics, the values can be passed to 17 | the method `Chart.BoxPlotFromStatistics` as a list of tuples 18 | to draw multiple boxplots. 19 | *) 20 | 21 | // On Mac OSX use FSharp.Charting.Gtk.fsx 22 | #I "packages/FSharp.Charting" 23 | #load "FSharp.Charting.fsx" 24 | 25 | open FSharp.Charting 26 | open System 27 | 28 | (*** define-output:boxs ***) 29 | Chart.BoxPlotFromStatistics( 30 | [ ("Result A", -12.7, 11.6, -8.3, 6.4, 0.0, 0.0); 31 | ("Result B", -6.7, 11.6, -5.0, 5.4, 0.0, 0.0) ]) 32 | (*** include-it:boxs ***) 33 | 34 | (** 35 | Here is the same box plot with dates used as labels. These must be explicitly formatted as strings. 36 | 37 | *) 38 | 39 | (*** define-output:boxs2 ***) 40 | Chart.BoxPlotFromStatistics( 41 | [ (DateTime.Today.ToShortDateString() , -12.7, 11.6, -8.3, 6.4, 0.0, 0.0); 42 | (DateTime.Today.AddDays(1.0).ToShortDateString(), -6.7, 11.6, -5.0, 5.4, 0.0, 0.0) ], 43 | ShowMedian = false, ShowAverage = false) 44 | (*** include-it:boxs2 ***) 45 | 46 | (** 47 | 48 | This snippet calls the `Chart.BoxPlotFromStatistics` method with a list containing 49 | (Label, Lower whisker, Upper whisker, Lower box, Upper box, Average, Median) pairs. 50 | The call uses the value 0.0 as a placeholder for the last two statistics. The lines in the boxplot 51 | diagram have to be hidden explicitly by setting `BoxPlotShowMedian` and `BoxPlotShowAverage` to false. 52 | 53 | 54 | Another alternative when creating a boxplot is to let the charting library 55 | calculate the boxplot statistics automatically. To do that, the `Chart.BoxPlot` method 56 | can be called with a collection of (xLabel, yValues) tuples as an argument. Each entry 57 | is a label plus a set of observations. The statistics are automatically computed from the 58 | values in the observations. 59 | 60 | *) 61 | 62 | 63 | let date n = DateTime.Today.AddDays(float n).ToShortDateString() 64 | let rnd = new System.Random() 65 | 66 | let threeSyntheticDataSets = 67 | [ (date 0, [| for i in 0 .. 20 -> float (rnd.Next 20) |]) 68 | (date 1, [| for i in 0 .. 20 -> float (rnd.Next 15 + 2) |]) 69 | (date 2, [| for i in 0 .. 20 -> float (rnd.Next 10 + 5) |]) ] 70 | 71 | (*** define-output:dt ***) 72 | Chart.BoxPlotFromData 73 | ( threeSyntheticDataSets, 74 | ShowUnusualValues = true, ShowMedian = false, 75 | ShowAverage = false, WhiskerPercentile = 10) 76 | (*** include-it:dt ***) 77 | 78 | 79 | (** 80 | 81 | The example above demonstrates how to calculate boxplot diagrams 82 | automatically from (randomly generated) data. It is also possible to set 83 | several custom properties to configure the boxplot diagram. When 84 | `BoxPlotShowUnusualValues` is true, the boxplot displays unusual values using points, as shown in Figure 1. 85 | 86 | 87 | *) 88 | 89 | 90 | -------------------------------------------------------------------------------- /docs/content/PieAndDougnutCharts.fsx: -------------------------------------------------------------------------------- 1 | (*** hide ***) 2 | #I "../../bin" 3 | (** 4 | # FSharp.Charting: Pie and Doughnut Charts 5 | 6 | *Summary:* This example shows how to create pie and doughnut charts in F#. 7 | 8 | The input data in this example is an F# list of tuples containing the names of political parties and 9 | their respective numbers of elected candidates. The example demonstrates how to display a 10 | pie/doughnut chart showing the proportion of seats taken by each party. A 11 | sample doughnut chart is shown below. 12 | 13 | A pie or a doughnut chart can be created using the `Chart.Pie` and `Chart.Doughnut` functions. 14 | When creating pie or doughnut charts, it is usually desirable to provide both labels and 15 | values. This is done by using a single collection with labels and values as tuple. Here are three examples: 16 | 17 | *) 18 | 19 | // On Mac OSX use FSharp.Charting.Gtk.fsx 20 | #I "packages/FSharp.Charting" 21 | #load "FSharp.Charting.fsx" 22 | 23 | open FSharp.Charting 24 | open System 25 | 26 | let electionData = 27 | [ "Conservative", 306; "Labour", 258; 28 | "Liberal Democrat", 57 ] 29 | 30 | (*** define-output:p ***) 31 | Chart.Pie electionData 32 | (*** include-it:p ***) 33 | 34 | (*** define-output:d ***) 35 | Chart.Doughnut electionData 36 | (*** include-it:d ***) 37 | 38 | (** 39 | When using F# Interactive, each of these examples needs to be evaluated separately. This way, F# Interactive 40 | invokes a handler that automatically shows the created chart. 41 | 42 | The first example specifies the data source as a single list that contains two-element tuples. The first 43 | element of the tuple is the label and the second element is the value. 44 | 45 | The second example creates a doughnut chart instead of a pie chart. 46 | 47 | *) -------------------------------------------------------------------------------- /docs/content/ReferencingTheLibrary.fsx: -------------------------------------------------------------------------------- 1 | (** 2 | # FSharp.Charting: Referencing the Library 3 | 4 | FSharp.Charting is most often used from F# scripts. To use the library 5 | in a script, load the `FSharp.Charting.fsx` file, for example from the NuGet package: 6 | *) 7 | 8 | // On Mac OSX use packages/FSharp.Charting.Gtk.2.1.0/FSharp.Charting.Gtk.fsx 9 | #load "packages/FSharp.Charting/FSharp.Charting.fsx" 10 | (** 11 | You can now create a chart: 12 | *) 13 | 14 | open FSharp.Charting 15 | 16 | Chart.Line [ for x in 0 .. 10 -> x, x*x ] 17 | 18 | 19 | (** 20 | When using F# Interactive, each of these examples needs to be evaluated separately. This way, F# Interactive 21 | invokes a handler that automatically shows the created chart. 22 | 23 | Alternatively, you can reference `FSharp.Charting.dll` directly and manually display the charts using `ShowChart`: 24 | *) 25 | 26 | // Note, on Mac OSX use FSharp.Charting.Gtk.dll. 27 | #r "FSharp.Charting.dll" 28 | 29 | open FSharp.Charting 30 | 31 | Chart.Line([ for x in 0 .. 10 -> x, x*x ]).ShowChart() 32 | 33 | 34 | (** 35 | To use the library in a project, either 36 | 37 | * add the `FSharp.Charting` NuGet package, or 38 | * reference `FSharp.Charting.dll` directly 39 | 40 | *) 41 | 42 | 43 | -------------------------------------------------------------------------------- /docs/content/StockAndCandlestickCharts.fsx: -------------------------------------------------------------------------------- 1 | (*** hide ***) 2 | #I "../../bin" 3 | (** 4 | # FSharp.Charting: Stock and Candlestick Charts 5 | 6 | *Summary:* This example shows how to create stock and candlestick charts to visualize financial data in F#. 7 | It looks at how to draw charts, use dates as labels, and specify the range of a chart. 8 | 9 | Stock and candlestick charts are designed to visualize stock prices. The data recorded about 10 | stock prices typically consists of four values representing High, Low, Open, and Close prices. 11 | The first two are the maximum and minimum price of the stock reached during the day and the 12 | last two are prices at the start and the end of the day. The examples use the following data 13 | set (price of MSFT stocks over 10 days): 14 | 15 | *) 16 | 17 | let prices = 18 | [ 26.24,25.80,26.22,25.95; 26.40,26.18,26.26,26.20 19 | 26.37,26.04,26.11,26.08; 26.78,26.15,26.60,26.16 20 | 26.86,26.51,26.69,26.58; 26.95,26.50,26.91,26.55 21 | 27.06,26.50,26.64,26.77; 26.86,26.43,26.53,26.59 22 | 27.10,26.52,26.78,26.59; 27.21,26.99,27.13,27.06 23 | 27.37,26.91,26.97,27.21; 27.07,26.60,27.05,27.02 24 | 27.33,26.95,27.04,26.96; 27.27,26.95,27.21,27.23 25 | 27.81,27.07,27.76,27.25; 27.94,27.29,27.93,27.50 26 | 28.26,27.91,28.19,27.97; 28.34,28.05,28.10,28.28 27 | 28.34,27.79,27.80,28.20; 27.84,27.51,27.70,27.77 ] 28 | 29 | (** 30 | 31 | A stock or a candlestick chart can be created using the `FSharpChart.Stock` and `FSharpChart.Candlestick` methods. Financial charts for 32 | visualizing stocks require four values for drawing each data point (High, Low, Open, and Close price). 33 | When calling the methods, it is possible to specify the values as a collection 34 | containing four-element tuples, or five-element tuples (Date, High, Low, Open, and Close price). 35 | 36 | *) 37 | 38 | // On Mac OSX use FSharp.Charting.Gtk.fsx 39 | #I "packages/FSharp.Charting" 40 | #load "FSharp.Charting.fsx" 41 | 42 | open FSharp.Charting 43 | open System 44 | 45 | (*** define-output:st ***) 46 | Chart.Stock(prices) 47 | (*** include-it:st ***) 48 | 49 | let pricesWithDates = 50 | prices |> List.mapi (fun i (hi,lo,op,cl) -> 51 | (DateTime.Today.AddDays(float i).ToShortDateString(), hi, lo, op, cl)) 52 | 53 | (*** define-output:ca ***) 54 | // Candlestick chart price range specified 55 | Chart.Candlestick(pricesWithDates).WithYAxis(Max = 29.0, Min = 25.0) 56 | (*** include-it:ca ***) 57 | 58 | (*** define-output:ca2 ***) 59 | // Alternative specification using pipelining 60 | Chart.Candlestick(pricesWithDates) 61 | |> Chart.WithYAxis(Max = 29.0, Min = 25.0) 62 | (*** include-it:ca2 ***) 63 | 64 | (** 65 | 66 | When using F# Interactive, each of these examples needs to be evaluated separately. This way, F# Interactive invokes a handler that automatically shows the created chart. 67 | 68 | The first snippet calls the `Chart.Stock` method with a list containing prices as 69 | four-element tuples. 70 | 71 | The second example adds dates as the labels for the chart. 72 | This is done using the `List.mapi` function. The lambda function used as an argument returns a tuple 73 | containing the date and the original tuple of prices. 74 | The example also demonstrates how to set the price range of the Y axis using the method `WithYAxis`. 75 | 76 | The last example shows an elegant way of configuring the Y axis range by using pipelining (the `|>` operator). 77 | The chart specification is passed to a configuration method `Chart.WithYAxis` using pipelining. 78 | This method takes named parameters that allow us to specify the range and other properties of the axis. 79 | 80 | *) 81 | 82 | -------------------------------------------------------------------------------- /docs/content/UsingChartsInWPF.md: -------------------------------------------------------------------------------- 1 | # Using Charts in WPF applications 2 | 3 | Charts specified using FSharp.Charting can be used within WPF applications. 4 | 5 | To host a chart object inside a WPF application, 6 | 7 | * Add a reference to the FSharp.Charting nuget package 8 | * Add references to the following additional DLLs from the base class library: 9 | * System.Drawing.dll 10 | * System.Windows.Forms.dll 11 | * WindowsFormsIntegration.dll 12 | * Add a [WindowsFormHost](http://msdn.microsoft.com/en-us/library/ms751761.aspx) element to your XAML in your F# or C# application and give the element a name 13 | 14 | In your XAML code this should appear as `````` 15 | 16 | In your application code, set the `Child` property of the host to a chart control created from a chart specification: 17 | 18 |
19 |   open FSharp.Charting
20 |   open FSharp.Charting.ChartTypes
21 |     
22 |   // ...
23 |     
24 |   let winForm = window.Root.FindName("WinForm") :?> WindowsFormsHost
25 | 
26 |   let chart = Chart.Line [ for i in 0 .. 10 -> (i,i*i) ]
27 |        
28 |   winForm.Child <- new ChartControl(chart)
29 | 
30 | 31 | 32 | Live and Incremental updating charts can also be used in this way. 33 | 34 |
35 |   let dataStream = 
36 |       window.Root.MouseMove 
37 |       |> Event.map (fun x -> let p = x.GetPosition(window.Root) in p.X,p.Y )
38 |        
39 |   let chart = LiveChart.LineIncremental (dataStream)
40 |       
41 |   winForm.Child <- new ChartControl(chart)
42 | 
43 | -------------------------------------------------------------------------------- /docs/content/contributing.md: -------------------------------------------------------------------------------- 1 | Contributing to FSharp.Charting 2 | =========================== 3 | 4 | This page should provide you with some basic information if you're thinking about 5 | contributing to the FSharp.Charting project. 6 | 7 | * This page can be edited by sending a pull request to FSharp.Charting on GitHub, please 8 | [edit here](https://github.com/fslaborg/FSharp.Charting/blob/master/docs/content/contributing.md). 9 | 10 | * If you want to discuss a feature (a good idea!), or if you want to look at 11 | suggestions how you might contribute, check out the 12 | [Issue list](https://github.com/fslaborg/FSharp.Charting/issues) on GitHub. 13 | 14 | ## Solution files 15 | 16 | The root directory contains a number of Visual Studio solutions (`*.sln`) files 17 | that group the projects in the main logical groups: 18 | 19 | * **FSharp.Charting.sln** contains the main projects that implement most of the FSharp.Charting 20 | functionality (such as runtime and design-time type provider libraries). If you want 21 | to contribute code that is not quite ready yet, but looks interesting, then please 22 | add it to the experimental projects. 23 | 24 | * **FSharp.Charting.Tests.sln** is a library with tests for FSharp.Charting and it also contains 25 | the content of this web site (as `*.fsx` and `*.md`) files. Look here if you want 26 | to edit the documentation! 27 | 28 | ## Documentation 29 | 30 | The documentation for the FSharp.Charting library is automatically generated using the 31 | [F# Formatting](https://github.com/tpetricek/FSharp.Formatting) library. It turns 32 | `*.md` (Markdown with embedded code snippets) and `*.fsx` files (F# script file with 33 | embedded Markdown documentation) to a nice HTML documentation. 34 | 35 | * The template for the pages is in the `tools` directory 36 | [on GitHub](https://github.com/fslaborg/FSharp.Charting/tree/master/docs/tools). 37 | 38 | * The code for all the documents (including this one) can be found in the `examples` directory 39 | [on GitHub](https://github.com/fslaborg/FSharp.Charting/tree/master/docs/content). If you 40 | find a bug or add a new feature, make sure you document it! 41 | 42 | * Images are not automatically generated - just use 'Save Image As' on a chart and add the PNG to the `images` folder. 43 | 44 | * If you want to build the documentation, simply run the `build.fsx` script 45 | ([GitHub link](https://github.com/fslaborg/FSharp.Charting/blob/master/docs/tools/generate.fsx)) which 46 | builds the documentation. 47 | 48 | * The final documentation will be pushed to the `gh-pages` branch by the maintainers of the `fsharp` 49 | repository for the library. 50 | -------------------------------------------------------------------------------- /docs/content/fsharpcharting.md: -------------------------------------------------------------------------------- 1 | # FSharp.Charting: Documentation 2 | 3 | Getting Started: 4 | 5 | * [Referencing the Library](ReferencingTheLibrary.html) - shows how to reference the library 6 | 7 | Basic Chart Types: 8 | 9 | * [Line And Point Charts](PointAndLineCharts.html) - shows how to create Point and Line charts 10 | * [Bar and Column Charts](BarAndColumnCharts.html) - shows how to create Bar and Column charts 11 | * [Pie and Doughnut Charts](PieAndDougnutCharts.html) - shows how to create Pie and Doughnut charts 12 | * [Stock and Candlestick Charts](StockAndCandlestickCharts.html) - shows how to create common charts for financial data 13 | * [BoxPlot Charts](BoxPlotCharts.html) - shows how to create BoxPlot charts for statistical summaries of data 14 | 15 | Animated Live Charts (based on `IObservable` and `IEvent` data): 16 | 17 | * [Live Charts](LiveChartSamples.html) - shows how to create animated LiveCharts 18 | 19 | Using charts in applications: 20 | 21 | * [Using Charts in WPF Applications](UsingChartsInWPF.html) - shows how to use charts in a WPF application 22 | 23 | Further Samples: 24 | 25 | * [Further Samples](FurtherSamples.html) - additional samples 26 | 27 | The following methods are available on chart objects: 28 | 29 | * `CopyAsBitmap` 30 | * `CopyChartToClipboard` 31 | * `CopyChartToClipboardEmf` 32 | * `SaveChartAs` 33 | * `ShowChart` 34 | 35 | The following methods are used to style chart objects: 36 | 37 | * `With3D` 38 | * `WithDataPointLabels` 39 | * `WithLegend` 40 | * `WithStyling` 41 | * `WithTitle` 42 | * `WithXAxis` 43 | * `WithYAxis` 44 | * `ApplyToChart` 45 | 46 | Please [contribute](contributing.html) more documentation on the following topics: 47 | 48 | * Combining charts using `Chart.Combine`, `Chart.Rows` and `Chart.Columns` 49 | * More details on LiveCharts and creating active data for live charts 50 | * Images for all charts in the samples 51 | * Setting the chart and axis titles 52 | * Specifying labels 53 | * Specifying chart colors 54 | * Specifying more complex properties of charts 55 | 56 | 57 | ## Related projects 58 | 59 | FSChart and FSharpChart were previous names for this library. 60 | -------------------------------------------------------------------------------- /docs/files/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/docs/files/images/logo.png -------------------------------------------------------------------------------- /docs/tools/formatters.fsx: -------------------------------------------------------------------------------- 1 | module Formatters 2 | #I "../../packages/FSharp.Formatting/lib/net40" 3 | #r "FSharp.Markdown.dll" 4 | #r "FSharp.Literate.dll" 5 | #r "FSharp.CodeFormat.dll" 6 | #r "RazorEngine.dll" 7 | #r "../../packages/FAKE/tools/FakeLib.dll" 8 | #load "../../bin/FSharp.Charting.fsx" 9 | 10 | open Fake 11 | open System.IO 12 | open FSharp.Literate 13 | open FSharp.Markdown 14 | open FSharp.Charting 15 | 16 | // -------------------------------------------------------------------------------------- 17 | // Helper functions etc. 18 | // -------------------------------------------------------------------------------------- 19 | 20 | open System.Windows.Forms 21 | open FSharp.Charting.ChartTypes 22 | 23 | /// Reasonably nice default style for charts 24 | let chartStyle ch = 25 | let grid = ChartTypes.Grid(LineColor=System.Drawing.Color.LightGray) 26 | ch 27 | |> Chart.WithYAxis(MajorGrid=grid) 28 | |> Chart.WithXAxis(MajorGrid=grid) 29 | 30 | // -------------------------------------------------------------------------------------- 31 | // Build FSI evaluator 32 | // -------------------------------------------------------------------------------------- 33 | 34 | /// Builds FSI evaluator that can render System.Image, F# Charts, series & frames 35 | let createFsiEvaluator root output = 36 | 37 | /// Counter for saving files 38 | let imageCounter = 39 | let count = ref 0 40 | (fun () -> incr count; !count) 41 | 42 | let transformation (value:obj, typ:System.Type) = 43 | match value with 44 | | :? System.Drawing.Image as img -> 45 | // Pretty print image - save the image to the "images" directory 46 | // and return a DirectImage reference to the appropriate location 47 | let id = imageCounter().ToString() 48 | let file = "chart" + id + ".png" 49 | ensureDirectory (output @@ "images") 50 | img.Save(output @@ "images" @@ file, System.Drawing.Imaging.ImageFormat.Png) 51 | Some [ Paragraph [DirectImage ("Chart", (root + "/images/" + file, None))] ] 52 | 53 | | :? ChartTypes.GenericChart as ch -> 54 | // Pretty print F# Chart - save the chart to the "images" directory 55 | // and return a DirectImage reference to the appropriate location 56 | let id = imageCounter().ToString() 57 | let file = "chart" + id + ".png" 58 | ensureDirectory (output @@ "images") 59 | 60 | // We need to reate host control, but it does not have to be visible 61 | ( use ctl = new ChartControl(chartStyle ch, Dock = DockStyle.Fill, Width=500, Height=300) 62 | ch.CopyAsBitmap().Save(output @@ "images" @@ file, System.Drawing.Imaging.ImageFormat.Png) ) 63 | Some [ Paragraph [DirectImage ("Chart", (root + "/images/" + file, None))] ] 64 | 65 | | _ -> None 66 | 67 | // Create FSI evaluator, register transformations & return 68 | let fsiEvaluator = FsiEvaluator(fsiObj = FsiEvaluatorConfig.CreateNoOpFsiObject()) 69 | fsiEvaluator.RegisterTransformation(transformation) 70 | fsiEvaluator -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/MonoPosixHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/MonoPosixHelper.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/atksharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/atksharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gdk-pixbuf-query-loaders.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gdk-pixbuf-query-loaders.exe -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gdksharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gdksharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gladesharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gladesharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/glibsharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/glibsharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gspawn-win32-helper-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gspawn-win32-helper-console.exe -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gspawn-win32-helper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gspawn-win32-helper.exe -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gtk-query-immodules-2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gtk-query-immodules-2.0.exe -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/gtksharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/gtksharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icudata48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icudata48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icui18n48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icui18n48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icuio48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icuio48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icule48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icule48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/iculx48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/iculx48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icutu48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icutu48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/icuuc48.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/icuuc48.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/intl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/intl.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libatk-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libatk-1.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libcairo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libcairo-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libcroco-0.6-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libcroco-0.6-3.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libexpat-1.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libffi-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libffi-6.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libfontconfig-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libfontconfig-1.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libfreetype-6.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgailutil-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgailutil-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgcc_s_sjlj-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgcc_s_sjlj-1.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgdk-win32-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgdk-win32-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgdk_pixbuf-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgdk_pixbuf-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgio-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgio-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libglade-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libglade-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libglib-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgsf-1-114.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgsf-1-114.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgsf-win32-1-114.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgsf-win32-1-114.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgthread-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgthread-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libgtk-win32-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libgtk-win32-2.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libharfbuzz-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libharfbuzz-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libintl-8.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libjasper-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libjasper-1.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libjpeg-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libjpeg-8.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/liblzma-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/liblzma-5.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpango-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpango-1.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpangocairo-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpangocairo-1.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpangoft2-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpangoft2-1.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpangowin32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpangowin32-1.0-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpixman-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpixman-1-0.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpng15-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpng15-15.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libpng16.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/librsvg-2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/librsvg-2-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libstdc++-6.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libtiff-5.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/libxml2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/libxml2-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/pango-querymodules.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/pango-querymodules.exe -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/pangosharpglue-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/pangosharpglue-2.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/bin/zlib1.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/etc/gtk-2.0/gdk-pixbuf.loaders: -------------------------------------------------------------------------------- 1 | # GdkPixbuf Image Loader Modules file 2 | # Automatically generated file, do not edit 3 | # Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.26.3 4 | # 5 | # LoaderDir = C:\Program Files (x86)\GtkSharp\2.12/lib/gdk-pixbuf-2.0/2.10.0/loaders 6 | # 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/etc/gtk-2.0/gtk.immodules: -------------------------------------------------------------------------------- 1 | # GTK+ Input Method Modules file 2 | # Automatically generated file, do not edit 3 | # Created by C:\Program Files (x86)\GtkSharp\2.12\bin\gtk-query-immodules-2.0.exe from gtk+-2.24.13 4 | # 5 | # ModulesPath = C:\Users\dsyme\.gtk-2.0\2.10.0/etc\2.10.0\immodules;C:\Users\dsyme\.gtk-2.0\2.10.0/etc\immodules;C:\Users\dsyme\.gtk-2.0\2.10.0\immodules;C:\Users\dsyme\.gtk-2.0\immodules;C:\Program Files (x86)\GtkSharp\2.12\lib\gtk-2.0\2.10.0/etc\2.10.0\immodules;C:\Program Files (x86)\GtkSharp\2.12\lib\gtk-2.0\2.10.0/etc\immodules;C:\Program Files (x86)\GtkSharp\2.12\lib\gtk-2.0\2.10.0\immodules;C:\Program Files (x86)\GtkSharp\2.12\lib\gtk-2.0\immodules 6 | # 7 | 8 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/etc/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | gtk-theme-name = "MS-Windows" 2 | 3 | style "rules-hint" 4 | { 5 | GtkTreeView::allow-rules = 1 6 | } 7 | 8 | class "*" style "rules-hint" 9 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/etc/gtk-2.0/immultipress.conf: -------------------------------------------------------------------------------- 1 | # Example configuration file for the GTK+ Multipress Input Method 2 | # Authored by Openismus GmbH, 2009. 3 | # 4 | # This file follows the GKeyFile format. On the left of the equal sign goes 5 | # the key that you press repeatedly to iterate through the text items listed 6 | # on the right-hand side. The list items are separated by semicolons ";" and 7 | # consist of one or more characters each. The backslash "\" is used to escape 8 | # characters; for instance "\;" for a literal semicolon. 9 | # 10 | # The example configuration below imitates the behavior of a standard mobile 11 | # phone by a major manufacturer, with German language setting. 12 | [keys] 13 | KP_1 = .;,;?;!;';";1;-;(;);@;/;:;_ 14 | KP_2 = a;b;c;2;ä;à;á;ã;â;å;æ;ç 15 | KP_3 = d;e;f;3;è;é;ë;ê;ð 16 | KP_4 = g;h;i;4;ì;í;î;ï 17 | KP_5 = j;k;l;5;£ 18 | KP_6 = m;n;o;6;ö;ò;ó;ô;õ;ø;ñ 19 | KP_7 = p;q;r;s;7;ß;$ 20 | KP_8 = t;u;v;8;ü;ù;ú;û 21 | KP_9 = w;x;y;z;9;ý;þ 22 | KP_0 = \s;0 23 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/etc/pango/pango.modules: -------------------------------------------------------------------------------- 1 | # Pango Modules file 2 | # Automatically generated file, do not edit 3 | # 4 | # ModulesPath = c:/devel/target/7c1d1e55b5080eb9d56515f132945bb4/lib/pango\1.6.0\modules 5 | # 6 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/Mono.Cairo/Mono.Cairo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/Mono.Cairo/Mono.Cairo.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/Mono.Posix/Mono.Posix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/Mono.Posix/Mono.Posix.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libpixmap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libpixmap.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libsvg.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libwimp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libwimp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libxamarin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-2.0/2.10.0/engines/libxamarin.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-2.0/modules/libgail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-2.0/modules/libgail.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/atk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/atk-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/atk-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/atk-sharp.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gdk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gdk-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gdk-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gdk-sharp.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glade-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glade-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glade-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glade-sharp.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glib-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glib-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/glib-sharp.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-dotnet.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-dotnet.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/gtk-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/pango-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/pango-sharp.dll -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/lib/gtk-sharp-2.0/pango-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/lib/gtk-sharp-2.0/pango-sharp.pdb -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/af/LC_MESSAGES/af_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/am/LC_MESSAGES/am_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ang/LC_MESSAGES/ang_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ang/LC_MESSAGES/ang_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ang/LC_MESSAGES/ang_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ang/LC_MESSAGES/ang_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ar/LC_MESSAGES/ar_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/as/LC_MESSAGES/as_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ast/LC_MESSAGES/ast_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ast/LC_MESSAGES/ast_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ast/LC_MESSAGES/ast_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ast/LC_MESSAGES/ast_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az/LC_MESSAGES/az_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az_IR/LC_MESSAGES/az_IR_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az_IR/LC_MESSAGES/az_IR_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/az_IR/LC_MESSAGES/az_IR_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/az_IR/LC_MESSAGES/az_IR_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be/LC_MESSAGES/be_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/be@latin/LC_MESSAGES/be@latin_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bg/LC_MESSAGES/bg_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn/LC_MESSAGES/bn_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bn_IN/LC_MESSAGES/bn_IN_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/br/LC_MESSAGES/br_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/br/LC_MESSAGES/br_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/br/LC_MESSAGES/br_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/br/LC_MESSAGES/br_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/bs/LC_MESSAGES/bs_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca/LC_MESSAGES/ca_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ca@valencia/LC_MESSAGES/ca@valencia_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/crh/LC_MESSAGES/crh_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/crh/LC_MESSAGES/crh_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/crh/LC_MESSAGES/crh_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/crh/LC_MESSAGES/crh_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cs/LC_MESSAGES/cs_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/cy/LC_MESSAGES/cy_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/da/LC_MESSAGES/da_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/de/LC_MESSAGES/de_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/dz/LC_MESSAGES/dz_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/el/LC_MESSAGES/el_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_CA/LC_MESSAGES/en_CA_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/en_GB/LC_MESSAGES/en_GB_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eo/LC_MESSAGES/eo_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/es/LC_MESSAGES/es_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/et/LC_MESSAGES/et_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/eu/LC_MESSAGES/eu_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fa/LC_MESSAGES/fa_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fi/LC_MESSAGES/fi_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/fr/LC_MESSAGES/fr_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ga/LC_MESSAGES/ga_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gl/LC_MESSAGES/gl_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/gu/LC_MESSAGES/gu_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/he/LC_MESSAGES/he_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hi/LC_MESSAGES/hi_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hr/LC_MESSAGES/hr_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hu/LC_MESSAGES/hu_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/hy/LC_MESSAGES/hy_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ia/LC_MESSAGES/ia_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ia/LC_MESSAGES/ia_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ia/LC_MESSAGES/ia_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ia/LC_MESSAGES/ia_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/id/LC_MESSAGES/id_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/io/LC_MESSAGES/io_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/io/LC_MESSAGES/io_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/io/LC_MESSAGES/io_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/io/LC_MESSAGES/io_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/is/LC_MESSAGES/is_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/it/LC_MESSAGES/it_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ja/LC_MESSAGES/ja_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ka/LC_MESSAGES/ka_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/kn/LC_MESSAGES/kn_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ko/LC_MESSAGES/ko_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ku/LC_MESSAGES/ku_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/li/LC_MESSAGES/li_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lt/LC_MESSAGES/lt_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/lv/LC_MESSAGES/lv_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mai/LC_MESSAGES/mai_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mg/LC_MESSAGES/mg_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mg/LC_MESSAGES/mg_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mi/LC_MESSAGES/mi_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mi/LC_MESSAGES/mi_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mi/LC_MESSAGES/mi_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mi/LC_MESSAGES/mi_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mk/LC_MESSAGES/mk_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ml/LC_MESSAGES/ml_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mn/LC_MESSAGES/mn_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/mr/LC_MESSAGES/mr_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ms/LC_MESSAGES/ms_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nb/LC_MESSAGES/nb_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ne/LC_MESSAGES/ne_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nl/LC_MESSAGES/nl_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nn/LC_MESSAGES/nn_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nso/LC_MESSAGES/nso_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nso/LC_MESSAGES/nso_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/nso/LC_MESSAGES/nso_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/nso/LC_MESSAGES/nso_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/oc/LC_MESSAGES/oc_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/or/LC_MESSAGES/or_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pa/LC_MESSAGES/pa_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pl/LC_MESSAGES/pl_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ps/LC_MESSAGES/ps_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt/LC_MESSAGES/pt_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/pt_BR/LC_MESSAGES/pt_BR_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ro/LC_MESSAGES/ro_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ru/LC_MESSAGES/ru_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/rw/LC_MESSAGES/rw_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/si/LC_MESSAGES/si_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sk/LC_MESSAGES/sk_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sl/LC_MESSAGES/sl_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sq/LC_MESSAGES/sq_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr/LC_MESSAGES/sr_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@ije/LC_MESSAGES/sr@ije_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sr@latin/LC_MESSAGES/sr@latin_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/sv/LC_MESSAGES/sv_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ta/LC_MESSAGES/ta_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/te/LC_MESSAGES/te_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/th/LC_MESSAGES/th_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tk/LC_MESSAGES/tk_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tl/LC_MESSAGES/tl_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tl/LC_MESSAGES/tl_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tr/LC_MESSAGES/tr_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/tt/LC_MESSAGES/tt_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ug/LC_MESSAGES/ug_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ug/LC_MESSAGES/ug_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uk/LC_MESSAGES/uk_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ur/LC_MESSAGES/ur_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ur/LC_MESSAGES/ur_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/ur/LC_MESSAGES/ur_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/ur/LC_MESSAGES/ur_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uz/LC_MESSAGES/uz_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uz/LC_MESSAGES/uz_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uz/LC_MESSAGES/uz_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uz/LC_MESSAGES/uz_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uz@cyrillic/LC_MESSAGES/uz@cyrillic_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uz@cyrillic/LC_MESSAGES/uz@cyrillic_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/uz@cyrillic/LC_MESSAGES/uz@cyrillic_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/uz@cyrillic/LC_MESSAGES/uz@cyrillic_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/vi/LC_MESSAGES/vi_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/wa/LC_MESSAGES/wa_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/xh/LC_MESSAGES/xh_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/yi/LC_MESSAGES/yi_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_CN/LC_MESSAGES/zh_CN_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_HK/LC_MESSAGES/zh_HK_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_atk10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_atk10.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_glib20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_glib20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_gtk20-properties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_gtk20-properties.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_gtk20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/lib/GtkSharp/2.12/share/locale/zh_TW/LC_MESSAGES/zh_TW_gtk20.mo -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/themes/Default/gtkrc: -------------------------------------------------------------------------------- 1 | # 2 | # Default keybinding set. Empty because it is implemented inline in the code. 3 | # 4 | -------------------------------------------------------------------------------- /lib/GtkSharp/2.12/share/themes/MS-Windows/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32" 2 | gtk-toolbar-icon-size = small-toolbar 3 | 4 | # disable images in buttons. i've only seen ugly delphi apps use this feature. 5 | gtk-button-images = 0 6 | 7 | # enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly. 8 | # the office apps use them heavily, though. 9 | gtk-menu-images = 1 10 | 11 | # use the win32 button ordering instead of the GNOME HIG one, where applicable 12 | gtk-alternative-button-order = 1 13 | 14 | # use the win32 sort indicators direction, as in Explorer 15 | gtk-alternative-sort-arrows = 1 16 | 17 | # Windows users don't expect the PC Speaker beeping at them when they backspace in an empty textview and stuff like that 18 | gtk-error-bell = 0 19 | 20 | style "msw-default" 21 | { 22 | GtkWidget::interior-focus = 1 23 | GtkOptionMenu::indicator-size = { 9, 5 } 24 | GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 } 25 | GtkSpinButton::shadow-type = in 26 | 27 | # Owen and I disagree that these should be themable 28 | #GtkUIManager::add-tearoffs = 0 29 | #GtkComboBox::add-tearoffs = 0 30 | 31 | GtkComboBox::appears-as-list = 1 32 | GtkComboBox::focus-on-click = 0 33 | 34 | GOComboBox::add_tearoffs = 0 35 | 36 | GtkTreeView::allow-rules = 0 37 | GtkTreeView::expander-size = 12 38 | 39 | GtkExpander::expander-size = 12 40 | 41 | GtkScrolledWindow::scrollbar_spacing = 1 42 | 43 | GtkSeparatorMenuItem::horizontal-padding = 2 44 | 45 | engine "wimp" 46 | { 47 | } 48 | } 49 | class "*" style "msw-default" 50 | 51 | binding "ms-windows-tree-view" 52 | { 53 | bind "Right" { "expand-collapse-cursor-row" (1,1,0) } 54 | bind "Left" { "expand-collapse-cursor-row" (1,0,0) } 55 | } 56 | 57 | class "GtkTreeView" binding "ms-windows-tree-view" 58 | 59 | style "msw-combobox-thickness" = "msw-default" 60 | { 61 | xthickness = 0 62 | ythickness = 0 63 | } 64 | 65 | widget_class "*TreeView*ComboBox*" style "msw-combobox-thickness" 66 | widget_class "*ComboBox*GtkFrame*" style "msw-combobox-thickness" 67 | -------------------------------------------------------------------------------- /lib/GtkSharp/updateinfo: -------------------------------------------------------------------------------- 1 | 600D9C0E-3B74-4C51-B7E6-29A47E9325E4 002012044000 2 | -------------------------------------------------------------------------------- /misc/logo.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/misc/logo.pdn -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslaborg/FSharp.Charting/ae56016bbba08d42b7a1edc456f687e937a23e88/misc/logo.png -------------------------------------------------------------------------------- /nuget/FSharp.Charting.Gtk.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @project@ 5 | @build.number@ 6 | @authors@ 7 | @authors@ 8 | https://github.com/fslaborg/FSharp.Charting/blob/master/LICENSE.md 9 | https://fslab.org/FSharp.Charting 10 | https://raw.github.com/fslaborg/FSharp.Charting/master/misc/logo.png 11 | false 12 | @summary@ 13 | @description@ 14 | @releaseNotes@ 15 | Copyright 2013 16 | @tags@ 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /nuget/FSharp.Charting.Gtk.template: -------------------------------------------------------------------------------- 1 | type file 2 | id FSharp.Charting.Gtk 3 | licenseurl http://github.com/fslaborg/FSharp.Charting/blob/master/LICENSE.md 4 | projecturl http://fslab.org/FSharp.Charting 5 | iconurl https://raw.github.com/fslaborg/FSharp.Charting/master/misc/logo.png 6 | description 7 | The F# Charting Gtk library (FSharp.Charting.Gtk.dll) is a cross-platform variation of 8 | of FSharp.Charting. It can be used on Windows, OSX and other platforms supporting Gtk. 9 | See also th https://fslab.org/XPlot library for cross-platform charting. 10 | authors 11 | Carl Nolan 12 | Tomas Petricek 13 | Don Syme 14 | Robert Simra 15 | tags 16 | F#, fsharp, interactive, compiler, editor, charting, gtk 17 | files 18 | ../bin/FSharp.Charting.Gtk.dll ==> lib/net45 19 | ../bin/FSharp.Charting.Gtk.xml ==> lib/net45 20 | ../bin/FSharp.Charting.Gtk.fsx ==> lib/net45 21 | ../bin/OxyPlot.dll ==> lib/net45 22 | ../bin/OxyPlot.GtkSharp.dll ==> lib/net45 23 | dependencies 24 | FSharp.Core >= LOCKEDVERSION 25 | -------------------------------------------------------------------------------- /nuget/FSharp.Charting.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @project@ 5 | @build.number@ 6 | @authors@ 7 | @authors@ 8 | https://github.com/fslaborg/FSharp.Charting/blob/master/LICENSE.md 9 | https://fslab.org/FSharp.Charting 10 | https://raw.github.com/fslaborg/FSharp.Charting/master/misc/logo.png 11 | false 12 | @summary@ 13 | @description@ 14 | @releaseNotes@ 15 | Copyright 2013 16 | @tags@ 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /nuget/FSharp.Charting.template: -------------------------------------------------------------------------------- 1 | type file 2 | id FSharp.Charting 3 | licenseurl http://github.com/fslaborg/FSharp.Charting/blob/master/LICENSE.md 4 | projecturl http://fslab.org/FSharp.Charting 5 | iconurl https://raw.github.com/fslaborg/FSharp.Charting/master/misc/logo.png 6 | description 7 | The F# Charting library (FSharp.Charting.dll) is a compositional library for creating charts 8 | from F# on Windows. Use FSharp.Charting.Gtk for other platforms. FSharp.Charting is designed 9 | to be a great fit for data scripting in F# Interactive, but charts can also be embedded in 10 | Windows applications. The library is a wrapper for .NET Chart Controls, which are only supported 11 | on Windows. 12 | authors 13 | Carl Nolan 14 | Tomas Petricek 15 | Don Syme 16 | Robert Simra 17 | tags 18 | F#, fsharp, interactive, compiler, editor, charting 19 | files 20 | ../bin/FSharp.Charting.dll ==> lib/net45 21 | ../bin/FSharp.Charting.xml ==> lib/net45 22 | ../bin/FSharp.Charting.fsx ==> . 23 | dependencies 24 | FSharp.Core >= LOCKEDVERSION 25 | -------------------------------------------------------------------------------- /nuget/publish.cmd: -------------------------------------------------------------------------------- 1 | @for %%f in (..\bin\*.nupkg) do @..\.nuget\NuGet.exe push %%f -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- 1 | frameworks: net40, net45, net461, net461 2 | source https://nuget.org/api/v2 3 | 4 | nuget FSharp.Core 4.0.0.1 5 | nuget FSharp.Formatting 2.12.0 6 | nuget NUnit 3.10.1 7 | nuget NUnit.Runners 3.8 8 | nuget OxyPlot.GtkSharp 1.0.0 9 | nuget OxyPlot.Core 1.0.0 10 | nuget Nuget.CommandLine 11 | nuget FAKE 4.64.13 12 | nuget FSharp.Control.AsyncSeq 2.0.2 -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- 1 | RESTRICTION: || (== net40) (== net45) (== net461) 2 | NUGET 3 | remote: https://www.nuget.org/api/v2 4 | FAKE (4.64.13) 5 | FSharp.Compiler.Service (1.4.0.6) 6 | FSharp.Control.AsyncSeq (2.0.2) 7 | FSharp.Core (4.0.0.1) 8 | FSharp.Formatting (2.12) 9 | FSharp.Compiler.Service (1.4.0.6) 10 | FSharpVSPowerTools.Core (2.1) 11 | FSharpVSPowerTools.Core (2.1) 12 | FSharp.Compiler.Service (>= 1.4.0.6) 13 | NuGet.CommandLine (4.7) 14 | NUnit (3.10.1) 15 | NUnit.ConsoleRunner (3.8) 16 | NUnit.Extension.NUnitProjectLoader (3.6) 17 | NUnit.Extension.NUnitV2Driver (3.7) 18 | NUnit.Extension.NUnitV2ResultWriter (3.6) 19 | NUnit.Extension.TeamCityEventListener (1.0.4) 20 | NUnit.Extension.VSProjectLoader (3.7) 21 | NUnit.Runners (3.8) 22 | NUnit.ConsoleRunner (>= 3.8) 23 | NUnit.Extension.NUnitProjectLoader (>= 3.5) 24 | NUnit.Extension.NUnitV2Driver (>= 3.6) 25 | NUnit.Extension.NUnitV2ResultWriter (>= 3.5) 26 | NUnit.Extension.TeamCityEventListener (>= 1.0.3) 27 | NUnit.Extension.VSProjectLoader (>= 3.7) 28 | OxyPlot.Core (1.0) 29 | OxyPlot.GtkSharp (1.0) 30 | OxyPlot.Core (1.0) 31 | -------------------------------------------------------------------------------- /src/AssemblyInfo.Gtk.fs: -------------------------------------------------------------------------------- 1 | // Auto-Generated by FAKE; do not edit 2 | namespace System 3 | open System.Reflection 4 | 5 | [] 6 | [] 7 | [] 8 | [] 9 | [] 10 | do () 11 | 12 | module internal AssemblyVersionInformation = 13 | let [] AssemblyTitle = "FSharp.Charting.Gtk" 14 | let [] AssemblyProduct = "FSharp.Charting.Gtk" 15 | let [] AssemblyDescription = "A Charting Library for F# (Gtk, cross-platform)" 16 | let [] AssemblyVersion = "0.91.1" 17 | let [] AssemblyFileVersion = "0.91.1" 18 | -------------------------------------------------------------------------------- /src/AssemblyInfo.fs: -------------------------------------------------------------------------------- 1 | // Auto-Generated by FAKE; do not edit 2 | namespace System 3 | open System.Reflection 4 | 5 | [] 6 | [] 7 | [] 8 | [] 9 | [] 10 | do () 11 | 12 | module internal AssemblyVersionInformation = 13 | let [] AssemblyTitle = "FSharp.Charting" 14 | let [] AssemblyProduct = "FSharp.Charting" 15 | let [] AssemblyDescription = "A Charting Library for F#" 16 | let [] AssemblyVersion = "0.91.1" 17 | let [] AssemblyFileVersion = "0.91.1" 18 | -------------------------------------------------------------------------------- /src/paket.references: -------------------------------------------------------------------------------- 1 | OxyPlot.GtkSharp 2 | FSharp.Core 3 | -------------------------------------------------------------------------------- /tests/Common/FsUnit.fs: -------------------------------------------------------------------------------- 1 | module FsUnit 2 | 3 | open System.Diagnostics 4 | open NUnit.Framework 5 | open NUnit.Framework.Constraints 6 | 7 | [] 8 | let should (f : 'a -> #Constraint) x (y : obj) = 9 | let c = f x 10 | let y = 11 | match y with 12 | | :? (unit -> unit) -> box (new TestDelegate(y :?> unit -> unit)) 13 | | _ -> y 14 | Assert.That(y, c) 15 | 16 | let equal x = new EqualConstraint(x) 17 | 18 | // like "should equal", but validates same-type 19 | let shouldEqual (x: 'a) (y: 'a) = Assert.AreEqual(x, y, sprintf "Expected: %A\nActual: %A" x y) 20 | 21 | let notEqual x = new NotConstraint(new EqualConstraint(x)) 22 | 23 | let contain x = new ContainsConstraint(x) 24 | 25 | let haveLength n = Has.Length.EqualTo(n) 26 | 27 | let haveCount n = Has.Count.EqualTo(n) 28 | 29 | let be = id 30 | 31 | let Null = new NullConstraint() 32 | 33 | let Empty = new EmptyConstraint() 34 | 35 | let EmptyString = new EmptyStringConstraint() 36 | 37 | //let NullOrEmptyString = new NullOrEmptyStringConstraint() 38 | 39 | let True = new TrueConstraint() 40 | 41 | let False = new FalseConstraint() 42 | 43 | let sameAs x = new SameAsConstraint(x) 44 | 45 | let throw = Throws.TypeOf -------------------------------------------------------------------------------- /tests/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core 2 | NUnit.Runners 3 | NUnit 4 | FSharp.Core 5 | --------------------------------------------------------------------------------