Commit 24b204e8 authored by thierrytiti's avatar thierrytiti

Offline Pretty Status

add offline as possible case to enable translation
parent 0e47e72c
...@@ -4820,6 +4820,8 @@ ...@@ -4820,6 +4820,8 @@
pretty_status = __('away for long'); pretty_status = __('away for long');
} else if (stat === 'away') { } else if (stat === 'away') {
pretty_status = __('away'); pretty_status = __('away');
} else if (stat === 'offline') {
pretty_status = __('offline');
} else { } else {
pretty_status = __(stat) || __('online'); pretty_status = __(stat) || __('online');
} }
......
...@@ -15,6 +15,7 @@ Changelog ...@@ -15,6 +15,7 @@ Changelog
* CSS fix: room-info bug on hover after room description loaded [thierrytiti] * CSS fix: room-info bug on hover after room description loaded [thierrytiti]
* I18N: Autodetection of User Locale if no i18n setting is set. [thierrytiti] * I18N: Autodetection of User Locale if no i18n setting is set. [thierrytiti]
* CSS: Fonts Path: editabable $font-path via sass/variables.scss [thierrytiti] * CSS: Fonts Path: editabable $font-path via sass/variables.scss [thierrytiti]
* Add offline pretty status to enable translation [thierrytiti]
0.9.3 (2015-05-01) 0.9.3 (2015-05-01)
------------------ ------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment