peertube-plugin-livechat/conversejs/loc.keys.js
John Livingston d19d8d7391
Task lists WIP:
* initializing some code parts
* mechanism to add font-awesome icons to the defaults one that
  ConverseJS uses
* new way to override ConverseJS index.js (to add new custom plugins,
  that are directly build into ConverseJS)
2024-05-13 10:52:29 +02:00

23 lines
794 B
JavaScript

/** Localization keys to inject in ConverseJS:
* these keys are used to:
* - inject needed localization strings in ConverseJS language files
* - defined global variable using Webpack, to retrieve the english key to pass to the ConverseJS localization function
*/
const locKeys = [
'slow_mode_info',
'login_using_external_account',
'login_remote_peertube',
'login_remote_peertube_searching',
'login_remote_peertube_url',
'login_remote_peertube_url_invalid',
'login_remote_peertube_no_livechat',
'login_remote_peertube_video_not_found',
'login_remote_peertube_video_not_found_try_anyway',
'login_remote_peertube_video_not_found_try_anyway_button',
'login_remote_peertube_video_open_failed',
'login_external_auth_alert_message',
'tasks'
]
module.exports = locKeys