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
|
|
|
|
|
2024-04-08 17:02:56 +00: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 10:09:25 +00:00
|
|
|
'login_remote_peertube_video_not_found_try_anyway_button',
|
2024-04-22 15:59:56 +00:00
|
|
|
'login_remote_peertube_video_open_failed',
|
2024-04-29 14:46:21 +00:00
|
|
|
'login_external_auth_alert_message',
|
2024-05-13 11:01:18 +00:00
|
|
|
'online_help',
|
2024-04-30 15:11:10 +00:00
|
|
|
'tasks',
|
|
|
|
'task_list_create',
|
2024-05-02 15:53:08 +00:00
|
|
|
'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',
|
2024-05-12 16:45:51 +00:00
|
|
|
'task_list_pick_title',
|
|
|
|
'task_list_pick_empty',
|
2024-06-20 14:46:14 +00:00
|
|
|
'task_list_pick_message',
|
2024-06-27 17:56:12 +00:00
|
|
|
'muted_anonymous_message',
|
2024-07-01 12:36:59 +00:00
|
|
|
'new_poll',
|
|
|
|
'poll_question',
|
|
|
|
'poll_duration',
|
|
|
|
'poll_anonymous_results',
|
|
|
|
'poll_choice_n',
|
|
|
|
'poll_title',
|
2024-07-01 15:45:11 +00:00
|
|
|
'poll_instructions',
|
|
|
|
'poll_end',
|
2024-07-04 13:15:28 +00:00
|
|
|
'poll',
|
2024-07-04 15:39:40 +00:00
|
|
|
'poll_vote_instructions',
|
2024-07-05 08:39:38 +00:00
|
|
|
'poll_vote_instructions_xmpp',
|
2024-07-04 15:39:40 +00:00
|
|
|
'poll_is_over',
|
|
|
|
'poll_choice_invalid',
|
|
|
|
'poll_anonymous_vote_ok'
|
2024-04-08 17:02:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = locKeys
|