2024-04-08 19:02:56 +02:00
|
|
|
/** 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',
|
2024-04-17 12:09:25 +02:00
|
|
|
'login_remote_peertube_video_not_found_try_anyway_button',
|
2024-04-22 17:59:56 +02:00
|
|
|
'login_remote_peertube_video_open_failed',
|
2024-04-29 16:46:21 +02:00
|
|
|
'login_external_auth_alert_message',
|
2024-05-13 13:01:18 +02:00
|
|
|
'online_help',
|
2024-04-30 17:11:10 +02:00
|
|
|
'tasks',
|
|
|
|
'task_list_create',
|
2024-05-02 17:53:08 +02:00
|
|
|
'task_list_create_error',
|
2024-05-06 00:13:20 +02:00
|
|
|
'task_list_name',
|
|
|
|
'task_list_delete',
|
2024-05-06 15:57:42 +02:00
|
|
|
'task_list_delete_confirm',
|
|
|
|
'task_create',
|
|
|
|
'task_name',
|
2024-05-06 17:26:20 +02:00
|
|
|
'task_description',
|
|
|
|
'task_delete',
|
2024-05-12 16:21:07 +02:00
|
|
|
'task_delete_confirm',
|
2024-05-12 18:45:51 +02:00
|
|
|
'task_list_pick_title',
|
|
|
|
'task_list_pick_empty',
|
|
|
|
'task_list_pick_message'
|
2024-04-08 19:02:56 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = locKeys
|