summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/stdio.pm
Commit message (Expand)AuthorAgeFilesLines
* kill $Id:$ tagsThierry Vignaud2014-06-071-1/+1
* perl_checker cleanupsThierry Vignaud2012-03-231-2/+2
* Synthesized commit during git-svn import combining previous Mandriva history ...Mageia SVN-Git Migration2011-02-061-1/+1
* - bug command: fix choosing the usb-key/floppy drivePascal Rigaux2007-08-271-4/+10
* re-sync after the big svn lossPascal Rigaux2007-04-251-9/+10
* cleanup (translate late, and move methods to upper class)Pascal Rigaux2005-08-301-8/+0
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-1/+1
* remove some unneeded ";", add some for normalization (as told by perl_checker)Pascal Rigaux2004-11-181-1/+1
* perl_checker compliancePascal Rigaux2004-08-111-1/+1
* $def_n is unusedPascal Rigaux2004-01-221-2/+1
* let interactive uses stock items on x11 and old drak translated items inThierry Vignaud2003-07-141-0/+8
* perl_checker adaptations + fixesPascal Rigaux2003-04-241-1/+1
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-2/+2
* fix typoPascal Rigaux2002-12-041-1/+1
* perl_checker adaptationsPascal Rigaux2002-11-271-3/+3
* s/$x ne (0|'')/$x/Thierry Vignaud2002-11-201-2/+2
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-2/+2
* - replace ... =~ 'foo' with ... =~ /foo/Pascal Rigaux2002-11-111-2/+2
* various small syntax enhancements to please perl_checkerPascal Rigaux2002-11-111-1/+1
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-17/+17
* use each_index instead of map_index when the return value is not usedPascal Rigaux2002-11-051-4/+4
* - handle setting 'ok' && 'cancel'Pascal Rigaux2002-08-131-0/+2
* make new perl_checker happyPascal Rigaux2002-07-311-1/+1
* make new perl_checker happy (and that's not easy!)Pascal Rigaux2002-07-311-2/+2
* - Big Move 1: interactive::* hierarchyThierry Vignaud2002-07-231-0/+171
cperms.py?id=1d92ec18daf95697312b5f0c2db8b70cab3a177c'>src/msec/msecperms.py
+++ b/src/msec/msecperms.py
@@ -18,7 +18,7 @@ import getopt
import gettext
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/audit.py b/src/msec/plugins/audit.py
index 7741cdf..2a68aa2 100755
--- a/src/msec/plugins/audit.py
+++ b/src/msec/plugins/audit.py
@@ -10,7 +10,7 @@ import config
import gettext
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/log.py b/src/msec/plugins/log.py
index 2749263..b7465c7 100755
--- a/src/msec/plugins/log.py
+++ b/src/msec/plugins/log.py
@@ -12,7 +12,7 @@ import config
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/msec.py b/src/msec/plugins/msec.py
index 453a233..16deef2 100755
--- a/src/msec/plugins/msec.py
+++ b/src/msec/plugins/msec.py
@@ -17,7 +17,7 @@ import config
import gettext
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/network.py b/src/msec/plugins/network.py
index d9b62f9..cbee32d 100755
--- a/src/msec/plugins/network.py
+++ b/src/msec/plugins/network.py
@@ -17,7 +17,7 @@ import config
import gettext
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/pam.py b/src/msec/plugins/pam.py
index a9f2bf4..353fa2a 100755
--- a/src/msec/plugins/pam.py
+++ b/src/msec/plugins/pam.py
@@ -14,7 +14,7 @@ import config
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/sectool.py b/src/msec/plugins/sectool.py
index f5c6637..392c5c3 100755
--- a/src/msec/plugins/sectool.py
+++ b/src/msec/plugins/sectool.py
@@ -14,7 +14,7 @@ import config
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/plugins/sudo.py b/src/msec/plugins/sudo.py
index f90cf5b..b61a078 100755
--- a/src/msec/plugins/sudo.py
+++ b/src/msec/plugins/sudo.py
@@ -14,7 +14,7 @@ import config
# localization
try:
- gettext.install('msec')
+ gettext.install('msec', unicode=1)
except IOError:
_ = str
diff --git a/src/msec/tools.py b/src/msec/tools.py
index 69b60ba..3a079cd 100755
--- a/src/msec/tools.py
+++ b/src/msec/tools.py
@@ -12,7 +12,7 @@ import locale
# localization
import gettext
try:
- gettext.install("msec")
+ gettext.install("msec", unicode=1)
except IOError:
_ = str