aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/read_conf.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/configuration/read_conf.ml')
-rw-r--r--lib/configuration/read_conf.ml9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/configuration/read_conf.ml b/lib/configuration/read_conf.ml
index 952c43c..df1a728 100644
--- a/lib/configuration/read_conf.ml
+++ b/lib/configuration/read_conf.ml
@@ -184,17 +184,18 @@ module Make (S : Decoders.Decode.S) = struct
S.field_opt_or ~default:[] "uniq"
@@ S.list (self#parse_expression ExpressionParser.path)
in
- S.succeed @@ fun version source externals ->
- Syntax.{ version; source; externals; columns; filters; sort; uniq }
+ S.succeed @@ fun version source externals locale ->
+ Syntax.
+ { version; source; externals; columns; filters; sort; uniq; locale }
method conf =
let* source = S.field "source" self#source
and* externals =
S.field_opt_or ~default:[] "externals"
(S.key_value_pairs_seq self#external_)
- in
+ and* locale = S.field_opt "locale" S.string in
let* sheet =
- S.field "sheet" self#sheet >|= fun v -> v 1 source externals
+ S.field "sheet" self#sheet >|= fun v -> v 1 source externals locale
in
S.succeed sheet