Add api errors i18n

This commit is contained in:
shilangyu 2021-02-28 21:52:27 +01:00
parent 79ae723bed
commit 52448f8537
1 changed files with 50 additions and 0 deletions

View File

@ -60,6 +60,56 @@ const toExtract = {
'chat': null,
'admin': null,
'by': null,
'not_a_mod_or_admin': null,
'not_an_admin': null,
'couldnt_find_post': null,
'not_logged_in': null,
'site_ban': null,
'community_ban': null,
'downvotes_disabled': null,
'invalid_url': null,
'locked': null,
'couldnt_create_comment': null,
'couldnt_like_comment': null,
'couldnt_update_comment': null,
'no_comment_edit_allowed': null,
'couldnt_save_comment': null,
'couldnt_get_comments': null,
'report_reason_required': null,
'report_too_long': null,
'couldnt_create_report': null,
'couldnt_resolve_report': null,
'invalid_post_title': null,
'couldnt_create_post': null,
'couldnt_like_post': null,
'couldnt_find_community': null,
'couldnt_get_posts': null,
'no_post_edit_allowed': null,
'couldnt_save_post': null,
'site_already_exists': null,
'couldnt_update_site': null,
'invalid_community_name': null,
'community_already_exists': null,
'community_moderator_already_exists': null,
'community_follower_already_exists': null,
'not_a_moderator': null,
'couldnt_update_community': null,
'no_community_edit_allowed': null,
'system_err_login': null,
'community_user_already_banned': null,
'couldnt_find_that_username_or_email': null,
'password_incorrect': null,
'registration_closed': null,
'invalid_password': null,
'passwords_dont_match': null,
'captcha_incorrect': null,
'invalid_username': null,
'bio_length_overflow': null,
'couldnt_update_user': null,
'couldnt_update_private_message': null,
'couldnt_update_post': null,
'couldnt_create_private_message': null,
'no_private_message_edit_allowed': null,
};
const repoName = 'lemmy-translations';