blob: 814a076b5499bd61612958d3b61be8dcaf449643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- a/src/fileroller-module.c
+++ b/src/fileroller-module.c
@@ -31,10 +31,10 @@
void
nemo_module_initialize (GTypeModule*module)
{
- nemo_fr_register_type (module);
+ bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
- bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
- bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ nemo_fr_register_type (module);
}
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('nemo-fileroller',
'c',
- version: '5.0.0',
+ version: '5.0.1',
meson_version: '>=0.49.0'
)
|