2024-05-23 11:42:14 +02:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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',
|
2024-06-20 16:46:14 +02:00
|
|
|
'task_list_pick_message',
|
2024-06-27 19:56:12 +02:00
|
|
|
'muted_anonymous_message',
|
2024-07-01 14:36:59 +02:00
|
|
|
'new_poll',
|
|
|
|
'poll_question',
|
|
|
|
'poll_duration',
|
|
|
|
'poll_anonymous_results',
|
|
|
|
'poll_choice_n',
|
|
|
|
'poll_title',
|
2024-07-01 17:45:11 +02:00
|
|
|
'poll_instructions',
|
|
|
|
'poll_end',
|
2024-07-04 15:15:28 +02:00
|
|
|
'poll',
|
2024-07-04 17:39:40 +02:00
|
|
|
'poll_vote_instructions',
|
2024-07-05 10:39:38 +02:00
|
|
|
'poll_vote_instructions_xmpp',
|
2024-07-04 17:39:40 +02:00
|
|
|
'poll_is_over',
|
|
|
|
'poll_choice_invalid',
|
2024-07-29 18:58:02 +02:00
|
|
|
'poll_anonymous_vote_ok',
|
2024-07-30 01:24:19 +02:00
|
|
|
'moderator_notes',
|
|
|
|
'moderator_notes_create_error',
|
|
|
|
'moderator_note_create',
|
|
|
|
'moderator_note_description',
|
|
|
|
'moderator_note_delete',
|
2024-07-30 18:36:53 +02:00
|
|
|
'moderator_note_delete_confirm',
|
2024-07-31 15:53:19 +02:00
|
|
|
'moderator_note_create_for_participant',
|
|
|
|
'moderator_note_search_for_participant',
|
2024-07-31 21:55:20 +02:00
|
|
|
'moderator_note_filters',
|
2024-08-01 16:10:34 +02:00
|
|
|
'moderator_note_original_nick',
|
2024-08-01 18:58:25 +02:00
|
|
|
'search_occupant_message',
|
2024-08-06 17:54:07 +02:00
|
|
|
'message_search',
|
2024-09-05 18:28:54 +02:00
|
|
|
'message_search_original_nick',
|
2024-09-11 19:21:57 +02:00
|
|
|
'emoji_only_info',
|
2024-09-12 11:17:44 +02:00
|
|
|
'announcements_message_type',
|
2024-09-11 19:21:57 +02:00
|
|
|
'announcements_message_type_standard',
|
|
|
|
'announcements_message_type_announcement',
|
2024-09-12 11:17:44 +02:00
|
|
|
'announcements_message_type_highlight',
|
|
|
|
'announcements_message_type_warning'
|
2024-04-08 19:02:56 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = locKeys
|