all repos — fluxbox @ 62a298b0b30aa5b4990f462aece224e09e4fafe6

custom fork of the fluxbox windowmanager

make new nls stuff work. Was missing path update
simonb simonb
commit

62a298b0b30aa5b4990f462aece224e09e4fafe6

parent

94db19c00720ef65f847ee6f02c12b9d11d5ee02

2 files changed, 8 insertions(+), 4 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,13 @@

(Format: Year/Month/Day) Changes for 1.0rc2: +*06/06/21: + * Fix nls file location. nls wouldn't have worked, why did no-one say? + (Simon) + - Need a couple more fixes too: + * Messages output on stdout/err need to be in local encoding + * Check for existence of catalog file, if not exist, try opening an + iconv for UTF-8, and loading that one instead. + FbTk/I18n.cc *06/06/20: * Fix window placement when apps remembers size but not location (Simon) Window.cc
M src/FbTk/I18n.ccsrc/FbTk/I18n.cc

@@ -98,10 +98,6 @@ // remove everything after @

string::size_type index = m_locale.find('@'); if (index != string::npos) m_locale.erase(index); //erase all characters starting at index - // remove everything after . - index = m_locale.find('.'); - if (index != string::npos) - m_locale.erase(index); //erase all characters starting at index // remove everything before = index = m_locale.find('='); if (index != string::npos)