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 |