From ea64727f90a5f9a66c2fa81612e46ecdae438303 Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Thu, 28 Jun 2018 21:35:23 +0200 Subject: all: I18N support This adds I18N support using standard gettext system together with an initial German translation. This can be used to search locales in some directory: Intl.bindtextdomain("shopsystem", "/home/sre/src/serial-barcode-scanner"); And this can be used to switch language at runtime: Intl.setlocale(LocaleCategory.ALL, ""); --- src/config/config.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/config/config.vala') diff --git a/src/config/config.vala b/src/config/config.vala index b25b667..bc476f4 100644 --- a/src/config/config.vala +++ b/src/config/config.vala @@ -23,7 +23,7 @@ public class Cfg { this.file = new KeyFile(); this.file.load_from_file(file, KeyFileFlags.NONE); } catch(Error e) { - error("Could not load configuration file: %s", e.message); + error(_("Could not load configuration file: %s"), e.message); } } -- cgit v1.2.3