| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565 |
- {
- "1_2_width": "",
- "1_4_width": "",
- "24x_more_compile_time": "",
- "3_4_width": "",
- "About": "",
- "Account": "",
- "Documentation": "",
- "Get Involved": "",
- "Help": "",
- "Learn": "",
- "Pricing": "",
- "Solutions": "",
- "a_custom_size_has_been_used_in_the_latex_code": "",
- "a_file_with_that_name_already_exists_and_will_be_overriden": "",
- "a_more_comprehensive_list_of_keyboard_shortcuts": "",
- "a_new_reference_was_added": "",
- "a_new_reference_was_added_from_library": "",
- "a_new_reference_was_added_from_provider": "",
- "a_new_reference_was_added_to_file": "",
- "a_new_reference_was_added_to_file_from_library": "",
- "a_new_reference_was_added_to_file_from_provider": "",
- "a_new_version_of_the_rolling_texlive_build_released": "",
- "about_to_archive_projects": "",
- "about_to_delete_cert": "",
- "about_to_delete_projects": "",
- "about_to_delete_tag": "",
- "about_to_delete_the_following_project": "",
- "about_to_delete_the_following_projects": "",
- "about_to_delete_user_preamble": "",
- "about_to_enable_managed_users": "",
- "about_to_leave_project": "",
- "about_to_leave_projects": "",
- "about_to_remove_user_preamble": "",
- "about_to_trash_projects": "",
- "abstract": "",
- "accept_all_cookies": "",
- "accept_and_continue": "",
- "accept_change": "",
- "accept_change_error_description": "",
- "accept_change_error_title": "",
- "accept_invitation": "",
- "accept_or_reject_individual_edits": "",
- "accept_selected_changes": "",
- "accept_suggestion": "",
- "accept_terms_and_conditions": "",
- "accepted_invite": "",
- "accepting": "",
- "access_all_premium_features": "",
- "access_denied": "",
- "access_edit_your_projects": "",
- "access_levels_changed": "",
- "access_updated": "",
- "account_associated_with_x": "",
- "account_billed_manually": "",
- "account_has_been_link_to_group_account": "",
- "account_has_been_link_to_institution_account": "",
- "account_has_past_due_invoice_change_plan_warning": "",
- "account_help": "",
- "account_managed_by_group_administrator": "",
- "account_managed_by_group_teamname": "",
- "account_not_linked_to_dropbox": "",
- "account_settings": "",
- "acct_linked_to_institution_acct_2": "",
- "action_needed": "",
- "actions": "",
- "active": "",
- "add": "",
- "add_a_recovery_email_address": "",
- "add_add_on_to_your_plan": "",
- "add_additional_certificate": "",
- "add_affiliation": "",
- "add_ai_assist_annual_and_get_unlimited_access": "",
- "add_ai_assist_monthly_and_get_unlimited_access": "",
- "add_ai_assist_to_your_plan": "",
- "add_another_address_line": "",
- "add_another_email": "",
- "add_another_token": "",
- "add_comma_separated_emails_help": "",
- "add_comment": "",
- "add_comment_error_message": "",
- "add_comment_error_title": "",
- "add_company_details": "",
- "add_domain": "",
- "add_email_address": "",
- "add_email_to_claim_features": "",
- "add_files": "",
- "add_more_collaborators": "",
- "add_more_licenses_to_my_plan": "",
- "add_more_manager_emails": "",
- "add_new_email": "",
- "add_on": "",
- "add_ons": "",
- "add_or_remove_project_from_tag": "",
- "add_reference": "",
- "add_references": "",
- "add_role_and_department": "",
- "add_to_dictionary": "",
- "add_to_tag": "",
- "add_txt_record_to_dns_with_token": "",
- "add_your_comment_here": "",
- "added_by_on": "",
- "adding": "",
- "adding_a_domain_will_initiate_verification": "",
- "additional_certificate": "",
- "address_line_1": "",
- "address_second_line_optional": "",
- "adjust_column_width": "",
- "admin_titlecase": "",
- "advanced_reference_search_mode": "",
- "advancing_research_with": "",
- "after_that_well_bill_you_x_total_y_subtotal_z_tax_annually_on_date_unless_you_cancel": "",
- "aggregate_changed": "",
- "aggregate_to": "",
- "agree": "",
- "agree_with_the_terms": "",
- "ai_assist_in_overleaf_is_included_via_writefull_groups": "",
- "ai_assist_in_overleaf_is_included_via_writefull_individual": "",
- "ai_assist_unavailable": "",
- "ai_assistance": "",
- "ai_assistant": "",
- "ai_assistant_disabled": "",
- "ai_can_make_mistakes": "",
- "ai_features": "",
- "ai_features_unavailable_on_this_project": "",
- "ai_feedback_please_provide_more_detail": "",
- "ai_feedback_tell_us_what_was_wrong_so_we_can_improve": "",
- "ai_feedback_the_answer_was_too_long": "",
- "ai_feedback_the_answer_wasnt_detailed_enough": "",
- "ai_feedback_the_suggestion_didnt_fix_the_error": "",
- "ai_feedback_the_suggestion_wasnt_the_best_fix_available": "",
- "ai_feedback_there_was_no_code_fix_suggested": "",
- "ai_language_suggestions": "",
- "ai_shortcut_on_empty_lines": "",
- "ai_shortcut_on_text_selection": "",
- "alignment": "",
- "all_borders": "",
- "all_events": "",
- "all_features_in_group_standard_plus": "",
- "all_logs": "",
- "all_premium_features": "",
- "all_project_activity": "",
- "all_project_activity_description": "",
- "all_projects": "",
- "all_projects_will_be_transferred_immediately": "",
- "all_these_experiments_are_available_exclusively": "",
- "allocate_license": "",
- "allows_to_search_by_author_title_etc_possible_to_pull_results_directly_from_your_reference_manager_if_connected": "",
- "already_in_your_library": "",
- "an_email_has_already_been_sent_to": "",
- "an_error_occured_while_restoring_project": "",
- "and_much_more": "",
- "anonymous": "",
- "anyone": "",
- "anyone_in_x": "",
- "anyone_in_x_with_the_link": "",
- "anyone_in_your_group_with_the_link": "",
- "anyone_with_link_can_edit": "",
- "anyone_with_link_can_view": "",
- "anyone_with_the_link": "",
- "app_on_x": "",
- "appearance": "",
- "apply": "",
- "apply_changes": "",
- "apply_educational_discount_description_with_group_discount": "",
- "apply_suggestion": "",
- "archive": "",
- "archive_projects": "",
- "archived": "",
- "archived_projects": "",
- "archiving_projects_wont_affect_collaborators": "",
- "are_you_affiliated_with_an_institution": "",
- "are_you_getting_an_undefined_control_sequence_error": "",
- "are_you_still_at": "",
- "are_you_sure_you_want_to_cancel_add_on": "",
- "as_email": "",
- "ask_proj_owner_to_unlink_from_current_github": "",
- "ask_proj_owner_to_upgrade_for_full_history": "",
- "ask_repo_owner_to_reconnect": "",
- "ask_repo_owner_to_renew_overleaf_subscription": "",
- "at_most_x_libraries_can_be_selected": "",
- "attach_image_or_pdf": "",
- "audit_logs": "",
- "auto_close_brackets": "",
- "auto_compile": "",
- "auto_complete": "",
- "autocompile": "",
- "autocompile_disabled": "",
- "autocompile_disabled_reason": "",
- "autocomplete": "",
- "autocomplete_references": "",
- "automatically_insert_closing_brackets_and_parentheses": "",
- "automatically_recompile_the_project_as_you_edit": "",
- "available_for_pro_groups": "",
- "back": "",
- "back_to_configuration": "",
- "back_to_editing": "",
- "back_to_editor": "",
- "back_to_my_projects": "",
- "back_to_pdf": "",
- "back_to_subscription": "",
- "back_to_your_projects": "",
- "basic_compile_time": "",
- "before_you_use_error_assistant": "",
- "beta_program_already_participating": "",
- "beta_program_benefits": "",
- "beta_program_not_participating": "",
- "bibtex_duplicates_keys": "",
- "billed_annually_at": "",
- "billed_monthly_at": "",
- "billed_yearly": "",
- "billing": "",
- "billing_period_sentence_case": "",
- "binary_history_error": "",
- "blank_project": "",
- "blocked_filename": "",
- "blocked_language_suggestions": "",
- "blog": "",
- "bold": "",
- "booktabs": "",
- "breadcrumbs": "",
- "browser": "",
- "build_collection_of_most_used_references": "",
- "bullet_list": "",
- "buy_licenses": "",
- "buy_more_licenses": "",
- "buy_now_no_exclamation_mark": "",
- "by_email": "",
- "by_sharing_link": "",
- "by_subscribing_you_agree_to_our_terms_of_service": "",
- "can_link_institution_email_acct_to_institution_acct": "",
- "can_link_your_institution_acct_2": "",
- "can_now_relink_dropbox": "",
- "can_view_content": "",
- "cancel": "",
- "cancel_add_on": "",
- "cancel_any_existing_subscriptions": "",
- "cancel_any_existing_subscriptions_and_leave_any_group_subscriptions": "",
- "cancel_anytime": "",
- "cancel_my_account": "",
- "cancel_my_subscription": "",
- "cancel_personal_subscription_first": "",
- "cancel_subscription": "",
- "cancel_your_subscription": "",
- "cannot_invite_non_user": "",
- "cannot_invite_self": "",
- "cannot_verify_user_not_robot": "",
- "cant_see_what_youre_looking_for_question": "",
- "caption_above": "",
- "caption_below": "",
- "captions": "",
- "capture": "",
- "careers": "",
- "category_arrows": "",
- "category_greek": "",
- "category_misc": "",
- "category_operators": "",
- "category_relations": "",
- "center": "",
- "change": "",
- "change_email_address": "",
- "change_language": "",
- "change_owner": "",
- "change_password": "",
- "change_password_in_account_settings": "",
- "change_plan": "",
- "change_primary_email": "",
- "change_primary_email_address_instructions": "",
- "change_project_owner": "",
- "change_role_and_department": "",
- "change_settings": "",
- "change_the_ownership_of_your_personal_projects": "",
- "change_to_group_plan": "",
- "change_to_this_plan": "",
- "changes_applied": "",
- "changes_to_these_settings_will_be_applied_to_all_new_projects": "",
- "changing_the_position_of_your_figure": "",
- "changing_the_position_of_your_table": "",
- "characters": "",
- "chat": "",
- "chat_error": "",
- "checking_dropbox_status": "",
- "checking_project_github_status": "",
- "choose_a_custom_color": "",
- "choose_from_group_members": "",
- "choose_how_you_search_your_references": "",
- "choose_markdown_file": "",
- "choose_which_experiments": "",
- "choose_word_document": "",
- "citation": "",
- "citation_key_helper": "",
- "cite_a_reference_from_your_reference_manager_to_automatically_add_it_to_your_bib_file": "",
- "cite_directly_or_import_references": "",
- "cite_faster": "",
- "clear_cached_files": "",
- "clear_filters": "",
- "clear_search": "",
- "clearing": "",
- "click_here_to_view_sl_in_lng": "",
- "click_recompile_and_check_your_pdf_to_see_how_its_looking": "",
- "click_to_unpause": "",
- "clicking_delete_will_remove_sso_config_and_clear_saml_data": "",
- "clone_with_git": "",
- "close": "",
- "close_dialog": "",
- "close_other_tabs": "",
- "close_tabs_to_the_right": "",
- "clsi_maintenance": "",
- "clsi_unavailable": "",
- "code": "",
- "code_check_failed_explanation": "",
- "collaborate_online_and_offline": "",
- "collaborator_chat": "",
- "collabs_per_proj": "",
- "collabs_per_proj_multiple": "",
- "collabs_per_proj_plural": "",
- "collabs_per_proj_plus": "",
- "collabs_per_proj_plus_plural": "",
- "collapse": "",
- "column_width": "",
- "column_width_is_custom_click_to_resize": "",
- "column_width_is_x_click_to_resize": "",
- "comment": "",
- "comment_only": "",
- "comment_only_upgrade_for_track_changes": "",
- "comment_only_upgrade_to_enable_track_changes": "",
- "common": "",
- "commons": "",
- "commons_plan_tooltip": "",
- "compact": "",
- "company_name": "",
- "compare": "",
- "compare_all_plans": "",
- "comparing_from_x_to_y": "",
- "compile_error_at_line": "",
- "compile_error_entry_description": "",
- "compile_error_handling": "",
- "compile_larger_projects": "",
- "compile_mode": "",
- "compile_terminated_by_user": "",
- "compile_timeout_modal_intro": "",
- "compiler": "",
- "compiling": "",
- "compliance": "",
- "compromised_password": "",
- "configure_sso": "",
- "confirm": "",
- "confirm_accept_selected_changes": "",
- "confirm_accept_selected_changes_plural": "",
- "confirm_affiliation": "",
- "confirm_affiliation_to_relink_dropbox": "",
- "confirm_delete_user_type_email_address": "",
- "confirm_new_password": "",
- "confirm_primary_email_change": "",
- "confirm_reject_selected_changes": "",
- "confirm_reject_selected_changes_plural": "",
- "confirm_remove_sso_config_enter_email": "",
- "confirm_remove_user_type_email_address": "",
- "confirm_secondary_email": "",
- "confirm_your_email": "",
- "confirming": "",
- "conflicting_paths_found": "",
- "congratulations_youve_successfully_join_group": "",
- "connected_users": "",
- "connection_lost_with_unsaved_changes": "",
- "contact_group_admin": "",
- "contact_sales": "",
- "contact_us": "",
- "contacting_the_sales_team": "",
- "continue": "",
- "continue_github_merge": "",
- "continue_to": "",
- "continue_using_free_features": "",
- "continue_with_free_plan": "",
- "conversion_error_details": "",
- "cookie_banner": "",
- "cookie_banner_info": "",
- "copied": "",
- "copy": "",
- "copy_project": "",
- "copy_response": "",
- "copy_sharing_link": "",
- "copying": "",
- "cost_summary": "",
- "could_not_save_reference_to_bib_file": "",
- "could_not_save_reference_to_bib_file_forbidden": "",
- "country": "",
- "country_flag": "",
- "coupon_code_is_not_valid_for_selected_plan": "",
- "coupons_not_included": "",
- "create": "",
- "create_a_new_project": "",
- "create_account": "",
- "create_new_account": "",
- "create_new_subscription": "",
- "create_new_tag": "",
- "create_project_in_github": "",
- "created": "",
- "created_at": "",
- "creating": "",
- "cross_reference": "",
- "current_file": "",
- "current_password": "",
- "currently_seeing_only_24_hrs_history": "",
- "currently_signed_in_as_x": "",
- "currently_subscribed_to_plan": "",
- "custom": "",
- "custom_borders": "",
- "custom_prompt": "",
- "custom_prompt_example": "",
- "customer_stories": "",
- "customize_your_group_subscription": "",
- "customizing_figures": "",
- "customizing_tables": "",
- "cut": "",
- "dark_mode_pdf_preview": "",
- "dark_themes": "",
- "date_and_owner": "",
- "date_and_time": "",
- "dealing_with_errors": "",
- "decrease_indent": "",
- "delete": "",
- "delete_account": "",
- "delete_account_confirmation_label": "",
- "delete_account_warning_message_3": "",
- "delete_acct_no_existing_pw": "",
- "delete_and_leave": "",
- "delete_and_leave_projects": "",
- "delete_authentication_token": "",
- "delete_authentication_token_info": "",
- "delete_certificate": "",
- "delete_comment": "",
- "delete_comment_error_message": "",
- "delete_comment_error_title": "",
- "delete_comment_message": "",
- "delete_comment_thread": "",
- "delete_comment_thread_message": "",
- "delete_figure": "",
- "delete_message": "",
- "delete_message_confirmation": "",
- "delete_permanently": "",
- "delete_projects": "",
- "delete_row_or_column": "",
- "delete_sso_config": "",
- "delete_table": "",
- "delete_tag": "",
- "delete_token": "",
- "delete_user": "",
- "delete_your_account": "",
- "deleted_at": "",
- "deleted_by_email": "",
- "deleted_by_id": "",
- "deleted_by_ip": "",
- "deleted_by_on": "",
- "deleted_user": "",
- "deleting": "",
- "demonstrating_git_integration": "",
- "demonstrating_track_changes_feature": "",
- "department": "",
- "description": "",
- "details": "",
- "details_provided_by_google_explanation": "",
- "dictionary": "",
- "did_you_know_institution_providing_professional": "",
- "dimensions_no_bib_file": "",
- "disable": "",
- "disable_ai_features": "",
- "disable_equation_preview": "",
- "disable_equation_preview_confirm": "",
- "disable_equation_preview_enable_in_settings": "",
- "disable_single_sign_on": "",
- "disable_sso": "",
- "disable_stop_on_first_error": "",
- "disabled": "",
- "disabling": "",
- "disagree": "",
- "disconnected": "",
- "discount": "",
- "discount_of": "",
- "discover_the_fastest_easiest_way_to_cite_in_app": "",
- "discover_the_fastest_way_to_search_and_cite": "",
- "display": "",
- "display_deleted_user": "",
- "display_math": "",
- "do_not_create_account": "",
- "do_you_need_edit_access": "",
- "do_you_want_to_change_your_primary_email_address_to": "",
- "do_you_want_to_overwrite_it": "",
- "do_you_want_to_overwrite_it_plural": "",
- "do_you_want_to_overwrite_them": "",
- "document_ready_for_editing": "",
- "document_too_long": "",
- "document_too_long_detail": "",
- "document_too_long_tracked_deletes": "",
- "document_updated_externally": "",
- "document_updated_externally_detail": "",
- "documentation": "",
- "docx_export_feedback_message": "",
- "docx_import_feedback_message": "",
- "doesnt_match": "",
- "doing_this_allow_log_in_through_institution": "",
- "doing_this_allow_log_in_through_institution_2": "",
- "doing_this_will_verify_affiliation_and_allow_log_in_2": "",
- "domain": "",
- "domain_capture": "",
- "domain_capture_explanation": "",
- "domain_capture_is_enabled": "",
- "domain_capture_is_not_enabled": "",
- "domain_verification_already_registered": "",
- "domain_verification_failed_dns_error": "",
- "domain_verification_failed_internal_error": "",
- "domain_verification_failed_no_token": "",
- "domain_verification_failed_wrong_token": "",
- "domain_verification_grace_period_never_reverified": "",
- "domain_verification_grace_period_overdue": "",
- "domain_verification_grace_period_warning": "",
- "domain_verification_grace_period_warning_plural": "",
- "domain_verification_invalid_domain": "",
- "domain_verification_not_started_explanation": "",
- "domain_verification_pending_no_attempt_yet": "",
- "done": "",
- "dont_create_personal_projects_in_managed_account": "",
- "dont_forget_you_currently_have": "",
- "dont_reload_or_close_this_tab": "",
- "download": "",
- "download_all": "",
- "download_as_pdf": "",
- "download_as_source_zip": "",
- "download_csv": "",
- "download_metadata": "",
- "download_pdf": "",
- "download_zip_file": "",
- "draft_sso_configuration": "",
- "drag_here": "",
- "drag_here_paste_an_image_or": "",
- "dropbox": "",
- "dropbox_checking_sync_status": "",
- "dropbox_duplicate_project_names": "",
- "dropbox_duplicate_project_names_suggestion": "",
- "dropbox_for_link_share_projs": "",
- "dropbox_integration_lowercase": "",
- "dropbox_sync_both": "",
- "dropbox_sync_description": "",
- "dropbox_sync_error": "",
- "dropbox_sync_in": "",
- "dropbox_sync_now_rate_limited": "",
- "dropbox_sync_now_running": "",
- "dropbox_sync_out": "",
- "dropbox_sync_troubleshoot": "",
- "dropbox_synced": "",
- "dropbox_unlinked_premium_feature": "",
- "due_date": "",
- "due_today": "",
- "duplicate_file": "",
- "duplicate_projects": "",
- "e_g_example_com": "",
- "each_user_will_have_access_to": "",
- "easily_manage_your_project_files_everywhere": "",
- "edit": "",
- "edit_comment_error_message": "",
- "edit_comment_error_title": "",
- "edit_content_directly": "",
- "edit_dictionary": "",
- "edit_dictionary_empty": "",
- "edit_dictionary_remove": "",
- "edit_figure": "",
- "edit_reference": "",
- "edit_sso_configuration": "",
- "edit_tag": "",
- "edit_tag_name": "",
- "edit_your_custom_dictionary": "",
- "edited": "",
- "editing": "",
- "editing_captions": "",
- "editing_mode": "",
- "editor": "",
- "editor_disconected_click_to_reconnect": "",
- "editor_font_family": "",
- "editor_font_size": "",
- "editor_limit_exceeded_in_this_project": "",
- "editor_line_height": "",
- "editor_only": "",
- "editor_settings": "",
- "editor_theme": "",
- "editor_theme_dark": "",
- "editor_theme_light": "",
- "edits_become_suggestions": "",
- "educational_percent_discount_applied": "",
- "email": "",
- "email_address": "",
- "email_address_is_invalid": "",
- "email_already_registered": "",
- "email_already_registered_sso": "",
- "email_attribute": "",
- "email_does_not_belong_to_university": "",
- "email_limit_reached": "",
- "email_link_expired": "",
- "email_must_be_a_valid_format": "",
- "email_must_be_linked_to_institution": "",
- "email_notifications_are_currently_in_beta": "",
- "email_or_password_wrong_try_again": "",
- "email_preferences": "",
- "email_remove_by_date": "",
- "emails_and_affiliations_explanation": "",
- "emails_and_affiliations_title": "",
- "empty": "",
- "enable": "",
- "enable_ai_features": "",
- "enable_managed_users": "",
- "enable_single_sign_on": "",
- "enable_sso": "",
- "enabled": "",
- "enables_real_time_syntax_checking_in_the_editor": "",
- "enabling": "",
- "end_of_document": "",
- "end_time_utc": "",
- "english__preference_for_ai_suggestion": "",
- "english_american": "",
- "english_british": "",
- "ensure_recover_account": "",
- "enter_any_size_including_units_or_valid_latex_command": "",
- "enter_emails_separated_by_commas": "",
- "enter_manually": "",
- "enter_tax_id_number": "",
- "enter_the_code": "",
- "enter_the_confirmation_code": "",
- "enter_the_number_of_licenses_youd_like_to_add_to_see_the_cost_breakdown": "",
- "entries": "",
- "entry": "",
- "entry_has_errors": "",
- "entry_plural": "",
- "equation_preview": "",
- "error": "",
- "error_loading_references": "",
- "error_opening_document": "",
- "error_opening_document_detail": "",
- "error_performing_request": "",
- "error_processing_file": "",
- "errors": "",
- "essential_cookies_only": "",
- "event_type": "",
- "example_project": "",
- "existing_plan_active_until_term_end": "",
- "exit_focus_mode": "",
- "expand": "",
- "experiment_enabled_refresh_page": "",
- "experiment_full_check_back_soon": "",
- "expired": "",
- "expired_confirmation_code": "",
- "expires": "",
- "expires_in_days": "",
- "expires_on": "",
- "explore_plans": "",
- "export_as_docx": "",
- "export_as_html": "",
- "export_as_markdown": "",
- "export_csv": "",
- "export_project_to_github": "",
- "failed": "",
- "failed_to_consent_to_workbench_terms": "",
- "failed_to_send_group_invite_to_email": "",
- "failed_to_send_managed_user_invite_to_email": "",
- "failed_to_send_sso_link_invite_to_email": "",
- "fair_usage_policy_applies": "",
- "fast": "",
- "fast_draft": "",
- "feature_enabled_or_disabled": "",
- "features_like_track_changes": "",
- "feedback": "",
- "figure": "",
- "file": "",
- "file_action_created": "",
- "file_action_deleted": "",
- "file_action_edited": "",
- "file_action_renamed": "",
- "file_action_restored": "",
- "file_action_restored_project": "",
- "file_already_exists": "",
- "file_already_exists_in_this_location": "",
- "file_name": "",
- "file_name_figure_modal": "",
- "file_name_in_this_project": "",
- "file_name_in_this_project_figure_modal": "",
- "file_or_folder_name_already_exists": "",
- "file_outline": "",
- "file_size": "",
- "file_tree": "",
- "files_cannot_include_invalid_characters": "",
- "files_selected": "",
- "filter_projects": "",
- "find": "",
- "find_out_how_to_get_the_most_out_of_your_new_subscription": "",
- "find_out_more": "",
- "find_out_more_about_institution_login": "",
- "find_out_more_about_the_file_outline": "",
- "find_out_more_nt": "",
- "finding_a_fix": "",
- "first_name": "",
- "fit_to_height": "",
- "fit_to_width": "",
- "fixed_width": "",
- "fixed_width_wrap_text": "",
- "focus_mode": "",
- "fold_line": "",
- "folder_location": "",
- "folder_name": "",
- "following_paths_conflict": "",
- "footer_about_us": "",
- "footer_contact_us": "",
- "footnotes": "",
- "for_business": "",
- "for_government": "",
- "for_groups_and_organizations": "",
- "for_individuals": "",
- "for_more_information_see_managed_accounts_section": "",
- "for_more_information_see_managed_accounts_section_new_user": "",
- "for_publishers": "",
- "for_students": "",
- "for_universities": "",
- "format": "",
- "found_matching_deleted_users": "",
- "free": "",
- "free_7_day_trial_billed_annually": "",
- "free_7_day_trial_billed_monthly": "",
- "free_plan_label": "",
- "free_plan_tooltip": "",
- "from_another_project": "",
- "from_enforcement_date": "",
- "from_external_url": "",
- "from_filename": "",
- "from_github": "",
- "from_project_files": "",
- "from_provider": "",
- "from_url": "",
- "from_your_library": "",
- "from_your_project": "",
- "full_doc_history": "",
- "full_width": "",
- "future_payments": "",
- "generate_from_text": "",
- "generate_from_text_or_image": "",
- "generate_token": "",
- "generating": "",
- "generic_export_feedback_message": "",
- "generic_if_problem_continues_contact_us": "",
- "generic_linked_file_compile_error": "",
- "generic_something_went_wrong": "",
- "get_access_to_enterprise_features": "",
- "get_collaborative_benefits": "",
- "get_discounted_plan": "",
- "get_exclusive_access_to_labs": "",
- "get_full_project_history": "",
- "get_in_touch": "",
- "get_more_compile_time": "",
- "get_most_subscription_by_checking_ai_writefull": "",
- "get_most_subscription_by_checking_overleaf": "",
- "get_most_subscription_by_checking_overleaf_ai_writefull": "",
- "get_ready_for_overleaf_at_its_best_pro": "",
- "get_ready_for_overleaf_standard": "",
- "get_real_time_track_changes": "",
- "get_started_with_latex": "",
- "get_your_hands_on_the_ultimate_research_writing_ai_assistant": "",
- "git": "",
- "git_authentication_token": "",
- "git_authentication_token_create_modal_info_1": "",
- "git_authentication_token_create_modal_info_2": "",
- "git_bridge_modal_click_generate": "",
- "git_bridge_modal_enter_authentication_token": "",
- "git_bridge_modal_git_clone_your_project": "",
- "git_bridge_modal_learn_more_about_authentication_tokens": "",
- "git_bridge_modal_read_only": "",
- "git_bridge_modal_review_access": "",
- "git_bridge_modal_see_once": "",
- "git_bridge_modal_use_previous_token": "",
- "git_clone_project_command": "",
- "git_clone_this_project": "",
- "git_integration": "",
- "git_integration_info": "",
- "github": "",
- "github_commit_message_placeholder": "",
- "github_credentials_expired": "",
- "github_empty_repository_error": "",
- "github_file_name_error": "",
- "github_file_sync_error": "",
- "github_git_folder_error": "",
- "github_integration": "",
- "github_integration_lowercase": "",
- "github_is_no_longer_connected": "",
- "github_is_premium": "",
- "github_large_files_error": "",
- "github_manual_merge_user_prompt": "",
- "github_merge_failed_error": "",
- "github_no_master_branch_error": "",
- "github_private_description": "",
- "github_public_description": "",
- "github_repository_diverged": "",
- "github_symlink_error": "",
- "github_sync_description": "",
- "github_sync_error": "",
- "github_sync_repository_not_found_description": "",
- "github_timeout_error": "",
- "github_too_many_files_error": "",
- "github_validation_check": "",
- "github_workflow_authorize": "",
- "github_workflow_files_delete_github_repo": "",
- "github_workflow_files_error": "",
- "github_workflow_files_error_non_owner": "",
- "give-ai-consent": "",
- "give_feedback": "",
- "go_next_page": "",
- "go_page": "",
- "go_prev_page": "",
- "go_to_account_settings": "",
- "go_to_code_location": "",
- "go_to_code_location_in_pdf": "",
- "go_to_first_page": "",
- "go_to_last_page": "",
- "go_to_next_page": "",
- "go_to_overleaf": "",
- "go_to_pdf_location_in_code": "",
- "go_to_pdf_location_in_code_action": "",
- "go_to_previous_page": "",
- "go_to_settings": "",
- "go_to_subscriptions": "",
- "go_to_writefull": "",
- "good_news_you_already_purchased_this_add_on": "",
- "good_news_you_are_already_receiving_this_add_on_via_writefull": "",
- "group_admin": "",
- "group_audit_logs": "",
- "group_has_no_licenses_available_error": "",
- "group_invitations": "",
- "group_invite_has_been_sent_to_email": "",
- "group_libraries": "",
- "group_managed_by_group_administrator": "",
- "group_management": "",
- "group_managers": "",
- "group_members": "",
- "group_plan_tooltip": "",
- "group_plan_upgrade_description": "",
- "group_plan_with_name_tooltip": "",
- "group_settings": "",
- "group_sso_configuration_idp_metadata": "",
- "group_sso_configure_service_provider_in_idp": "",
- "group_sso_documentation_links": "",
- "group_subscription": "",
- "groups": "",
- "have_an_extra_backup": "",
- "have_more_days_to_try": "",
- "headers": "",
- "help": "",
- "help_articles_matching": "",
- "help_editor_settings": "",
- "help_improve_group_audit_logs": "",
- "help_improve_overleaf_fill_out_this_survey": "",
- "help_improve_screen_reader_fill_out_this_survey": "",
- "hide": "",
- "hide_configuration": "",
- "hide_deleted_user": "",
- "hide_document_preamble": "",
- "hide_file_tree": "",
- "hide_local_file_contents": "",
- "hide_outline": "",
- "higher_ai_allowance": "",
- "history": "",
- "history_add_label": "",
- "history_are_you_sure_delete_label": "",
- "history_compare_from_this_version": "",
- "history_compare_up_to_this_version": "",
- "history_delete_label": "",
- "history_download_this_version": "",
- "history_entry_origin_dropbox": "",
- "history_entry_origin_git": "",
- "history_entry_origin_github": "",
- "history_entry_origin_upload": "",
- "history_label_created_by": "",
- "history_label_project_current_state": "",
- "history_label_this_version": "",
- "history_new_label_name": "",
- "history_resync": "",
- "history_view_a11y_description": "",
- "history_view_all": "",
- "history_view_labels": "",
- "home": "",
- "hotkey_add_a_comment": "",
- "hotkey_autocomplete_menu": "",
- "hotkey_beginning_of_document": "",
- "hotkey_bold_text": "",
- "hotkey_compile": "",
- "hotkey_delete_current_line": "",
- "hotkey_end_of_document": "",
- "hotkey_find_and_replace": "",
- "hotkey_go_to_line": "",
- "hotkey_indent_selection": "",
- "hotkey_insert_candidate": "",
- "hotkey_italic_text": "",
- "hotkey_redo": "",
- "hotkey_search_references": "",
- "hotkey_select_all": "",
- "hotkey_select_candidate": "",
- "hotkey_to_lowercase": "",
- "hotkey_to_uppercase": "",
- "hotkey_toggle_comment": "",
- "hotkey_toggle_review_panel": "",
- "hotkey_toggle_track_changes": "",
- "hotkey_undo": "",
- "hotkeys": "",
- "how_it_works": "",
- "how_many_licenses_do_you_want_to_buy": "",
- "how_to_create_tables": "",
- "how_to_insert_images": "",
- "how_we_use_your_data": "",
- "how_we_use_your_data_explanation": "",
- "html_export_feedback_message": "",
- "i_want_to_add_a_po_number": "",
- "i_want_to_stay": "",
- "id": "",
- "if_personal_account_you_should_change_your_email_address": "",
- "if_you_find_any_issues_with_texlive": "",
- "if_you_need_to_customize_your_table_further_you_can": "",
- "if_you_need_to_delete_your_writefull_account": "",
- "if_you_want_more_than_x_licenses_on_your_plan_we_need_to_add_them_for_you": "",
- "if_you_want_to_reduce_the_number_of_licenses_please_contact_support": "",
- "if_your_occupation_not_listed_type_full_name": "",
- "ignore_validation_errors": "",
- "ill_take_it": "",
- "image_file": "",
- "image_url": "",
- "image_width": "",
- "import_a_bibtex_file_from_your_provider_account": "",
- "import_document_description": "",
- "import_existing_projects_from_github": "",
- "import_from_github": "",
- "import_idp_metadata": "",
- "import_markdown_file": "",
- "import_to_sharelatex": "",
- "import_word_document": "",
- "imported_from_another_project_at_date": "",
- "imported_from_external_provider_at_date": "",
- "imported_from_mendeley_at_date": "",
- "imported_from_papers_at_date": "",
- "imported_from_the_output_of_another_project_at_date": "",
- "imported_from_zotero_at_date": "",
- "importing": "",
- "importing_and_merging_changes_in_github": "",
- "in_order_to_match_institutional_metadata_2": "",
- "in_order_to_match_institutional_metadata_associated": "",
- "inactive": "",
- "include_caption": "",
- "include_label": "",
- "include_results_from_your_reference_manager": "",
- "include_results_from_your_x_account": "",
- "include_the_error_message_and_ai_response": "",
- "included_as_part_of_your_writefull_subscription": "",
- "increase_indent": "",
- "increased_ai_allowance": "",
- "increased_compile_timeout": "",
- "info": "",
- "inline": "",
- "inline_math": "",
- "inr_discount_modal_info": "",
- "inr_discount_modal_title": "",
- "insert": "",
- "insert_citation": "",
- "insert_column_left": "",
- "insert_column_right": "",
- "insert_cross_reference": "",
- "insert_display_math": "",
- "insert_figure": "",
- "insert_figure_from_another_project": "",
- "insert_figure_from_computer": "",
- "insert_figure_from_project_files": "",
- "insert_figure_from_url": "",
- "insert_from_another_project": "",
- "insert_from_project_files": "",
- "insert_from_url": "",
- "insert_image": "",
- "insert_inline_math": "",
- "insert_link": "",
- "insert_row_above": "",
- "insert_row_below": "",
- "insert_table": "",
- "insert_x_columns_left": "",
- "insert_x_columns_right": "",
- "insert_x_rows_above": "",
- "insert_x_rows_below": "",
- "institution": "",
- "institution_account": "",
- "institution_acct_successfully_linked_2": "",
- "institution_and_role": "",
- "institution_has_overleaf_subscription": "",
- "institution_templates": "",
- "integrations": "",
- "integrations_like_github": "",
- "interested_in_cheaper_personal_plan": "",
- "invalid_confirmation_code": "",
- "invalid_email": "",
- "invalid_file_name": "",
- "invalid_filename": "",
- "invalid_organization_email": "",
- "invalid_password_contains_email": "",
- "invalid_password_too_similar": "",
- "invalid_regular_expression": "",
- "invalid_request": "",
- "invalid_tax_id_number": "",
- "invalid_upload_request": "",
- "invert_pdf_preview_colors": "",
- "invert_pdf_preview_colors_when_in_dark_mode": "",
- "invitations_sent": "",
- "invite": "",
- "invite_expired": "",
- "invite_group_members": "",
- "invite_more_collabs": "",
- "invite_more_members": "",
- "invite_not_accepted": "",
- "invite_resend_limit_hit": "",
- "invite_resent": "",
- "invite_revoked": "",
- "invite_users": "",
- "invited_people": "",
- "invited_to_group": "",
- "invited_to_group_have_individual_subcription": "",
- "inviting": "",
- "ip_address": "",
- "is_email_affiliated": "",
- "issued_on": "",
- "it_looks_like_that_didnt_work_you_can_try_again_or_get_in_touch": "",
- "it_looks_like_your_account_is_billed_manually_purchasing_additional_license_or_upgrading_subscription": "",
- "it_looks_like_your_account_is_billed_manually_upgrading_subscription": "",
- "it_looks_like_your_payment_details_are_missing_please_update_your_billing_information": "",
- "italics": "",
- "join_beta_program": "",
- "join_group": "",
- "join_now": "",
- "join_overleaf_labs": "",
- "join_project": "",
- "join_project_lowercase": "",
- "join_team_explanation": "",
- "join_x_enterprise_group": "",
- "join_x_managed_enterprise_group": "",
- "joined_team": "",
- "joining": "",
- "jump_to_location_in_pdf": "",
- "justify": "",
- "kb_suggestions_enquiry": "",
- "keep_current_plan": "",
- "keep_personal_projects_separate": "",
- "keep_your_account_safe_add_another_email": "",
- "keybindings": "",
- "keyboard_shortcuts": "",
- "knowledge_base": "",
- "labels_help_you_to_easily_reference_your_figures": "",
- "labels_help_you_to_reference_your_tables": "",
- "labs_ongoing_experiments": "",
- "labs_settings": "",
- "language": "",
- "language_model_gpt_any_language": "",
- "language_model_gpt_any_language_description": "",
- "language_model_gpt_custom_prompt": "",
- "language_model_gpt_custom_prompt_description": "",
- "language_model_writefull_english": "",
- "language_model_writefull_english_description": "",
- "language_suggestion_actions": "",
- "language_suggestions": "",
- "last_active": "",
- "last_active_description": "",
- "last_compile_duration": "",
- "last_edit": "",
- "last_logged_in": "",
- "last_modified": "",
- "last_name": "",
- "last_resort_trouble_shooting_guide": "",
- "last_suggested_fix": "",
- "last_updated_date_by_x": "",
- "last_used": "",
- "last_verification_attempt": "",
- "last_verified": "",
- "latam_discount_modal_info": "",
- "latam_discount_modal_title": "",
- "latex_places_figures_according_to_a_special_algorithm": "",
- "latex_places_tables_according_to_a_special_algorithm": "",
- "layout_options": "",
- "learn_more": "",
- "learn_more_about": "",
- "learn_more_about_account": "",
- "learn_more_about_email_reconfirmation": "",
- "learn_more_about_link_sharing": "",
- "learn_more_about_managed_users": "",
- "learn_more_about_roles_permissions": "",
- "leave": "",
- "leave_any_group_subscriptions": "",
- "leave_group": "",
- "leave_now": "",
- "leave_project": "",
- "leave_projects": "",
- "left": "",
- "legacy_themes": "",
- "length_unit": "",
- "let_us_know": "",
- "let_us_know_how_we_can_help": "",
- "let_us_know_what_you_think": "",
- "lets_get_those_premium_features": "",
- "lets_get_you_set_up": "",
- "library": "",
- "library_in_labs": "",
- "license": "",
- "license_allocated": "",
- "license_not_allocated": "",
- "licenses": "",
- "light_themes": "",
- "limited_document_history": "",
- "limited_to_n_collaborators_per_project": "",
- "limited_to_n_collaborators_per_project_plural": "",
- "line_width_is_the_width_of_the_line_in_the_current_environment": "",
- "link": "",
- "link_account": "",
- "link_accounts": "",
- "link_accounts_and_add_email": "",
- "link_copied": "",
- "link_institutional_email_get_started": "",
- "link_sharing": "",
- "link_sharing_is_off_short": "",
- "link_sharing_is_on": "",
- "link_to_github": "",
- "link_to_github_description": "",
- "link_to_mendeley": "",
- "link_to_papers": "",
- "link_to_zotero": "",
- "link_to_zotero_mendeley_papers_to_see_search_results_from_your_libraries_without_importing_files": "",
- "linked_accounts": "",
- "linked_collabratec_description": "",
- "linked_file": "",
- "load_domains_failed": "",
- "loading": "",
- "loading_github_repositories": "",
- "loading_prices": "",
- "loading_python_runtime": "",
- "loading_recent_github_commits": "",
- "loading_references": "",
- "log_entry_description": "",
- "log_entry_maximum_entries": "",
- "log_entry_maximum_entries_enable_stop_on_first_error": "",
- "log_entry_maximum_entries_see_full_logs": "",
- "log_entry_maximum_entries_title": "",
- "log_hint_extra_info": "",
- "log_in": "",
- "log_in_with_primary_email_address": "",
- "log_out": "",
- "log_out_lowercase_dot": "",
- "log_viewer_error": "",
- "logging_in_or_managing_your_account": "",
- "login_count": "",
- "login_to_accept_invitation": "",
- "login_with_service": "",
- "logs_and_output_files": "",
- "looking_multiple_licenses": "",
- "looks_like_youre_at": "",
- "lost_connection": "",
- "main_bibliography_file_for_this_project": "",
- "main_document": "",
- "main_file_not_found": "",
- "main_text": "",
- "make_a_copy": "",
- "make_email_primary_description": "",
- "make_owner": "",
- "make_primary": "",
- "make_private": "",
- "manage_access": "",
- "manage_beta_program_membership": "",
- "manage_email_preferences": "",
- "manage_files_from_your_dropbox_folder": "",
- "manage_group_members_subtext": "",
- "manage_group_settings": "",
- "manage_group_settings_subtext": "",
- "manage_group_settings_subtext_group_sso": "",
- "manage_group_settings_subtext_managed_users": "",
- "manage_group_sharing_permissions_subtext": "",
- "manage_institution_managers": "",
- "manage_managers_subtext": "",
- "manage_newsletter": "",
- "manage_overleaf_email_preferences": "",
- "manage_publisher_managers": "",
- "manage_sessions": "",
- "manage_subscription": "",
- "manage_tag": "",
- "manage_template": "",
- "manage_users_subtext": "",
- "manage_your_ai_assist_add_on": "",
- "manage_your_references_across_projects": "",
- "managed": "",
- "managed_user_accounts": "",
- "managed_user_invite_has_been_sent_to_email": "",
- "managed_users": "",
- "managed_users_explanation": "",
- "managed_users_is_enabled": "",
- "managed_users_terms": "",
- "manager": "",
- "managers_management": "",
- "managing_your_subscription": "",
- "markdown_export_feedback_message": "",
- "markdown_import_feedback_message": "",
- "marked_as_resolved": "",
- "math": "",
- "math_display": "",
- "math_inline": "",
- "max_ai_allowance": "",
- "maximum_files_uploaded_together": "",
- "maybe_later": "",
- "member": "",
- "members_added": "",
- "members_management": "",
- "mendeley": "",
- "mendeley_dynamic_sync_description": "",
- "mendeley_groups_loading_error": "",
- "mendeley_groups_relink": "",
- "mendeley_integration": "",
- "mendeley_is_premium": "",
- "mendeley_reference_loading_error": "",
- "mendeley_reference_loading_error_expired": "",
- "mendeley_reference_loading_error_forbidden": "",
- "mendeley_sync_description": "",
- "mendeley_upgrade_prompt_content": "",
- "mendeley_upgrade_prompt_title": "",
- "menu": "",
- "merge_cells": "",
- "message_received": "",
- "missing_field_for_entry": "",
- "missing_fields_for_entry": "",
- "missing_payment_details": "",
- "model": "",
- "money_back_guarantee": "",
- "month": "",
- "month_plural": "",
- "monthly": "",
- "more": "",
- "more_actions": "",
- "more_collabs_per_project": "",
- "more_comments": "",
- "more_compile_time": "",
- "more_editor_toolbar_item": "",
- "more_info": "",
- "more_options": "",
- "move_to_the_left": "",
- "move_to_the_right": "",
- "my_library": "",
- "n_items": "",
- "n_items_plural": "",
- "n_more_collaborators": "",
- "n_more_collaborators_plural": "",
- "n_more_updates_above": "",
- "n_more_updates_above_plural": "",
- "n_more_updates_below": "",
- "n_more_updates_below_plural": "",
- "name": "",
- "name_usage_explanation": "",
- "navigation": "",
- "need_anything_contact_us_at": "",
- "need_contact_group_admin_to_make_changes": "",
- "need_make_changes": "",
- "need_more_than_x_licenses": "",
- "need_to_add_new_primary_before_remove": "",
- "need_to_leave": "",
- "neither_agree_nor_disagree": "",
- "new": "",
- "new_compile_domain_notice": "",
- "new_compiles_in_this_project_will_automatically_use_the_newest_version": "",
- "new_file": "",
- "new_folder": "",
- "new_name": "",
- "new_password": "",
- "new_project": "",
- "new_reference": "",
- "new_reference_plural": "",
- "new_subscription_will_be_billed_immediately": "",
- "new_tag": "",
- "new_tag_name": "",
- "newsletter": "",
- "newsletter_info_note": "",
- "newsletter_info_subscribed": "",
- "newsletter_info_summary": "",
- "newsletter_info_title": "",
- "newsletter_info_unsubscribed": "",
- "newsletter_onboarding_accept": "",
- "next": "",
- "next_page": "",
- "next_payment_of_x_collectected_on_y": "",
- "next_suggestion": "",
- "no_actions": "",
- "no_add_on_purchase_while_paused": "",
- "no_audit_logs_found": "",
- "no_borders": "",
- "no_caption": "",
- "no_comments_or_suggestions": "",
- "no_existing_password": "",
- "no_folder": "",
- "no_image_files_found": "",
- "no_libraries_selected": "",
- "no_members": "",
- "no_messages_yet": "",
- "no_new_commits_in_github": "",
- "no_one_has_commented_or_left_any_suggestions_yet": "",
- "no_one_invited_yet": "",
- "no_one_sharing_link_is_disabled": "",
- "no_other_projects_found": "",
- "no_pdf_error_explanation": "",
- "no_pdf_error_reason_no_content": "",
- "no_pdf_error_reason_output_pdf_already_exists": "",
- "no_pdf_error_reason_unrecoverable_error": "",
- "no_pdf_error_title": "",
- "no_personal_access_tokens": "",
- "no_preview_available": "",
- "no_project_notifications_description": "",
- "no_projects": "",
- "no_resolved_comments": "",
- "no_results_found": "",
- "no_search_results": "",
- "no_selection_select_file": "",
- "no_symbols_found": "",
- "no_thanks_cancel_now": "",
- "non_blinking_cursor": "",
- "normal": "",
- "normally_x_price_per_month": "",
- "normally_x_price_per_year": "",
- "not_managed": "",
- "not_now": "",
- "notification": "",
- "notification_personal_and_group_subscriptions": "",
- "notification_project_invite_accepted_message": "",
- "notification_project_invite_message": "",
- "number_of_users": "",
- "numbered_list": "",
- "oauth_orcid_description": "",
- "of": "",
- "off": "",
- "official": "",
- "ok": "",
- "ok_continue_to_project": "",
- "ok_join_project": "",
- "on": "",
- "one_step_away_from_professional_features": "",
- "only_add_people_who_dont_yet_have_access": "",
- "only_group_admin_or_managers_can_delete_your_account_1": "",
- "only_group_admin_or_managers_can_delete_your_account_10": "",
- "only_group_admin_or_managers_can_delete_your_account_3": "",
- "only_group_admin_or_managers_can_delete_your_account_6": "",
- "only_group_admin_or_managers_can_delete_your_account_7": "",
- "only_group_admin_or_managers_can_delete_your_account_9": "",
- "only_importer_can_refresh": "",
- "only_invited_people": "",
- "only_project_owner_can_link_github": "",
- "open_action_menu": "",
- "open_advanced_reference_search": "",
- "open_each_file_in_its_own_tab": "",
- "open_file": "",
- "open_files_in_tabs": "",
- "open_link": "",
- "open_path": "",
- "open_pdf_in_separate_tab": "",
- "open_project": "",
- "open_settings": "",
- "open_target": "",
- "optional": "",
- "or": "",
- "or_enable_clipboard_access_in_your_browser_settings": "",
- "organization_name": "",
- "organize_tags": "",
- "other": "",
- "other_logs_and_files": "",
- "other_output_files": "",
- "our_ai_features_combine_tools_from_overleaf_and_writefull_to_help_you_write_faster_smarter_and_with_confidence_learn_more_about_ai": "",
- "our_team_will_get_back_to_you_shortly": "",
- "out_of_sync": "",
- "out_of_sync_detail": "",
- "output_file": "",
- "overall_theme": "",
- "overleaf": "",
- "overleaf_history_system": "",
- "overleaf_is_easy_to_use": "",
- "overleaf_labs": "",
- "overleaf_learning_center": "",
- "overleaf_logo": "",
- "overleafs_functionality_meets_my_needs": "",
- "overview": "",
- "overwrite": "",
- "overwriting_the_original_folder": "",
- "owned_by_x": "",
- "owner": "",
- "page_current": "",
- "page_x_of_n": "",
- "pagination_navigation": "",
- "papers": "",
- "papers_dynamic_sync_description": "",
- "papers_groups_loading_error": "",
- "papers_groups_relink": "",
- "papers_integration": "",
- "papers_is_premium": "",
- "papers_reference_loading_error": "",
- "papers_reference_loading_error_expired": "",
- "papers_reference_loading_error_forbidden": "",
- "papers_sync_description": "",
- "papers_upgrade_prompt_content": "",
- "papers_upgrade_prompt_title": "",
- "paragraph_styles": "",
- "partial_outline_warning": "",
- "password": "",
- "password_managed_externally": "",
- "password_was_detected_on_a_public_list_of_known_compromised_passwords": "",
- "paste": "",
- "paste_bibtex_or_dois_here": "",
- "paste_options": "",
- "paste_references": "",
- "paste_with_formatting": "",
- "paste_without_formatting": "",
- "pause_subscription": "",
- "pause_subscription_for": "",
- "pay_now": "",
- "payment_error_3ds_failed": "",
- "payment_error_generic": "",
- "payment_error_intermittent_error": "",
- "payment_error_invalid_payment_method": "",
- "payment_error_update_payment_method": "",
- "payment_error_update_payment_method_checkout": "",
- "payment_provider_unreachable_error": "",
- "payment_summary": "",
- "pdf": "",
- "pdf_compile_in_progress_error": "",
- "pdf_compile_rate_limit_hit": "",
- "pdf_compile_try_again": "",
- "pdf_only": "",
- "pdf_preview": "",
- "pdf_preview_error": "",
- "pdf_rendering_error": "",
- "pdf_unavailable_for_download": "",
- "pdf_viewer": "",
- "pdf_viewer_error": "",
- "pdf_zoom": "",
- "pdf_zoom_level": "",
- "pending": "",
- "pending_additional_licenses": "",
- "pending_addon_cancellation": "",
- "pending_invite": "",
- "pending_subscription_message": "",
- "per_license": "",
- "per_month": "",
- "per_year": "",
- "percent_is_the_percentage_of_the_line_width": "",
- "permanently_disables_the_preview": "",
- "personal_library": "",
- "pick_up_where_you_left_off": "",
- "plan": "",
- "plan_tooltip": "",
- "please_ask_the_project_owner_to_upgrade_more_collaborators": "",
- "please_ask_the_project_owner_to_upgrade_to_track_changes": "",
- "please_change_primary_to_remove": "",
- "please_compile_pdf_before_download": "",
- "please_confirm_primary_email_or_edit": "",
- "please_confirm_secondary_email_or_edit": "",
- "please_confirm_your_email_before_making_it_default": "",
- "please_contact_support_to_makes_change_to_your_plan": "",
- "please_enter_confirmation_code": "",
- "please_get_in_touch": "",
- "please_link_before_making_primary": "",
- "please_provide_a_message": "",
- "please_provide_a_subject": "",
- "please_provide_a_valid_email_address": "",
- "please_reconfirm_institutional_email": "",
- "please_reconfirm_your_affiliation_before_making_this_primary": "",
- "please_refresh": "",
- "please_remove_all_emails": "",
- "please_select": "",
- "please_select_a_file": "",
- "please_select_a_project": "",
- "please_select_an_output_file": "",
- "please_set_main_file": "",
- "please_wait": "",
- "plus_additional_collaborators_and_more": "",
- "plus_more": "",
- "plus_x_additional_licenses_for_a_total_of_y_licenses": "",
- "po_number": "",
- "po_number_can_include_digits_and_letters_only": "",
- "po_number_must_not_exceed_x_characters": "",
- "po_number_must_not_exceed_x_characters_plural": "",
- "postal_code": "",
- "powered_by_digital_science": "",
- "premium": "",
- "premium_feature": "",
- "premium_plan_label": "",
- "preparing_for_export": "",
- "presentation_mode": "",
- "press_shift_space_for_suggestions": "",
- "press_space_to_open_the_ai_assistant": "",
- "preview": "",
- "preview_editor_tabs": "",
- "previous_page": "",
- "previous_suggestion": "",
- "price": "",
- "primarily_work_study_question": "",
- "primarily_work_study_question_company": "",
- "primarily_work_study_question_government": "",
- "primarily_work_study_question_nonprofit_ngo": "",
- "primarily_work_study_question_other": "",
- "primarily_work_study_question_university_school": "",
- "primary": "",
- "primary_certificate": "",
- "privacy_and_terms": "",
- "private": "",
- "pro": "",
- "problem_talking_to_publishing_service": "",
- "problem_with_subscription_contact_us": "",
- "proceed_to_paypal": "",
- "processing": "",
- "processing_uppercase": "",
- "progress_bar_percentage": "",
- "project_access": "",
- "project_actions": "",
- "project_approaching_file_limit": "",
- "project_categories_tags": "",
- "project_figure_modal": "",
- "project_files_history": "",
- "project_flagged_too_many_compiles": "",
- "project_has_too_many_files_limit": "",
- "project_history_labels": "",
- "project_last_published_at": "",
- "project_linked_to": "",
- "project_name": "",
- "project_not_linked_to_github": "",
- "project_notifications": "",
- "project_notifications_muted_description": "",
- "project_ownership_transfer_confirmation_1": "",
- "project_ownership_transfer_confirmation_2": "",
- "project_renamed_or_deleted": "",
- "project_renamed_or_deleted_detail": "",
- "project_search": "",
- "project_search_file_count": "",
- "project_search_file_count_plural": "",
- "project_search_result_count": "",
- "project_search_result_count_plural": "",
- "project_synchronisation": "",
- "project_timed_out_enable_stop_on_first_error": "",
- "project_timed_out_fatal_error": "",
- "project_timed_out_intro": "",
- "project_timed_out_learn_more": "",
- "project_timed_out_optimize_images": "",
- "project_title_options": "",
- "project_too_large": "",
- "project_too_large_please_reduce": "",
- "project_too_much_editable_text": "",
- "project_url": "",
- "projects": "",
- "projects_count": "",
- "projects_list": "",
- "provide_details_of_your_sso_configuration": "",
- "public": "",
- "publish": "",
- "publish_as_template": "",
- "publisher_account": "",
- "publishing": "",
- "pull_github_changes_into_sharelatex": "",
- "push_sharelatex_changes_to_github": "",
- "push_to_github_pull_to_overleaf": "",
- "quoted_text": "",
- "raw_logs": "",
- "raw_logs_description": "",
- "reactivate": "",
- "reactivate_add_on_failed": "",
- "reactivate_subscription": "",
- "reactivating": "",
- "read_lines_from_path": "",
- "read_more": "",
- "read_only_dropbox_sync_message": "",
- "read_only_token": "",
- "read_write_token": "",
- "ready_to_join_x": "",
- "ready_to_join_x_in_group_y": "",
- "ready_to_set_up": "",
- "reauthorize_github_account": "",
- "recaptcha_conditions": "",
- "recent_commits_in_github": "",
- "recommended": "",
- "recompile": "",
- "recompile_from_scratch": "",
- "recompile_pdf": "",
- "reconfirm_secondary_email": "",
- "reconfirming": "",
- "reconnect": "",
- "reconnecting": "",
- "reconnecting_in_x_secs": "",
- "recovering": "",
- "recurly_email_update_needed": "",
- "recurly_email_updated": "",
- "redirect_to_editor": "",
- "redirect_url": "",
- "redo": "",
- "reduce_costs_group_licenses": "",
- "reduces_visual_distraction_by_keeping_the_cursor_solid": "",
- "reference_error_relink_hint": "",
- "reference_manager_linked": "",
- "reference_manager_lowercase": "",
- "reference_manager_searched_groups": "",
- "reference_manager_unlinked": "",
- "reference_managers": "",
- "reference_search": "",
- "reference_search_setting": "",
- "reference_search_settings": "",
- "reference_search_style": "",
- "reference_sync": "",
- "references_from_these_libraries_will_be_included_in_your_reference_search_results": "",
- "refresh": "",
- "refresh_page_after_linking_dropbox": "",
- "refresh_page_after_starting_free_trial": "",
- "refreshing": "",
- "refund_with_description": "",
- "regards": "",
- "registering": "",
- "reject": "",
- "reject_change": "",
- "reject_selected_changes": "",
- "reject_suggestion": "",
- "relink_your_account": "",
- "reload_editor": "",
- "remind_before_trial_ends": "",
- "remote_service_error": "",
- "remove": "",
- "remove_access": "",
- "remove_domain": "",
- "remove_domain_success": "",
- "remove_domain_verification": "",
- "remove_domain_verification_explanation": "",
- "remove_domain_verification_type_to_confirm": "",
- "remove_from_group": "",
- "remove_link": "",
- "remove_manager": "",
- "remove_or_replace_figure": "",
- "remove_original_links": "",
- "remove_original_sharing_links": "",
- "remove_secondary_email_addresses": "",
- "remove_secondary_email_addresses_except_saml_email": "",
- "remove_sso_login_option": "",
- "remove_tag": "",
- "remove_user": "",
- "remove_your_organization_email_from_this_account": "",
- "removed_from_project": "",
- "removing": "",
- "rename": "",
- "rename_project": "",
- "renews_on": "",
- "reopen": "",
- "reopen_comment_error_message": "",
- "reopen_comment_error_title": "",
- "replace_figure": "",
- "replace_from_another_project": "",
- "replace_from_computer": "",
- "replace_from_project_files": "",
- "replace_from_url": "",
- "replies_to_your_activity_only": "",
- "replies_to_your_activity_only_description": "",
- "reply": "",
- "repository_name": "",
- "repository_visibility": "",
- "republish": "",
- "resend": "",
- "resend_confirmation_code": "",
- "resend_group_invite": "",
- "resend_invite": "",
- "resend_link_sso": "",
- "resend_managed_user_invite": "",
- "resending_confirmation_code": "",
- "resize": "",
- "resolve_comment": "",
- "resolve_comment_error_message": "",
- "resolve_comment_error_title": "",
- "resolved_comments": "",
- "restore": "",
- "restore_file": "",
- "restore_file_confirmation_message": "",
- "restore_file_confirmation_title": "",
- "restore_file_error_message": "",
- "restore_file_error_title": "",
- "restore_file_version": "",
- "restore_project_to_this_version": "",
- "restore_this_version": "",
- "restoring": "",
- "resync_completed": "",
- "resync_message": "",
- "resync_project_history": "",
- "resyncing": "",
- "retry_domain_verification": "",
- "retry_test": "",
- "reverse_x_sort_order": "",
- "revert_pending_plan_change": "",
- "review": "",
- "review_panel": "",
- "reviewer": "",
- "reviewer_dropbox_sync_message": "",
- "reviewing": "",
- "revoke": "",
- "revoke_invite": "",
- "revoke_license": "",
- "right": "",
- "role": "",
- "run": "",
- "run_current_script_to_see_output": "",
- "run_python_code": "",
- "saml_auth_error": "",
- "saml_commons_reconfirmation_unable_to_find_user": "",
- "saml_email_not_in_account_error_managed_users_2": "",
- "saml_identity_exists_error": "",
- "saml_invalid_signature_error": "",
- "saml_login_disabled_error": "",
- "saml_login_failure": "",
- "saml_login_identity_mismatch_error": "",
- "saml_login_identity_not_found_error": "",
- "saml_metadata": "",
- "saml_missing_signature_error": "",
- "saml_request_denied_error": "",
- "saml_response": "",
- "save": "",
- "save_20_percent": "",
- "save_or_cancel-cancel": "",
- "save_or_cancel-or": "",
- "save_or_cancel-save": "",
- "save_x_or_more": "",
- "saved": "",
- "saving": "",
- "saving_notification_with_seconds": "",
- "scope": "",
- "search": "",
- "search_all_project_files": "",
- "search_bib_files": "",
- "search_by_author_journal_title_and_more_link_to_zotero_mendeley_papers": "",
- "search_by_citation_key_author_journal_title_year_and_date": "",
- "search_by_citekey_author_year_title": "",
- "search_command_find": "",
- "search_command_replace": "",
- "search_in_all_projects": "",
- "search_in_archived_projects": "",
- "search_in_library": "",
- "search_in_shared_projects": "",
- "search_in_trashed_projects": "",
- "search_in_your_projects": "",
- "search_match_case": "",
- "search_members": "",
- "search_next": "",
- "search_only_the_bib_files_in_your_project_only_by_citekeys": "",
- "search_previous": "",
- "search_project": "",
- "search_projects": "",
- "search_references": "",
- "search_regexp": "",
- "search_replace": "",
- "search_replace_all": "",
- "search_replace_with": "",
- "search_search_for": "",
- "search_whole_word": "",
- "search_within_selection": "",
- "searched_path_for_lines_containing": "",
- "security": "",
- "see_suggestions_from_collaborators": "",
- "see_your_current_location_in_the_project": "",
- "select": "",
- "select_a_column_or_a_merged_cell_to_align": "",
- "select_a_column_to_adjust_column_width": "",
- "select_a_file": "",
- "select_a_file_figure_modal": "",
- "select_a_group_optional": "",
- "select_a_language": "",
- "select_a_new_owner_for_projects": "",
- "select_a_payment_method": "",
- "select_a_project": "",
- "select_a_project_figure_modal": "",
- "select_a_row_or_a_column_to_delete": "",
- "select_access_level": "",
- "select_access_levels": "",
- "select_all": "",
- "select_all_entries": "",
- "select_all_projects": "",
- "select_an_output_file": "",
- "select_an_output_file_figure_modal": "",
- "select_bib_file": "",
- "select_cells_in_a_single_row_to_merge": "",
- "select_color": "",
- "select_entry": "",
- "select_entry_type_prompt": "",
- "select_folder_from_project": "",
- "select_from_output_files": "",
- "select_from_project_files": "",
- "select_from_source_files": "",
- "select_from_your_computer": "",
- "select_github_repository": "",
- "select_image_from_project_files": "",
- "select_project": "",
- "select_projects": "",
- "select_size": "",
- "select_tag": "",
- "select_tax_id_type": "",
- "select_user": "",
- "select_user_role": "",
- "selected_lowercase": "",
- "selected_lowercase_plural": "",
- "selection_deleted": "",
- "send": "",
- "send_confirmation_code": "",
- "send_message": "",
- "send_request": "",
- "sending": "",
- "sentence_completion": "",
- "server_error": "",
- "server_pro_license_entitlement_line_1": "",
- "server_pro_license_entitlement_line_2": "",
- "server_pro_license_entitlement_line_3": "",
- "session_created_at": "",
- "session_error": "",
- "session_expired_redirecting_to_login": "",
- "sessions": "",
- "set_as_main_document": "",
- "set_color": "",
- "set_column_width": "",
- "set_up_single_sign_on": "",
- "set_up_sso": "",
- "settings": "",
- "setup_another_account_under_a_personal_email_address": "",
- "share": "",
- "share_feedback": "",
- "share_project": "",
- "share_project_name": "",
- "shared_with_you": "",
- "sharelatex_beta_program": "",
- "sharing_permissions": "",
- "shortcut_to_open_advanced_reference_search": "",
- "show_all_projects": "",
- "show_breadcrumbs": "",
- "show_document_preamble": "",
- "show_editor_tabs": "",
- "show_equation_preview": "",
- "show_file_tree": "",
- "show_in_code": "",
- "show_in_pdf": "",
- "show_less": "",
- "show_live_equation_previews_while_typing": "",
- "show_local_file_contents": "",
- "show_more": "",
- "show_outline": "",
- "show_quick_actions_on_text_selection": "",
- "show_version_history": "",
- "show_x_more_projects": "",
- "show_x_more_projects_plural": "",
- "showing_pdf_preview_with_inverted_colors": "",
- "showing_x_out_of_n_projects": "",
- "showing_x_out_of_n_users": "",
- "showing_x_results": "",
- "showing_x_results_of_total": "",
- "showing_x_results_of_total_plural": "",
- "showing_x_results_plural": "",
- "sidebar": "",
- "sign_up": "",
- "simple_search_mode": "",
- "single_sign_on_sso": "",
- "size": "",
- "skip": "",
- "skip_welcome_animation": "",
- "some_dois_could_not_be_resolved": "",
- "something_not_right": "",
- "something_went_wrong": "",
- "something_went_wrong_canceling_your_subscription": "",
- "something_went_wrong_loading_pdf_viewer": "",
- "something_went_wrong_rendering_pdf": "",
- "something_went_wrong_rendering_pdf_expected": "",
- "something_went_wrong_server": "",
- "somethings_gone_wrong": "",
- "somthing_went_wrong_compiling": "",
- "sorry_it_looks_like_that_didnt_work_this_time": "",
- "sorry_there_are_no_experiments": "",
- "sorry_there_was_an_issue_adding_x_users_to_your_subscription": "",
- "sorry_there_was_an_issue_upgrading_your_subscription": "",
- "sorry_this_project_is_not_available": "",
- "sorry_you_can_only_change_to_group_from_trial_via_support": "",
- "sorry_you_can_only_change_to_group_via_support": "",
- "sorry_your_table_cant_be_displayed_at_the_moment": "",
- "sort_by": "",
- "sort_by_x": "",
- "sort_projects": "",
- "speak": "",
- "speech_input_not_available": "",
- "spellcheck": "",
- "spellcheck_language": "",
- "spelling_and_language": "",
- "split_view": "",
- "sso": "",
- "sso_active": "",
- "sso_already_setup_good_to_go": "",
- "sso_config_deleted": "",
- "sso_config_prop_help_certificate": "",
- "sso_config_prop_help_email": "",
- "sso_config_prop_help_first_name": "",
- "sso_config_prop_help_last_name": "",
- "sso_config_prop_help_redirect_url": "",
- "sso_config_prop_help_user_id": "",
- "sso_configuration": "",
- "sso_configuration_not_finalized": "",
- "sso_configuration_saved": "",
- "sso_disabled_by_group_admin": "",
- "sso_error_audience_mismatch": "",
- "sso_error_idp_error": "",
- "sso_error_invalid_external_user_id": "",
- "sso_error_invalid_signature": "",
- "sso_error_missing_email_attribute": "",
- "sso_error_missing_external_user_id": "",
- "sso_error_missing_firstname_attribute": "",
- "sso_error_missing_lastname_attribute": "",
- "sso_error_missing_signature": "",
- "sso_error_response_already_processed": "",
- "sso_explanation": "",
- "sso_here_is_the_data_we_received": "",
- "sso_is_disabled": "",
- "sso_is_disabled_explanation_1": "",
- "sso_is_disabled_explanation_2": "",
- "sso_is_enabled": "",
- "sso_is_enabled_explanation_1": "",
- "sso_is_enabled_explanation_1_sso_only": "",
- "sso_is_enabled_explanation_2": "",
- "sso_link_account_with_idp": "",
- "sso_link_error": "",
- "sso_link_invite_has_been_sent_to_email": "",
- "sso_logs": "",
- "sso_not_active": "",
- "sso_provider_error_invalid_name": "",
- "sso_reauth_request": "",
- "sso_test_interstitial_info_1": "",
- "sso_test_interstitial_info_2": "",
- "sso_test_interstitial_title": "",
- "sso_test_result_error_message": "",
- "sso_user_explanation_enabled_with_admin_email": "",
- "sso_user_explanation_enabled_with_group_name": "",
- "sso_user_explanation_ready_with_admin_email": "",
- "sso_user_explanation_ready_with_group_name": "",
- "standard": "",
- "start_by_adding_your_email": "",
- "start_by_fixing_the_first_error_in_your_document": "",
- "start_editing": "",
- "start_free_trial": "",
- "start_new_chat": "",
- "start_the_conversation_by_saying_hello_or_sharing_an_update": "",
- "start_time_utc": "",
- "start_typing_find_your_company": "",
- "start_typing_find_your_organization": "",
- "start_typing_find_your_university": "",
- "status": "",
- "stop": "",
- "stop_compile": "",
- "stop_on_first_error": "",
- "stop_on_first_error_enabled_description": "",
- "stop_on_first_error_enabled_title": "",
- "stop_on_validation_error": "",
- "stop_python_execution": "",
- "stops_compiling_after_the_first_error_so_you_can_fix_issues_one_at_a_time": "",
- "store_your_work": "",
- "stretch_width_to_text": "",
- "strongly_agree": "",
- "strongly_disagree": "",
- "student": "",
- "subject": "",
- "subject_area": "",
- "submit_title": "",
- "subscribe": "",
- "subscribe_now": "",
- "subscribe_to_find_the_symbols_you_need_faster": "",
- "subscription": "",
- "subscription_admins_cannot_be_deleted": "",
- "subscription_canceled": "",
- "subscription_canceled_and_terminate_on_x": "",
- "subscription_will_remain_active_until_end_of_billing_period_x": "",
- "subscription_will_remain_active_until_end_of_trial_period_x": "",
- "success_sso_set_up": "",
- "success_youve_successfully_joined_group": "",
- "suggest_a_different_fix": "",
- "suggest_edits": "",
- "suggest_fix": "",
- "suggested": "",
- "suggested_code": "",
- "suggested_fix_for_error_in_path": "",
- "suggestion_applied": "",
- "suggests_code_completions_while_typing": "",
- "support_for_your_browser_is_ending_soon": "",
- "supports_up_to_x_licenses": "",
- "sure_you_want_to_cancel_plan_change": "",
- "sure_you_want_to_change_plan": "",
- "sure_you_want_to_delete": "",
- "sure_you_want_to_leave_group": "",
- "switch_compile_mode_for_faster_draft_compilation": "",
- "switch_to_editor": "",
- "switch_to_pdf": "",
- "symbol": "",
- "symbol_palette": "",
- "sync": "",
- "sync_all_projects_with_dropbox": "",
- "sync_dropbox_github": "",
- "sync_project_to_github_explanation": "",
- "sync_to_dropbox": "",
- "sync_to_github": "",
- "sync_with_a_github_repository": "",
- "sync_with_dropbox": "",
- "sync_with_github": "",
- "synctex_error_recompile_and_try_again": "",
- "synctex_failed": "",
- "syntax_checks": "",
- "syntax_validation": "",
- "tab_connecting": "",
- "tab_settings": "",
- "table": "",
- "tabs_open_in_preview_mode_until_you_interact_with_them": "",
- "tag_color": "",
- "tag_name_cannot_exceed_characters": "",
- "tag_name_is_already_used": "",
- "tags": "",
- "take_survey": "",
- "tax_id_number": "",
- "tax_id_type": "",
- "taxes_may_be_added": "",
- "tell_the_project_owner_and_ask_them_to_upgrade": "",
- "template": "",
- "template_description": "",
- "template_title_taken_from_project_title": "",
- "templates": "",
- "temporarily_hides_the_preview": "",
- "terminated": "",
- "test": "",
- "test_configuration": "",
- "test_configuration_successful": "",
- "tex_live_version": "",
- "thank_you": "",
- "thank_you_exclamation": "",
- "thank_you_for_participating_feedback": "",
- "thank_you_for_your_feedback": "",
- "thanks_for_confirming_your_email_address": "",
- "thanks_for_getting_in_touch": "",
- "thanks_for_subscribing": "",
- "thanks_for_subscribing_to_plan_with_add_on": "",
- "thanks_for_subscribing_to_the_add_on": "",
- "thanks_for_subscribing_you_help_sl": "",
- "thanks_settings_updated": "",
- "the_add_on_will_remain_active_until": "",
- "the_ai_assistant_isnt_currently_available_on_your_plan": "",
- "the_code_editor_color_scheme": "",
- "the_code_editor_color_scheme_dark_mode": "",
- "the_code_editor_color_scheme_light_mode": "",
- "the_document_contains_formatting_we_werent_able_to_convert": "",
- "the_following_files_already_exist_in_this_project": "",
- "the_following_files_and_folders_already_exist_in_this_project": "",
- "the_following_folder_already_exists_in_this_project": "",
- "the_following_folder_already_exists_in_this_project_plural": "",
- "the_home_of_research_writing": "",
- "the_latex_engine_used_for_compiling": "",
- "the_link_may_be_broken_or_you_may_not_have_access_rights": "",
- "the_next_payment_will_be_collected_on": "",
- "the_original_text_has_changed": "",
- "the_overleaf_color_scheme": "",
- "the_primary_file_for_compiling_your_project": "",
- "the_target_folder_could_not_be_found": "",
- "the_token_can_be_found_later_learn_more": "",
- "the_version_of_tex_live_used_for_compiling": "",
- "the_visual_editor_cant_preview_this_type_of_image_file": "",
- "the_width_you_choose_here_is_based_on_the_width_of_the_text_in_your_document": "",
- "their_projects_will_be_transferred_to_another_user": "",
- "theme": "",
- "then_x_price_per_month": "",
- "then_x_price_per_year": "",
- "there_are_lots_of_options_to_edit_and_customize_your_figures": "",
- "there_was_a_problem_restoring_the_project_please_try_again_in_a_few_moments_or_contact_us": "",
- "these_settings_might_change_in_the_future": "",
- "they_lose_access_to_account": "",
- "they_will_be_removed_from_the_group": "",
- "they_will_continue_to_have_access_to_any_projects_shared_with_them": "",
- "they_will_no_longer_be_a_managed_user": "",
- "they_will_retain_ownership_of_projects_currently_owned_by_them_and_collaborators_will_become_read_only": "",
- "they_will_retain_their_existing_account_on_the_free_plan": "",
- "they_wont_be_able_to_log_in_with_sso_they_will_need_to_set_password": "",
- "this_action_cannot_be_reversed": "",
- "this_action_cannot_be_undone": "",
- "this_action_will_also_disable_domain_capture": "",
- "this_address_will_be_shown_on_the_invoice": "",
- "this_change_will_permanently_remove_your_original_links_you_can_still_share_new_link": "",
- "this_change_will_permanently_remove_your_original_links_you_need_to_share_the_new_link": "",
- "this_could_be_because_we_cant_support_some_elements_of_the_table": "",
- "this_field_is_required": "",
- "this_grants_access_to_features_2": "",
- "this_is_the_file_that_references_pulled_from_your_reference_manager_will_be_added_to": "",
- "this_organization_is_tax_exempt": "",
- "this_policy_applies_to_all_projects_owned_by_your_group_members": "",
- "this_project_already_has_maximum_collaborators": "",
- "this_project_exceeded_collaborator_limit": "",
- "this_project_exceeded_compile_timeout_limit_on_free_plan": "",
- "this_project_has_more_than_max_collabs": "",
- "this_project_is_compiled_using_untested_version": "",
- "this_project_is_public": "",
- "this_project_is_public_read_only": "",
- "this_project_will_appear_in_your_dropbox_folder_at": "",
- "this_tool_helps_you_insert_figures": "",
- "this_tool_helps_you_insert_simple_tables_into_your_project_without_writing_latex_code": "",
- "this_total_reflects_the_amount_due_until": "",
- "this_was_helpful": "",
- "this_wasnt_helpful": "",
- "this_will_remove_primary_email": "",
- "this_will_reset_in": "",
- "time_and": "",
- "time_hour": "",
- "time_hour_plural": "",
- "time_minute": "",
- "time_minute_plural": "",
- "timedout": "",
- "tip": "",
- "title": "",
- "to_add_email_accounts_need_to_be_linked_2": "",
- "to_add_more_collaborators": "",
- "to_change_access_permissions": "",
- "to_confirm_transfer_enter_email_address": "",
- "to_confirm_unlink_all_users_enter_email": "",
- "to_continue_using_upgrade_or_change_your_browser": "",
- "to_fix_this_you_can": "",
- "to_fix_this_you_can_ask_the_github_repository_owner": "",
- "to_insert_or_move_a_caption_make_sure_tabular_is_directly_within_table": "",
- "to_keep_edit_access": "",
- "to_modify_your_subscription_go_to": "",
- "to_pull_results_directly_from_your_reference_manager_enable_one_of_the_available_reference_manager_integrations": "",
- "to_use_text_wrapping_in_your_table_make_sure_you_include_the_array_package": "",
- "toggle_compile_options_menu": "",
- "toggle_group": "",
- "toggle_personal_library": "",
- "toggle_unknown_group": "",
- "token": "",
- "token_access_failure": "",
- "token_expiring_soon": "",
- "token_generated": "",
- "token_limit_reached": "",
- "token_read_only": "",
- "token_read_write": "",
- "too_many_attempts": "",
- "too_many_comments_or_tracked_changes": "",
- "too_many_comments_or_tracked_changes_detail": "",
- "too_many_confirm_code_resend_attempts": "",
- "too_many_confirm_code_verification_attempts": "",
- "too_many_files_uploaded_throttled_short_period": "",
- "too_many_requests": "",
- "too_many_search_results": "",
- "too_recently_compiled": "",
- "took_a_while": "",
- "toolbar_bold": "",
- "toolbar_bulleted_list": "",
- "toolbar_change_editor_mode": "",
- "toolbar_code_visual_editor_switch": "",
- "toolbar_decrease_indent": "",
- "toolbar_editor": "",
- "toolbar_generate_math": "",
- "toolbar_generate_table": "",
- "toolbar_increase_indent": "",
- "toolbar_insert_citation": "",
- "toolbar_insert_cross_reference": "",
- "toolbar_insert_display_math": "",
- "toolbar_insert_figure": "",
- "toolbar_insert_inline_math": "",
- "toolbar_insert_link": "",
- "toolbar_insert_list": "",
- "toolbar_insert_math": "",
- "toolbar_insert_math_and_symbols": "",
- "toolbar_insert_math_lowercase": "",
- "toolbar_insert_misc": "",
- "toolbar_insert_symbol": "",
- "toolbar_insert_table": "",
- "toolbar_italic": "",
- "toolbar_list_indentation": "",
- "toolbar_numbered_list": "",
- "toolbar_redo": "",
- "toolbar_search_file": "",
- "toolbar_section_heading_level": "",
- "toolbar_selected_projects": "",
- "toolbar_selected_projects_management_actions": "",
- "toolbar_selected_projects_remove": "",
- "toolbar_selected_projects_restore": "",
- "toolbar_table_insert_size_table": "",
- "toolbar_table_insert_table_lowercase": "",
- "toolbar_text_formatting": "",
- "toolbar_text_style": "",
- "toolbar_undo": "",
- "toolbar_undo_redo_actions": "",
- "tools": "",
- "tooltip_hide_panel": "",
- "tooltip_hide_pdf": "",
- "tooltip_show_panel": "",
- "tooltip_show_pdf": "",
- "total_due_in_x_days": "",
- "total_due_today": "",
- "total_per_month": "",
- "total_per_year": "",
- "total_today": "",
- "total_with_subtotal_and_tax": "",
- "total_words": "",
- "total_words_lower": "",
- "track_changes": "",
- "tracked_change_added": "",
- "tracked_change_deleted": "",
- "transfer_management_of_your_account": "",
- "transfer_management_of_your_account_to_x": "",
- "transfer_management_resolve_following_issues": "",
- "transfer_this_users_projects": "",
- "transfer_this_users_projects_description": "",
- "transferring": "",
- "trash": "",
- "trash_projects": "",
- "trashed": "",
- "trashed_projects": "",
- "trashing_projects_wont_affect_collaborators": "",
- "trial_last_day": "",
- "trial_remaining_days": "",
- "tried_to_log_in_with_email": "",
- "tried_to_register_with_email": "",
- "try_again": "",
- "try_for_free": "",
- "try_now": "",
- "try_recompile_project_or_troubleshoot": "",
- "try_relinking_provider": "",
- "try_to_compile_despite_errors": "",
- "turn_off": "",
- "turn_off_link_sharing": "",
- "turn_on": "",
- "turn_on_link_sharing": "",
- "unarchive": "",
- "uncategorized": "",
- "uncategorized_projects": "",
- "unconfirmed": "",
- "undelete": "",
- "understand_managed_user_accounts": "",
- "understanding_labels": "",
- "undo": "",
- "unfold_line": "",
- "unique_identifier_attribute": "",
- "university": "",
- "university_school": "",
- "unknown": "",
- "unknown_group": "",
- "unlimited_collaborators_per_project": "",
- "unlimited_collabs": "",
- "unlimited_collabs_per_project_plus": "",
- "unlimited_document_history": "",
- "unlink": "",
- "unlink_all_users": "",
- "unlink_all_users_explanation": "",
- "unlink_commons_sso_confirm": "",
- "unlink_commons_sso_error": "",
- "unlink_commons_sso_lose_licence": "",
- "unlink_commons_sso_no_login": "",
- "unlink_commons_sso_title": "",
- "unlink_commons_sso_troubleshoot": "",
- "unlink_dropbox_folder": "",
- "unlink_dropbox_warning": "",
- "unlink_from_sso": "",
- "unlink_github_repository": "",
- "unlink_github_warning": "",
- "unlink_linked_accounts": "",
- "unlink_linked_google_account": "",
- "unlink_provider_account_title": "",
- "unlink_provider_account_warning": "",
- "unlink_reference": "",
- "unlink_sso": "",
- "unlink_the_project_from_the_current_github_repo": "",
- "unlink_user_explanation": "",
- "unlink_users": "",
- "unlink_warning_reference": "",
- "unlinking": "",
- "unmerge_cells": "",
- "unpause_subscription": "",
- "unpausing": "",
- "unpublish": "",
- "unpublishing": "",
- "unsubscribe": "",
- "until_then_you_can_still": "",
- "untrash": "",
- "update": "",
- "update_account_info": "",
- "update_dropbox_settings": "",
- "update_your_billing_details": "",
- "updates_to_project_sharing": "",
- "updating": "",
- "upgrade": "",
- "upgrade_cc_btn": "",
- "upgrade_for_more_compile_time": "",
- "upgrade_for_unlimited_access_to_ai": "",
- "upgrade_my_plan": "",
- "upgrade_now": "",
- "upgrade_plan": "",
- "upgrade_summary": "",
- "upgrade_to_add_more_collaborators_and_more": "",
- "upgrade_to_get_feature": "",
- "upgrade_to_get_started": "",
- "upgrade_to_plan": "",
- "upgrade_to_review": "",
- "upgrade_your_subscription": "",
- "upload": "",
- "upload_bib_file": "",
- "upload_failed": "",
- "upload_file": "",
- "upload_from_computer": "",
- "upload_project": "",
- "upload_zipped_project": "",
- "url_to_fetch_the_file_from": "",
- "us_gov_banner_fedramp": "",
- "us_gov_banner_government_purchasing": "",
- "us_gov_banner_small_business_reseller": "",
- "usage_limit_reached": "",
- "usage_metrics": "",
- "use_a_different_email": "",
- "use_a_different_password": "",
- "use_saml_metadata_to_configure_sso_with_idp": "",
- "use_the_shortcut_key_to_paste": "",
- "use_your_own_machine": "",
- "used_latex_before": "",
- "used_latex_response_familiar": "",
- "used_latex_response_never": "",
- "used_latex_response_occasionally": "",
- "used_latex_response_often": "",
- "used_when_referring_to_the_figure_elsewhere_in_the_document": "",
- "user_deletion_error": "",
- "user_deletion_password_reset_tip": "",
- "user_email_attribute": "",
- "user_first_name_attribute": "",
- "user_has_left_organization_and_need_to_transfer_their_projects": "",
- "user_last_name_attribute": "",
- "user_management": "",
- "user_personal_access_tokens": "",
- "user_sessions": "",
- "using_latex": "",
- "using_premium_features": "",
- "using_the_overleaf_editor": "",
- "using_writefull": "",
- "valid": "",
- "valid_sso_configuration": "",
- "validation_issue_entry_description": "",
- "value_must_be_a_number": "",
- "value_must_be_a_whole_number": "",
- "value_must_be_at_least_x": "",
- "vat": "",
- "verification": "",
- "verification_code": "",
- "verified": "",
- "verify_domain": "",
- "verify_email_address_before_enabling_managed_users": "",
- "verify_your_email_address": "",
- "verifying_domain": "",
- "via_sharing_links_legacy": "",
- "view": "",
- "view_all": "",
- "view_all_plans": "",
- "view_audit_logs_group_subtext": "",
- "view_billing_details": "",
- "view_code": "",
- "view_configuration": "",
- "view_group_members": "",
- "view_hub": "",
- "view_hub_subtext": "",
- "view_in_template_gallery": "",
- "view_invitation": "",
- "view_invoices": "",
- "view_labs_experiments": "",
- "view_less": "",
- "view_logs": "",
- "view_metrics": "",
- "view_metrics_commons_subtext": "",
- "view_metrics_group_subtext": "",
- "view_more": "",
- "view_more_domain_details": "",
- "view_only_access": "",
- "view_only_downgraded": "",
- "view_only_reviewer_downgraded": "",
- "view_options": "",
- "view_payment_portal": "",
- "view_payment_portal_disclaimer": "",
- "view_your_invoices": "",
- "viewer": "",
- "viewing": "",
- "viewing_x": "",
- "visual": "",
- "visual_editor_does_not_support_this_file_type": "",
- "want_change_to_apply_before_plan_end": "",
- "warnings": "",
- "we_are_unable_to_opt_you_into_this_experiment": "",
- "we_cant_find_any_sections_or_subsections_in_this_file": "",
- "we_couldnt_export_this_document": "",
- "we_do_not_share_personal_information": "",
- "we_got_your_request": "",
- "we_logged_you_in": "",
- "we_sent_code": "",
- "we_sent_new_code": "",
- "we_were_unable_to_verify_your_domain": "",
- "we_will_charge_you_now_for_the_cost_of_your_additional_licenses_based_on_remaining_months": "",
- "we_will_charge_you_now_for_your_new_plan_based_on_the_remaining_months_of_your_current_subscription": "",
- "we_will_invoice_you_now_for_the_additional_licenses_based_on_remaining_months": "",
- "we_will_use_your_existing_payment_method": "",
- "webinars": "",
- "website_status": "",
- "wed_love_you_to_stay": "",
- "welcome_to_overleaf_opening_workspace": "",
- "welcome_to_plan": "",
- "welcome_to_sl": "",
- "well_be_here_when_youre_ready": "",
- "were_making_some_changes_to_project_sharing_this_means_you_will_be_visible": "",
- "were_performing_maintenance": "",
- "weve_converted_your_content_to_latex": "",
- "weve_hit_a_problem_try_starting_a_new_chat": "",
- "what_did_you_find_most_helpful": "",
- "what_do_you_need_help_with": "",
- "what_does_this_mean_for_you": "",
- "what_happens_when_sso_is_enabled": "",
- "what_should_we_call_you": "",
- "what_would_you_like_to_do": "",
- "when_you_tick_the_include_caption_box": "",
- "who_can_be_invited_to_group_members_projects": "",
- "why_not_pause_instead": "",
- "wide": "",
- "will_lose_edit_access_on_date": "",
- "with_overleaf_subscription_you_also_get": "",
- "word_count_lower": "",
- "words": "",
- "work_in_vim_or_emacs_emulation_mode": "",
- "work_offline": "",
- "work_offline_pull_to_overleaf": "",
- "work_with_non_overleaf_users": "",
- "work_with_other_github_users": "",
- "x_changes_in": "",
- "x_changes_in_plural": "",
- "x_files_saved_to_your_project": "",
- "x_files_saved_to_your_project_plural": "",
- "x_libraries_accessed_in_this_project": "",
- "x_people_invited": "",
- "x_people_invited_plural": "",
- "x_price_for_first_month": "",
- "x_price_for_first_year": "",
- "x_price_for_y_months": "",
- "x_price_per_month": "",
- "x_price_per_user": "",
- "x_price_per_year": "",
- "x_saved_to_your_project": "",
- "year": "",
- "yearly": "",
- "yes_move_me_to_personal_plan": "",
- "you": "",
- "you_already_have_a_subscription": "",
- "you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
- "you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z_you": "",
- "you_are_a_manager_of_commons_at_institution_x": "",
- "you_are_a_manager_of_publisher_x": "",
- "you_are_a_manager_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
- "you_are_a_manager_of_x_plan_as_member_of_group_subscription_y_administered_by_z_you": "",
- "you_are_currently_logged_in_as": "",
- "you_are_currently_logged_in_as_x_you_might_need_to_log_in_with_different_email": "",
- "you_are_on_a_paid_plan_contact_support_to_find_out_more": "",
- "you_are_on_x_plan_as_a_confirmed_member_of_institution_y": "",
- "you_are_on_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
- "you_are_using_our_free_plan": "",
- "you_can_also_choose_to_view_anonymously_or_leave_the_project": "",
- "you_can_also_right_click_a_file_to_set_it_as_main": "",
- "you_can_buy_this_plan_but_not_as_a_trial": "",
- "you_can_link_x_in_your_account_settings": "",
- "you_can_now_enable_sso": "",
- "you_can_now_log_in_sso": "",
- "you_can_now_search_and_add_references_from_your_rm_library_without_needing_to_import_files": "",
- "you_can_only_be_affiliated_with_one_group": "",
- "you_can_select_or_invite_collaborator": "",
- "you_can_select_or_invite_collaborator_plural": "",
- "you_can_still_use_your_premium_features": "",
- "you_cant_add_or_change_password_due_to_sso": "",
- "you_cant_join_this_group_subscription": "",
- "you_currently_have_x_linked_with_your_overleaf_account": "",
- "you_dont_have_any_repositories": "",
- "you_have_1_license_and_your_plan_supports_up_to_y": "",
- "you_have_added_x_of_group_size_y": "",
- "you_have_been_invited_to_transfer_management_of_your_account": "",
- "you_have_been_invited_to_transfer_management_of_your_account_to": "",
- "you_have_been_removed_from_this_project_and_will_be_redirected_to_project_dashboard": "",
- "you_have_multiple_organization_email_addresses_on_your_account": "",
- "you_have_x_licenses_and_your_plan_supports_up_to_y": "",
- "you_have_x_licenses_on_your_subscription": "",
- "you_need_to_configure_your_sso_settings": "",
- "you_unpaused_your_subscription": "",
- "you_will_be_able_to_reassign_subscription": "",
- "youll_get_best_results_in_visual_but_can_be_used_in_source": "",
- "youll_need_to_ask_the_github_repository_owner": "",
- "youll_no_longer_need_to_remember_credentials": "",
- "your_account_is_managed_by_admin_cant_join_additional_group": "",
- "your_account_is_managed_by_your_group_admin": "",
- "your_add_on_has_been_cancelled_and_will_remain_active_until_your_billing_cycle_ends_on": "",
- "your_affiliation_is_confirmed": "",
- "your_browser_cant_access_the_clipboard_so_use_this_shortcut": "",
- "your_changes_will_save": "",
- "your_compile_timed_out": "",
- "your_current_plan": "",
- "your_current_plan_gives_you": "",
- "your_current_plan_supports_up_to_x_licenses": "",
- "your_current_project_will_revert_to_the_version_from_time": "",
- "your_document_couldnt_be_imported_check_our_guidance_or_expand_conversion_error_details": "",
- "your_email_is_confirmed": "",
- "your_feedback_matters_answer_two_quick_questions": "",
- "your_git_access_info": "",
- "your_git_access_info_bullet_1": "",
- "your_git_access_info_bullet_2": "",
- "your_git_access_info_bullet_3": "",
- "your_git_access_info_bullet_4": "",
- "your_git_access_info_bullet_5": "",
- "your_git_access_tokens": "",
- "your_limit_will_reset_in_time_or_speak_to_admin": "",
- "your_message_to_collaborators": "",
- "your_name_and_email_address_will_be_visible_to_project_editors": "",
- "your_name_and_email_address_will_be_visible_to_the_project_owner_and_other_editors": "",
- "your_new_plan": "",
- "your_password_was_detected": "",
- "your_plan": "",
- "your_plan_is_changing_at_term_end": "",
- "your_plan_is_limited_to_n_editors": "",
- "your_plan_is_limited_to_n_editors_plural": "",
- "your_premium_plan_is_paused": "",
- "your_project_exceeded_collaborator_limit": "",
- "your_project_exceeded_compile_timeout_limit_on_free_plan": "",
- "your_project_near_compile_timeout_limit": "",
- "your_projects": "",
- "your_role": "",
- "your_subscription_has_expired": "",
- "your_subscription_will_pause_on": "",
- "your_subscription_will_pause_on_short": "",
- "your_subscriptions": "",
- "youre_a_member_of_overleaf_labs": "",
- "youre_about_to_enable_single_sign_on": "",
- "youre_about_to_enable_single_sign_on_sso_only": "",
- "youre_adding_x_licenses_to_your_plan_giving_you_a_total_of_y_licenses": "",
- "youre_already_setup_for_sso": "",
- "youre_creating_account_for_x_it_will_be_managed_by_y": "",
- "youre_joining": "",
- "youre_joining_x_as_y": "",
- "youre_not_eligible_for_a_free_trial": "",
- "youre_on_free_trial_which_ends_on": "",
- "youre_signed_in_as_logout": "",
- "youre_signed_in_using_your_organization_email": "",
- "youve_added_more_licenses": "",
- "youve_added_x_more_licenses_to_your_subscription_invite_people": "",
- "youve_hit_your_daily_ai_limit": "",
- "youve_lost_collaboration_access": "",
- "youve_paused_your_subscription": "",
- "youve_reached_the_fair_usage": "",
- "youve_reached_the_fair_usage_limit_on_your_plan_you_can_start_chatting_again_in_time": "",
- "youve_reached_your_ai_usage_limit": "",
- "youve_reached_your_daily_ai_limit": "",
- "youve_unlinked_all_users": "",
- "youve_upgraded_your_plan": "",
- "youve_upgraded_your_subscription": "",
- "zoom_in": "",
- "zoom_out": "",
- "zoom_to": "",
- "zotero": "",
- "zotero_dynamic_sync_description": "",
- "zotero_groups_loading_error": "",
- "zotero_groups_relink": "",
- "zotero_integration": "",
- "zotero_is_premium": "",
- "zotero_reference_loading_error": "",
- "zotero_reference_loading_error_expired": "",
- "zotero_reference_loading_error_forbidden": "",
- "zotero_sync_description": "",
- "zotero_upgrade_prompt_content": "",
- "zotero_upgrade_prompt_title": ""
- }
|