all repos — fluxbox @ 5cc0f12f3f700750eae3234b42d94fa1ccc150db

custom fork of the fluxbox windowmanager

we should only load LC_MESSAGES, not LC_ALL
rathnor rathnor
commit

5cc0f12f3f700750eae3234b42d94fa1ccc150db

parent

18684d3c5d65888ea00b5afb30f6c74997f1a9a1

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/FbTk/I18n.ccsrc/FbTk/I18n.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: I18n.cc,v 1.1 2004/06/07 11:46:05 rathnor Exp $ +// $Id: I18n.cc,v 1.2 2004/06/20 15:16:08 rathnor Exp $ /* Note: * A good reference for the older non-gettext style I18n

@@ -65,7 +65,7 @@

I18n::I18n():m_multibyte(false), m_catalog_fd((nl_catd)(-1)) { #ifdef HAVE_SETLOCALE //make sure we don't get 0 to m_locale string - char *temp = setlocale(LC_ALL, ""); + char *temp = setlocale(LC_MESSAGES, ""); m_locale = ( temp ? temp : ""); if (m_locale.empty()) { cerr<<"Warning: Failed to set locale, reverting to \"C\""<<endl;