summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-x[-rw-r--r--]bin/draknfs3
-rwxr-xr-xbin/draksambashare3
3 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index db4d9fc..0496603 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@
o use new status icons
o add Quit button
o do not show markup instead of interface name if interface does not exist (#33241)
+- draknfs/draksambashare:
+ o use translations (#33221)
0.14:
- draknetcenter:
diff --git a/bin/draknfs b/bin/draknfs
index def68be..e71c102 100644..100755
--- a/bin/draknfs
+++ b/bin/draknfs
@@ -19,6 +19,9 @@
use strict;
use lib qw(/usr/lib/libDrakX);
+
+# i18n: IMPORTANT: to get correct namespace (drakx-net instead of libDrakX)
+BEGIN { unshift @::textdomains, 'drakx-net' }
use standalone;
use common;
use network::network;
diff --git a/bin/draksambashare b/bin/draksambashare
index 418b552..f8ae191 100755
--- a/bin/draksambashare
+++ b/bin/draksambashare
@@ -23,6 +23,9 @@ my $version = "0.2";
use utf8;
use strict;
use lib qw(/usr/lib/libDrakX);
+
+# i18n: IMPORTANT: to get correct namespace (drakx-net instead of libDrakX)
+BEGIN { unshift @::textdomains, 'drakx-net' }
use standalone;
use common;
use network::network;