peertube-plugin-livechat/conversejs/loc.keys.js

43 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-05-23 09:42:14 +00:00
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
//
// SPDX-License-Identifier: AGPL-3.0-only
/** 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',
'online_help',
2024-04-30 15:11:10 +00:00
'tasks',
'task_list_create',
'task_list_create_error',
2024-05-05 22:13:20 +00:00
'task_list_name',
'task_list_delete',
2024-05-06 13:57:42 +00:00
'task_list_delete_confirm',
'task_create',
'task_name',
2024-05-06 15:26:20 +00:00
'task_description',
'task_delete',
2024-05-12 14:21:07 +00:00
'task_delete_confirm',
'task_list_pick_title',
'task_list_pick_empty',
'task_list_pick_message',
'muted_anonymous_message',
'new_poll'
]
module.exports = locKeys