Add comment.
[dcpomatic.git] / src / wx / config_dialog.cc
index 9e79829ab53a049238ef0ae5b146b22d675a4848..00ae80a4c8f1f30079efa58d555ced06cb7cb803 100644 (file)
@@ -27,6 +27,7 @@
 #include "static_text.h"
 #include "lib/constants.h"
 #include <dcp/file.h>
+#include <dcp/filesystem.h>
 #include <dcp/raw_convert.h>
 
 
@@ -129,6 +130,7 @@ GeneralPage::add_language_controls (wxGridBagSizer* table, int& r)
        languages.push_back (make_pair("Español", "es_ES"));
        languages.push_back (make_pair("Français", "fr_FR"));
        languages.push_back (make_pair("Italiano", "it_IT"));
+       languages.push_back (make_pair("ქართული", "ka_KA"));
        languages.push_back (make_pair("Nederlands", "nl_NL"));
        languages.push_back (make_pair("Русский", "ru_RU"));
        languages.push_back (make_pair("Polski", "pl_PL"));
@@ -575,7 +577,7 @@ CertificateChainEditor::import_private_key ()
        if (d->ShowModal() == wxID_OK) {
                try {
                        boost::filesystem::path p (wx_to_std (d->GetPath ()));
-                       if (boost::filesystem::file_size (p) > 8192) {
+                       if (dcp::filesystem::file_size(p) > 8192) {
                                error_dialog (
                                        this,
                                        wxString::Format (_("Could not read key file; file is too long (%s)"), std_to_wx (p.string ()))