extracted-translations.json 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  1. {
  2. "0_free_suggestions": "",
  3. "1_2_width": "",
  4. "1_4_width": "",
  5. "1_free_suggestion": "",
  6. "24x_more_compile_time": "",
  7. "3_4_width": "",
  8. "About": "",
  9. "Account": "",
  10. "Documentation": "",
  11. "Get Involved": "",
  12. "Help": "",
  13. "Learn": "",
  14. "Pricing": "",
  15. "Solutions": "",
  16. "a_custom_size_has_been_used_in_the_latex_code": "",
  17. "a_file_with_that_name_already_exists_and_will_be_overriden": "",
  18. "a_more_comprehensive_list_of_keyboard_shortcuts": "",
  19. "a_new_reference_was_added": "",
  20. "a_new_reference_was_added_from_library": "",
  21. "a_new_reference_was_added_from_provider": "",
  22. "a_new_reference_was_added_to_file": "",
  23. "a_new_reference_was_added_to_file_from_library": "",
  24. "a_new_reference_was_added_to_file_from_provider": "",
  25. "a_new_version_of_the_rolling_texlive_build_released": "",
  26. "about_to_archive_projects": "",
  27. "about_to_delete_cert": "",
  28. "about_to_delete_projects": "",
  29. "about_to_delete_tag": "",
  30. "about_to_delete_the_following_project": "",
  31. "about_to_delete_the_following_projects": "",
  32. "about_to_delete_user_preamble": "",
  33. "about_to_enable_managed_users": "",
  34. "about_to_leave_project": "",
  35. "about_to_leave_projects": "",
  36. "about_to_remove_user_preamble": "",
  37. "about_to_trash_projects": "",
  38. "abstract": "",
  39. "accept_all_cookies": "",
  40. "accept_and_continue": "",
  41. "accept_change": "",
  42. "accept_change_error_description": "",
  43. "accept_change_error_title": "",
  44. "accept_invitation": "",
  45. "accept_or_reject_individual_edits": "",
  46. "accept_selected_changes": "",
  47. "accept_suggestion": "",
  48. "accept_terms_and_conditions": "",
  49. "accepted_invite": "",
  50. "accepting": "",
  51. "access_all_premium_features": "",
  52. "access_denied": "",
  53. "access_edit_your_projects": "",
  54. "access_levels_changed": "",
  55. "access_updated": "",
  56. "account_associated_with_x": "",
  57. "account_billed_manually": "",
  58. "account_has_been_link_to_group_account": "",
  59. "account_has_been_link_to_institution_account": "",
  60. "account_has_past_due_invoice_change_plan_warning": "",
  61. "account_help": "",
  62. "account_managed_by_group_administrator": "",
  63. "account_managed_by_group_teamname": "",
  64. "account_not_linked_to_dropbox": "",
  65. "account_settings": "",
  66. "acct_linked_to_institution_acct_2": "",
  67. "actions": "",
  68. "active": "",
  69. "add": "",
  70. "add_a_recovery_email_address": "",
  71. "add_add_on_to_your_plan": "",
  72. "add_additional_certificate": "",
  73. "add_affiliation": "",
  74. "add_ai_assist": "",
  75. "add_ai_assist_annual_and_get_unlimited_access": "",
  76. "add_ai_assist_monthly_and_get_unlimited_access": "",
  77. "add_ai_assist_to_your_plan": "",
  78. "add_another_address_line": "",
  79. "add_another_email": "",
  80. "add_another_token": "",
  81. "add_comma_separated_emails_help": "",
  82. "add_comment": "",
  83. "add_comment_error_message": "",
  84. "add_comment_error_title": "",
  85. "add_company_details": "",
  86. "add_domain": "",
  87. "add_email_address": "",
  88. "add_email_to_claim_features": "",
  89. "add_files": "",
  90. "add_more_collaborators": "",
  91. "add_more_licenses_to_my_plan": "",
  92. "add_more_manager_emails": "",
  93. "add_new_email": "",
  94. "add_on": "",
  95. "add_ons": "",
  96. "add_or_remove_project_from_tag": "",
  97. "add_reference": "",
  98. "add_references": "",
  99. "add_role_and_department": "",
  100. "add_to_dictionary": "",
  101. "add_to_tag": "",
  102. "add_txt_record_to_dns_with_token": "",
  103. "add_unlimited_ai_to_overleaf": "",
  104. "add_unlimited_ai_to_your_overleaf_plan": "",
  105. "add_unlimited_ai_to_your_plan": "",
  106. "add_your_comment_here": "",
  107. "added_by_on": "",
  108. "adding": "",
  109. "adding_a_domain_will_initiate_verification": "",
  110. "additional_certificate": "",
  111. "address_line_1": "",
  112. "address_second_line_optional": "",
  113. "adjust_column_width": "",
  114. "admin_titlecase": "",
  115. "advanced_reference_search_mode": "",
  116. "advancing_research_with": "",
  117. "after_that_well_bill_you_x_total_y_subtotal_z_tax_annually_on_date_unless_you_cancel": "",
  118. "aggregate_changed": "",
  119. "aggregate_to": "",
  120. "agree": "",
  121. "agree_with_the_terms": "",
  122. "ai_assist_in_overleaf_is_included_via_writefull_groups": "",
  123. "ai_assist_in_overleaf_is_included_via_writefull_individual": "",
  124. "ai_assist_subscriber_can_now_write_smarter": "",
  125. "ai_assist_unavailable": "",
  126. "ai_assistance": "",
  127. "ai_assistant": "",
  128. "ai_assistant_disabled": "",
  129. "ai_can_make_mistakes": "",
  130. "ai_features": "",
  131. "ai_features_unavailable_on_this_project": "",
  132. "ai_feedback_please_provide_more_detail": "",
  133. "ai_feedback_tell_us_what_was_wrong_so_we_can_improve": "",
  134. "ai_feedback_the_answer_was_too_long": "",
  135. "ai_feedback_the_answer_wasnt_detailed_enough": "",
  136. "ai_feedback_the_suggestion_didnt_fix_the_error": "",
  137. "ai_feedback_the_suggestion_wasnt_the_best_fix_available": "",
  138. "ai_feedback_there_was_no_code_fix_suggested": "",
  139. "ai_language_suggestions": "",
  140. "ai_shortcut_on_empty_lines": "",
  141. "ai_shortcut_on_text_selection": "",
  142. "alignment": "",
  143. "all_borders": "",
  144. "all_events": "",
  145. "all_features_in_group_standard_plus": "",
  146. "all_logs": "",
  147. "all_premium_features": "",
  148. "all_project_activity": "",
  149. "all_project_activity_description": "",
  150. "all_projects": "",
  151. "all_projects_will_be_transferred_immediately": "",
  152. "all_these_experiments_are_available_exclusively": "",
  153. "allocate_license": "",
  154. "allows_to_search_by_author_title_etc_possible_to_pull_results_directly_from_your_reference_manager_if_connected": "",
  155. "an_email_has_already_been_sent_to": "",
  156. "an_error_occured_while_restoring_project": "",
  157. "an_error_occurred_when_verifying_the_coupon_code": "",
  158. "and_much_more": "",
  159. "annual_discount": "",
  160. "anonymous": "",
  161. "anyone": "",
  162. "anyone_in_x": "",
  163. "anyone_in_x_with_the_link": "",
  164. "anyone_with_link_can_edit": "",
  165. "anyone_with_link_can_view": "",
  166. "anyone_with_the_link": "",
  167. "app_on_x": "",
  168. "appearance": "",
  169. "apply": "",
  170. "apply_changes": "",
  171. "apply_educational_discount_description_with_group_discount": "",
  172. "apply_suggestion": "",
  173. "archive": "",
  174. "archive_projects": "",
  175. "archived": "",
  176. "archived_projects": "",
  177. "archiving_projects_wont_affect_collaborators": "",
  178. "are_you_affiliated_with_an_institution": "",
  179. "are_you_getting_an_undefined_control_sequence_error": "",
  180. "are_you_still_at": "",
  181. "are_you_sure_you_want_to_cancel_add_on": "",
  182. "as_email": "",
  183. "ask_proj_owner_to_unlink_from_current_github": "",
  184. "ask_proj_owner_to_upgrade_for_full_history": "",
  185. "ask_repo_owner_to_reconnect": "",
  186. "ask_repo_owner_to_renew_overleaf_subscription": "",
  187. "at_most_x_libraries_can_be_selected": "",
  188. "attach_image_or_pdf": "",
  189. "audit_logs": "",
  190. "auto_close_brackets": "",
  191. "auto_compile": "",
  192. "auto_complete": "",
  193. "autocompile": "",
  194. "autocompile_disabled": "",
  195. "autocompile_disabled_reason": "",
  196. "autocomplete": "",
  197. "autocomplete_references": "",
  198. "automatically_insert_closing_brackets_and_parentheses": "",
  199. "automatically_recompile_the_project_as_you_edit": "",
  200. "available_for_pro_groups": "",
  201. "back": "",
  202. "back_to_configuration": "",
  203. "back_to_editing": "",
  204. "back_to_editor": "",
  205. "back_to_my_projects": "",
  206. "back_to_pdf": "",
  207. "back_to_subscription": "",
  208. "back_to_your_projects": "",
  209. "basic_compile_time": "",
  210. "before_you_use_error_assistant": "",
  211. "beta_program_already_participating": "",
  212. "beta_program_benefits": "",
  213. "beta_program_not_participating": "",
  214. "bibtex_duplicates_keys": "",
  215. "billed_annually_at": "",
  216. "billed_monthly_at": "",
  217. "billed_yearly": "",
  218. "billing": "",
  219. "billing_period_sentence_case": "",
  220. "binary_history_error": "",
  221. "blank_project": "",
  222. "blocked_filename": "",
  223. "blocked_language_suggestions": "",
  224. "blog": "",
  225. "bold": "",
  226. "booktabs": "",
  227. "breadcrumbs": "",
  228. "browser": "",
  229. "build_collection_of_most_used_references": "",
  230. "bullet_list": "",
  231. "buy_licenses": "",
  232. "buy_more_licenses": "",
  233. "buy_now_no_exclamation_mark": "",
  234. "by_email": "",
  235. "by_sharing_link": "",
  236. "by_subscribing_you_agree_to_our_terms_of_service": "",
  237. "can_link_institution_email_acct_to_institution_acct": "",
  238. "can_link_your_institution_acct_2": "",
  239. "can_now_relink_dropbox": "",
  240. "can_view_content": "",
  241. "cancel": "",
  242. "cancel_add_on": "",
  243. "cancel_any_existing_subscriptions": "",
  244. "cancel_any_existing_subscriptions_and_leave_any_group_subscriptions": "",
  245. "cancel_anytime": "",
  246. "cancel_my_account": "",
  247. "cancel_my_subscription": "",
  248. "cancel_personal_subscription_first": "",
  249. "cancel_subscription": "",
  250. "cancel_your_subscription": "",
  251. "cannot_invite_non_user": "",
  252. "cannot_invite_self": "",
  253. "cannot_verify_user_not_robot": "",
  254. "cant_see_what_youre_looking_for_question": "",
  255. "caption_above": "",
  256. "caption_below": "",
  257. "captions": "",
  258. "capture": "",
  259. "card_details": "",
  260. "card_details_are_not_valid": "",
  261. "card_must_be_authenticated_by_3dsecure": "",
  262. "card_payment": "",
  263. "careers": "",
  264. "category_arrows": "",
  265. "category_greek": "",
  266. "category_misc": "",
  267. "category_operators": "",
  268. "category_relations": "",
  269. "center": "",
  270. "change": "",
  271. "change_currency": "",
  272. "change_email_address": "",
  273. "change_language": "",
  274. "change_owner": "",
  275. "change_password": "",
  276. "change_password_in_account_settings": "",
  277. "change_plan": "",
  278. "change_primary_email": "",
  279. "change_primary_email_address_instructions": "",
  280. "change_project_owner": "",
  281. "change_role_and_department": "",
  282. "change_settings": "",
  283. "change_the_ownership_of_your_personal_projects": "",
  284. "change_to_group_plan": "",
  285. "change_to_this_plan": "",
  286. "changes_applied": "",
  287. "changes_to_these_settings_will_be_applied_to_all_new_projects": "",
  288. "changing_the_position_of_your_figure": "",
  289. "changing_the_position_of_your_table": "",
  290. "characters": "",
  291. "chat": "",
  292. "chat_error": "",
  293. "checking_dropbox_status": "",
  294. "checking_project_github_status": "",
  295. "choose_a_custom_color": "",
  296. "choose_from_group_members": "",
  297. "choose_how_you_search_your_references": "",
  298. "choose_markdown_file": "",
  299. "choose_which_experiments": "",
  300. "choose_word_document": "",
  301. "citation": "",
  302. "citation_key_helper": "",
  303. "cite_a_reference_from_your_reference_manager_to_automatically_add_it_to_your_bib_file": "",
  304. "cite_directly_or_import_references": "",
  305. "cite_faster": "",
  306. "clear_cached_files": "",
  307. "clear_filters": "",
  308. "clear_search": "",
  309. "clearing": "",
  310. "click_here_to_view_sl_in_lng": "",
  311. "click_recompile_and_check_your_pdf_to_see_how_its_looking": "",
  312. "click_to_unpause": "",
  313. "clicking_delete_will_remove_sso_config_and_clear_saml_data": "",
  314. "clone_with_git": "",
  315. "close": "",
  316. "close_dialog": "",
  317. "close_other_tabs": "",
  318. "close_tabs_to_the_right": "",
  319. "clsi_maintenance": "",
  320. "clsi_unavailable": "",
  321. "code": "",
  322. "code_check_failed_explanation": "",
  323. "collaborate_online_and_offline": "",
  324. "collaborator_chat": "",
  325. "collabs_per_proj": "",
  326. "collabs_per_proj_multiple": "",
  327. "collabs_per_proj_plural": "",
  328. "collabs_per_proj_plus": "",
  329. "collabs_per_proj_plus_plural": "",
  330. "collapse": "",
  331. "column_width": "",
  332. "column_width_is_custom_click_to_resize": "",
  333. "column_width_is_x_click_to_resize": "",
  334. "comment": "",
  335. "comment_only": "",
  336. "comment_only_upgrade_for_track_changes": "",
  337. "comment_only_upgrade_to_enable_track_changes": "",
  338. "common": "",
  339. "commons": "",
  340. "commons_plan_tooltip": "",
  341. "compact": "",
  342. "company_name": "",
  343. "compare": "",
  344. "compare_all_plans": "",
  345. "comparing_from_x_to_y": "",
  346. "compile_error_at_line": "",
  347. "compile_error_entry_description": "",
  348. "compile_error_handling": "",
  349. "compile_larger_projects": "",
  350. "compile_mode": "",
  351. "compile_terminated_by_user": "",
  352. "compile_timeout_modal_intro": "",
  353. "compiler": "",
  354. "compiling": "",
  355. "compliance": "",
  356. "compromised_password": "",
  357. "configure_sso": "",
  358. "confirm": "",
  359. "confirm_accept_selected_changes": "",
  360. "confirm_accept_selected_changes_plural": "",
  361. "confirm_affiliation": "",
  362. "confirm_affiliation_to_relink_dropbox": "",
  363. "confirm_delete_user_type_email_address": "",
  364. "confirm_new_password": "",
  365. "confirm_primary_email_change": "",
  366. "confirm_reject_selected_changes": "",
  367. "confirm_reject_selected_changes_plural": "",
  368. "confirm_remove_sso_config_enter_email": "",
  369. "confirm_remove_user_type_email_address": "",
  370. "confirm_secondary_email": "",
  371. "confirm_your_email": "",
  372. "confirming": "",
  373. "conflicting_paths_found": "",
  374. "congratulations_youve_successfully_join_group": "",
  375. "connected_users": "",
  376. "connection_lost_with_unsaved_changes": "",
  377. "contact_group_admin": "",
  378. "contact_sales": "",
  379. "contact_us": "",
  380. "contacting_the_sales_team": "",
  381. "continue": "",
  382. "continue_github_merge": "",
  383. "continue_to": "",
  384. "continue_using_free_features": "",
  385. "continue_with_free_plan": "",
  386. "conversion_error_details": "",
  387. "cookie_banner": "",
  388. "cookie_banner_info": "",
  389. "copied": "",
  390. "copy": "",
  391. "copy_project": "",
  392. "copy_response": "",
  393. "copy_sharing_link": "",
  394. "copying": "",
  395. "cost_summary": "",
  396. "could_not_save_reference_to_bib_file": "",
  397. "could_not_save_reference_to_bib_file_forbidden": "",
  398. "country": "",
  399. "country_flag": "",
  400. "coupon_code": "",
  401. "coupon_code_is_not_valid_for_selected_plan": "",
  402. "coupons_not_included": "",
  403. "create": "",
  404. "create_a_new_project": "",
  405. "create_account": "",
  406. "create_new_account": "",
  407. "create_new_subscription": "",
  408. "create_new_tag": "",
  409. "create_project_in_github": "",
  410. "create_summaries": "",
  411. "created": "",
  412. "created_at": "",
  413. "creating": "",
  414. "cross_reference": "",
  415. "current_file": "",
  416. "current_password": "",
  417. "currently_seeing_only_24_hrs_history": "",
  418. "currently_signed_in_as_x": "",
  419. "currently_subscribed_to_plan": "",
  420. "custom": "",
  421. "custom_borders": "",
  422. "custom_prompt": "",
  423. "custom_prompt_example": "",
  424. "customer_stories": "",
  425. "customize_your_group_subscription": "",
  426. "customizing_figures": "",
  427. "customizing_tables": "",
  428. "cut": "",
  429. "dark_mode_pdf_preview": "",
  430. "dark_themes": "",
  431. "date_and_owner": "",
  432. "date_and_time": "",
  433. "dealing_with_errors": "",
  434. "decrease_indent": "",
  435. "delete": "",
  436. "delete_account": "",
  437. "delete_account_confirmation_label": "",
  438. "delete_account_warning_message_3": "",
  439. "delete_acct_no_existing_pw": "",
  440. "delete_and_leave": "",
  441. "delete_and_leave_projects": "",
  442. "delete_authentication_token": "",
  443. "delete_authentication_token_info": "",
  444. "delete_certificate": "",
  445. "delete_comment": "",
  446. "delete_comment_error_message": "",
  447. "delete_comment_error_title": "",
  448. "delete_comment_message": "",
  449. "delete_comment_thread": "",
  450. "delete_comment_thread_message": "",
  451. "delete_figure": "",
  452. "delete_message": "",
  453. "delete_message_confirmation": "",
  454. "delete_permanently": "",
  455. "delete_projects": "",
  456. "delete_row_or_column": "",
  457. "delete_sso_config": "",
  458. "delete_table": "",
  459. "delete_tag": "",
  460. "delete_token": "",
  461. "delete_user": "",
  462. "delete_your_account": "",
  463. "deleted_at": "",
  464. "deleted_by_email": "",
  465. "deleted_by_id": "",
  466. "deleted_by_ip": "",
  467. "deleted_by_on": "",
  468. "deleted_user": "",
  469. "deleting": "",
  470. "demonstrating_git_integration": "",
  471. "demonstrating_track_changes_feature": "",
  472. "department": "",
  473. "description": "",
  474. "details": "",
  475. "details_provided_by_google_explanation": "",
  476. "dictionary": "",
  477. "did_you_know_institution_providing_professional": "",
  478. "dimensions_no_bib_file": "",
  479. "disable": "",
  480. "disable_ai_features": "",
  481. "disable_equation_preview": "",
  482. "disable_equation_preview_confirm": "",
  483. "disable_equation_preview_enable_in_settings": "",
  484. "disable_single_sign_on": "",
  485. "disable_sso": "",
  486. "disable_stop_on_first_error": "",
  487. "disabled": "",
  488. "disabling": "",
  489. "disagree": "",
  490. "disconnected": "",
  491. "discount": "",
  492. "discount_of": "",
  493. "discover_the_fastest_easiest_way_to_cite_in_app": "",
  494. "discover_the_fastest_way_to_search_and_cite": "",
  495. "display": "",
  496. "display_deleted_user": "",
  497. "display_math": "",
  498. "do_not_create_account": "",
  499. "do_you_need_edit_access": "",
  500. "do_you_want_to_change_your_primary_email_address_to": "",
  501. "do_you_want_to_overwrite_it": "",
  502. "do_you_want_to_overwrite_it_plural": "",
  503. "do_you_want_to_overwrite_them": "",
  504. "document_ready_for_editing": "",
  505. "document_too_long": "",
  506. "document_too_long_detail": "",
  507. "document_too_long_tracked_deletes": "",
  508. "document_updated_externally": "",
  509. "document_updated_externally_detail": "",
  510. "documentation": "",
  511. "docx_export_feedback_message": "",
  512. "docx_import_feedback_message": "",
  513. "doesnt_match": "",
  514. "doing_this_allow_log_in_through_institution": "",
  515. "doing_this_allow_log_in_through_institution_2": "",
  516. "doing_this_will_verify_affiliation_and_allow_log_in_2": "",
  517. "domain": "",
  518. "domain_capture": "",
  519. "domain_capture_explanation": "",
  520. "domain_capture_is_enabled": "",
  521. "domain_capture_is_not_enabled": "",
  522. "domain_verification_already_registered": "",
  523. "domain_verification_failed_dns_error": "",
  524. "domain_verification_failed_internal_error": "",
  525. "domain_verification_failed_no_token": "",
  526. "domain_verification_failed_wrong_token": "",
  527. "domain_verification_invalid_domain": "",
  528. "domain_verification_pending_no_attempt_yet": "",
  529. "done": "",
  530. "dont_create_personal_projects_in_managed_account": "",
  531. "dont_forget_you_currently_have": "",
  532. "dont_reload_or_close_this_tab": "",
  533. "download": "",
  534. "download_all": "",
  535. "download_as_pdf": "",
  536. "download_as_source_zip": "",
  537. "download_csv": "",
  538. "download_metadata": "",
  539. "download_pdf": "",
  540. "download_zip_file": "",
  541. "draft_sso_configuration": "",
  542. "drag_here": "",
  543. "drag_here_paste_an_image_or": "",
  544. "dropbox": "",
  545. "dropbox_checking_sync_status": "",
  546. "dropbox_duplicate_project_names": "",
  547. "dropbox_duplicate_project_names_suggestion": "",
  548. "dropbox_for_link_share_projs": "",
  549. "dropbox_integration_lowercase": "",
  550. "dropbox_sync": "",
  551. "dropbox_sync_both": "",
  552. "dropbox_sync_description": "",
  553. "dropbox_sync_error": "",
  554. "dropbox_sync_in": "",
  555. "dropbox_sync_now_rate_limited": "",
  556. "dropbox_sync_now_running": "",
  557. "dropbox_sync_out": "",
  558. "dropbox_sync_troubleshoot": "",
  559. "dropbox_synced": "",
  560. "dropbox_unlinked_premium_feature": "",
  561. "due_date": "",
  562. "due_today": "",
  563. "duplicate_file": "",
  564. "duplicate_projects": "",
  565. "e_g_example_com": "",
  566. "each_user_will_have_access_to": "",
  567. "easily_manage_your_project_files_everywhere": "",
  568. "edit": "",
  569. "edit_comment_error_message": "",
  570. "edit_comment_error_title": "",
  571. "edit_content_directly": "",
  572. "edit_dictionary": "",
  573. "edit_dictionary_empty": "",
  574. "edit_dictionary_remove": "",
  575. "edit_figure": "",
  576. "edit_reference": "",
  577. "edit_sso_configuration": "",
  578. "edit_tag": "",
  579. "edit_tag_name": "",
  580. "edit_your_custom_dictionary": "",
  581. "edited": "",
  582. "editing": "",
  583. "editing_captions": "",
  584. "editor": "",
  585. "editor_disconected_click_to_reconnect": "",
  586. "editor_font_family": "",
  587. "editor_font_size": "",
  588. "editor_limit_exceeded_in_this_project": "",
  589. "editor_line_height": "",
  590. "editor_only": "",
  591. "editor_theme": "",
  592. "editor_theme_dark": "",
  593. "editor_theme_light": "",
  594. "edits_become_suggestions": "",
  595. "educational_disclaimer": "",
  596. "educational_disclaimer_heading": "",
  597. "educational_percent_discount_applied": "",
  598. "email": "",
  599. "email_address": "",
  600. "email_address_is_invalid": "",
  601. "email_already_registered": "",
  602. "email_already_registered_sso": "",
  603. "email_attribute": "",
  604. "email_does_not_belong_to_university": "",
  605. "email_limit_reached": "",
  606. "email_link_expired": "",
  607. "email_must_be_a_valid_format": "",
  608. "email_must_be_linked_to_institution": "",
  609. "email_notifications_are_currently_in_beta": "",
  610. "email_or_password_wrong_try_again": "",
  611. "email_preferences": "",
  612. "email_remove_by_date": "",
  613. "emails_and_affiliations_explanation": "",
  614. "emails_and_affiliations_title": "",
  615. "empty": "",
  616. "enable": "",
  617. "enable_ai_features": "",
  618. "enable_managed_users": "",
  619. "enable_single_sign_on": "",
  620. "enable_sso": "",
  621. "enabled": "",
  622. "enables_real_time_syntax_checking_in_the_editor": "",
  623. "enabling": "",
  624. "end_of_document": "",
  625. "end_time_utc": "",
  626. "english__preference_for_ai_suggestion": "",
  627. "english_american": "",
  628. "english_british": "",
  629. "ensure_recover_account": "",
  630. "enter_any_size_including_units_or_valid_latex_command": "",
  631. "enter_emails_separated_by_commas": "",
  632. "enter_manually": "",
  633. "enter_tax_id_number": "",
  634. "enter_the_code": "",
  635. "enter_the_confirmation_code": "",
  636. "enter_the_number_of_licenses_youd_like_to_add_to_see_the_cost_breakdown": "",
  637. "entries": "",
  638. "entry": "",
  639. "entry_has_errors": "",
  640. "entry_plural": "",
  641. "equation_preview": "",
  642. "error": "",
  643. "error_loading_references": "",
  644. "error_opening_document": "",
  645. "error_opening_document_detail": "",
  646. "error_performing_request": "",
  647. "error_processing_file": "",
  648. "errors": "",
  649. "essential_cookies_only": "",
  650. "event_type": "",
  651. "example_project": "",
  652. "existing_plan_active_until_term_end": "",
  653. "exit_focus_mode": "",
  654. "expand": "",
  655. "experiment_enabled_refresh_page": "",
  656. "experiment_full_check_back_soon": "",
  657. "expired": "",
  658. "expired_confirmation_code": "",
  659. "expires": "",
  660. "expires_in_days": "",
  661. "expires_on": "",
  662. "explore_plans": "",
  663. "export_as_docx": "",
  664. "export_as_html": "",
  665. "export_as_markdown": "",
  666. "export_csv": "",
  667. "export_project_to_github": "",
  668. "failed": "",
  669. "failed_to_consent_to_workbench_terms": "",
  670. "failed_to_send_group_invite_to_email": "",
  671. "failed_to_send_managed_user_invite_to_email": "",
  672. "failed_to_send_sso_link_invite_to_email": "",
  673. "fair_usage_policy_applies": "",
  674. "fast": "",
  675. "fast_draft": "",
  676. "feature_enabled_or_disabled": "",
  677. "features_like_track_changes": "",
  678. "feedback": "",
  679. "figure": "",
  680. "file": "",
  681. "file_action_created": "",
  682. "file_action_deleted": "",
  683. "file_action_edited": "",
  684. "file_action_renamed": "",
  685. "file_action_restored": "",
  686. "file_action_restored_project": "",
  687. "file_already_exists": "",
  688. "file_already_exists_in_this_location": "",
  689. "file_name": "",
  690. "file_name_figure_modal": "",
  691. "file_name_in_this_project": "",
  692. "file_name_in_this_project_figure_modal": "",
  693. "file_or_folder_name_already_exists": "",
  694. "file_outline": "",
  695. "file_size": "",
  696. "file_tree": "",
  697. "files_cannot_include_invalid_characters": "",
  698. "files_selected": "",
  699. "filter_projects": "",
  700. "find": "",
  701. "find_and_check_citations": "",
  702. "find_out_how_to_get_the_most_out_of_your_new_subscription": "",
  703. "find_out_more": "",
  704. "find_out_more_about_institution_login": "",
  705. "find_out_more_about_the_file_outline": "",
  706. "find_out_more_nt": "",
  707. "finding_a_fix": "",
  708. "first_name": "",
  709. "fit_to_height": "",
  710. "fit_to_width": "",
  711. "fix_errors": "",
  712. "fixed_width": "",
  713. "fixed_width_wrap_text": "",
  714. "focus_mode": "",
  715. "fold_line": "",
  716. "folder_location": "",
  717. "folder_name": "",
  718. "following_paths_conflict": "",
  719. "footer_about_us": "",
  720. "footer_contact_us": "",
  721. "footnotes": "",
  722. "for_business": "",
  723. "for_government": "",
  724. "for_groups_and_organizations": "",
  725. "for_individuals": "",
  726. "for_more_information_see_managed_accounts_section": "",
  727. "for_more_information_see_managed_accounts_section_new_user": "",
  728. "for_publishers": "",
  729. "for_students": "",
  730. "for_universities": "",
  731. "format": "",
  732. "found_matching_deleted_users": "",
  733. "free": "",
  734. "free_7_day_trial_billed_annually": "",
  735. "free_7_day_trial_billed_monthly": "",
  736. "free_plan_label": "",
  737. "free_plan_tooltip": "",
  738. "from_another_project": "",
  739. "from_enforcement_date": "",
  740. "from_external_url": "",
  741. "from_filename": "",
  742. "from_github": "",
  743. "from_project_files": "",
  744. "from_provider": "",
  745. "from_url": "",
  746. "from_your_library": "",
  747. "from_your_project": "",
  748. "full_doc_history": "",
  749. "full_width": "",
  750. "future_payments": "",
  751. "generate_from_text": "",
  752. "generate_from_text_or_image": "",
  753. "generate_latex_from_prompts_and_images": "",
  754. "generate_token": "",
  755. "generating": "",
  756. "generic_export_feedback_message": "",
  757. "generic_if_problem_continues_contact_us": "",
  758. "generic_linked_file_compile_error": "",
  759. "generic_something_went_wrong": "",
  760. "get_access_to_enterprise_features": "",
  761. "get_ai_assist": "",
  762. "get_collaborative_benefits": "",
  763. "get_discounted_plan": "",
  764. "get_early_access_with_ai_assist_add_on": "",
  765. "get_exclusive_access_to_labs": "",
  766. "get_full_project_history": "",
  767. "get_in_touch": "",
  768. "get_language_suggestions": "",
  769. "get_more_compile_time": "",
  770. "get_most_subscription_by_checking_ai_writefull": "",
  771. "get_most_subscription_by_checking_overleaf": "",
  772. "get_most_subscription_by_checking_overleaf_ai_writefull": "",
  773. "get_ready_for_overleaf_at_its_best_pro": "",
  774. "get_ready_for_overleaf_standard": "",
  775. "get_real_time_track_changes": "",
  776. "get_started_with_latex": "",
  777. "get_your_hands_on_the_ultimate_research_writing_ai_assistant": "",
  778. "git": "",
  779. "git_authentication_token": "",
  780. "git_authentication_token_create_modal_info_1": "",
  781. "git_authentication_token_create_modal_info_2": "",
  782. "git_bridge_modal_click_generate": "",
  783. "git_bridge_modal_enter_authentication_token": "",
  784. "git_bridge_modal_git_clone_your_project": "",
  785. "git_bridge_modal_learn_more_about_authentication_tokens": "",
  786. "git_bridge_modal_read_only": "",
  787. "git_bridge_modal_review_access": "",
  788. "git_bridge_modal_see_once": "",
  789. "git_bridge_modal_use_previous_token": "",
  790. "git_clone_project_command": "",
  791. "git_clone_this_project": "",
  792. "git_integration": "",
  793. "git_integration_info": "",
  794. "github": "",
  795. "github_commit_message_placeholder": "",
  796. "github_credentials_expired": "",
  797. "github_empty_repository_error": "",
  798. "github_file_name_error": "",
  799. "github_file_sync_error": "",
  800. "github_git_folder_error": "",
  801. "github_integration": "",
  802. "github_integration_lowercase": "",
  803. "github_is_no_longer_connected": "",
  804. "github_is_premium": "",
  805. "github_large_files_error": "",
  806. "github_manual_merge_user_prompt": "",
  807. "github_merge_failed_error": "",
  808. "github_no_master_branch_error": "",
  809. "github_private_description": "",
  810. "github_public_description": "",
  811. "github_repository_diverged": "",
  812. "github_symlink_error": "",
  813. "github_sync": "",
  814. "github_sync_description": "",
  815. "github_sync_error": "",
  816. "github_sync_repository_not_found_description": "",
  817. "github_timeout_error": "",
  818. "github_too_many_files_error": "",
  819. "github_validation_check": "",
  820. "github_workflow_authorize": "",
  821. "github_workflow_files_delete_github_repo": "",
  822. "github_workflow_files_error": "",
  823. "github_workflow_files_error_non_owner": "",
  824. "give-ai-consent": "",
  825. "give_feedback": "",
  826. "go_next_page": "",
  827. "go_page": "",
  828. "go_prev_page": "",
  829. "go_to_account_settings": "",
  830. "go_to_code_location": "",
  831. "go_to_code_location_in_pdf": "",
  832. "go_to_first_page": "",
  833. "go_to_last_page": "",
  834. "go_to_next_page": "",
  835. "go_to_overleaf": "",
  836. "go_to_pdf_location_in_code": "",
  837. "go_to_pdf_location_in_code_action": "",
  838. "go_to_previous_page": "",
  839. "go_to_settings": "",
  840. "go_to_subscriptions": "",
  841. "go_to_writefull": "",
  842. "good_news_you_already_purchased_this_add_on": "",
  843. "good_news_you_are_already_receiving_this_add_on_via_writefull": "",
  844. "group_admin": "",
  845. "group_audit_logs": "",
  846. "group_has_no_licenses_available_error": "",
  847. "group_invitations": "",
  848. "group_invite_has_been_sent_to_email": "",
  849. "group_libraries": "",
  850. "group_managed_by_group_administrator": "",
  851. "group_management": "",
  852. "group_managers": "",
  853. "group_members": "",
  854. "group_plan_tooltip": "",
  855. "group_plan_upgrade_description": "",
  856. "group_plan_with_name_tooltip": "",
  857. "group_settings": "",
  858. "group_sso_configuration_idp_metadata": "",
  859. "group_sso_configure_service_provider_in_idp": "",
  860. "group_sso_documentation_links": "",
  861. "group_subscription": "",
  862. "groups": "",
  863. "have_an_extra_backup": "",
  864. "have_more_days_to_try": "",
  865. "headers": "",
  866. "help": "",
  867. "help_articles_matching": "",
  868. "help_editor_settings": "",
  869. "help_improve_group_audit_logs": "",
  870. "help_improve_overleaf_fill_out_this_survey": "",
  871. "help_improve_screen_reader_fill_out_this_survey": "",
  872. "hide": "",
  873. "hide_configuration": "",
  874. "hide_deleted_user": "",
  875. "hide_document_preamble": "",
  876. "hide_file_tree": "",
  877. "hide_local_file_contents": "",
  878. "hide_outline": "",
  879. "higher_ai_allowance": "",
  880. "history": "",
  881. "history_add_label": "",
  882. "history_are_you_sure_delete_label": "",
  883. "history_compare_from_this_version": "",
  884. "history_compare_up_to_this_version": "",
  885. "history_delete_label": "",
  886. "history_download_this_version": "",
  887. "history_entry_origin_dropbox": "",
  888. "history_entry_origin_git": "",
  889. "history_entry_origin_github": "",
  890. "history_entry_origin_upload": "",
  891. "history_label_created_by": "",
  892. "history_label_project_current_state": "",
  893. "history_label_this_version": "",
  894. "history_new_label_name": "",
  895. "history_resync": "",
  896. "history_view_a11y_description": "",
  897. "history_view_all": "",
  898. "history_view_labels": "",
  899. "home": "",
  900. "hotkey_add_a_comment": "",
  901. "hotkey_autocomplete_menu": "",
  902. "hotkey_beginning_of_document": "",
  903. "hotkey_bold_text": "",
  904. "hotkey_compile": "",
  905. "hotkey_delete_current_line": "",
  906. "hotkey_end_of_document": "",
  907. "hotkey_find_and_replace": "",
  908. "hotkey_go_to_line": "",
  909. "hotkey_indent_selection": "",
  910. "hotkey_insert_candidate": "",
  911. "hotkey_italic_text": "",
  912. "hotkey_redo": "",
  913. "hotkey_search_references": "",
  914. "hotkey_select_all": "",
  915. "hotkey_select_candidate": "",
  916. "hotkey_to_lowercase": "",
  917. "hotkey_to_uppercase": "",
  918. "hotkey_toggle_comment": "",
  919. "hotkey_toggle_review_panel": "",
  920. "hotkey_toggle_track_changes": "",
  921. "hotkey_undo": "",
  922. "hotkeys": "",
  923. "how_it_works": "",
  924. "how_many_licenses_do_you_want_to_buy": "",
  925. "how_to_create_tables": "",
  926. "how_to_insert_images": "",
  927. "how_we_use_your_data": "",
  928. "how_we_use_your_data_explanation": "",
  929. "html_export_feedback_message": "",
  930. "i_confirm_am_student": "",
  931. "i_want_to_add_a_po_number": "",
  932. "i_want_to_stay": "",
  933. "id": "",
  934. "if_personal_account_you_should_change_your_email_address": "",
  935. "if_you_find_any_issues_with_texlive": "",
  936. "if_you_need_to_customize_your_table_further_you_can": "",
  937. "if_you_need_to_delete_your_writefull_account": "",
  938. "if_you_want_more_than_x_licenses_on_your_plan_we_need_to_add_them_for_you": "",
  939. "if_you_want_to_reduce_the_number_of_licenses_please_contact_support": "",
  940. "if_your_occupation_not_listed_type_full_name": "",
  941. "ignore_validation_errors": "",
  942. "ill_take_it": "",
  943. "image_file": "",
  944. "image_url": "",
  945. "image_width": "",
  946. "import_a_bibtex_file_from_your_provider_account": "",
  947. "import_document_description": "",
  948. "import_existing_projects_from_github": "",
  949. "import_from_github": "",
  950. "import_idp_metadata": "",
  951. "import_markdown_file": "",
  952. "import_to_sharelatex": "",
  953. "import_word_document": "",
  954. "imported_from_another_project_at_date": "",
  955. "imported_from_external_provider_at_date": "",
  956. "imported_from_mendeley_at_date": "",
  957. "imported_from_papers_at_date": "",
  958. "imported_from_the_output_of_another_project_at_date": "",
  959. "imported_from_zotero_at_date": "",
  960. "importing": "",
  961. "importing_and_merging_changes_in_github": "",
  962. "in_order_to_match_institutional_metadata_2": "",
  963. "in_order_to_match_institutional_metadata_associated": "",
  964. "inactive": "",
  965. "include_caption": "",
  966. "include_label": "",
  967. "include_results_from_your_reference_manager": "",
  968. "include_results_from_your_x_account": "",
  969. "include_the_error_message_and_ai_response": "",
  970. "included_as_part_of_your_writefull_subscription": "",
  971. "increase_indent": "",
  972. "increased_ai_allowance": "",
  973. "increased_compile_timeout": "",
  974. "info": "",
  975. "inline": "",
  976. "inline_math": "",
  977. "inr_discount_modal_info": "",
  978. "inr_discount_modal_title": "",
  979. "insert": "",
  980. "insert_citation": "",
  981. "insert_column_left": "",
  982. "insert_column_right": "",
  983. "insert_cross_reference": "",
  984. "insert_display_math": "",
  985. "insert_figure": "",
  986. "insert_figure_from_another_project": "",
  987. "insert_figure_from_computer": "",
  988. "insert_figure_from_project_files": "",
  989. "insert_figure_from_url": "",
  990. "insert_from_another_project": "",
  991. "insert_from_project_files": "",
  992. "insert_from_url": "",
  993. "insert_image": "",
  994. "insert_inline_math": "",
  995. "insert_link": "",
  996. "insert_row_above": "",
  997. "insert_row_below": "",
  998. "insert_table": "",
  999. "insert_x_columns_left": "",
  1000. "insert_x_columns_right": "",
  1001. "insert_x_rows_above": "",
  1002. "insert_x_rows_below": "",
  1003. "institution": "",
  1004. "institution_account": "",
  1005. "institution_acct_successfully_linked_2": "",
  1006. "institution_and_role": "",
  1007. "institution_has_overleaf_subscription": "",
  1008. "institution_templates": "",
  1009. "integrations": "",
  1010. "integrations_like_github": "",
  1011. "interested_in_cheaper_personal_plan": "",
  1012. "invalid_confirmation_code": "",
  1013. "invalid_email": "",
  1014. "invalid_file_name": "",
  1015. "invalid_filename": "",
  1016. "invalid_organization_email": "",
  1017. "invalid_password_contains_email": "",
  1018. "invalid_password_too_similar": "",
  1019. "invalid_regular_expression": "",
  1020. "invalid_request": "",
  1021. "invalid_tax_id_number": "",
  1022. "invalid_upload_request": "",
  1023. "invert_pdf_preview_colors": "",
  1024. "invert_pdf_preview_colors_when_in_dark_mode": "",
  1025. "invitations_sent": "",
  1026. "invite": "",
  1027. "invite_expired": "",
  1028. "invite_group_members": "",
  1029. "invite_more_collabs": "",
  1030. "invite_more_members": "",
  1031. "invite_not_accepted": "",
  1032. "invite_resend_limit_hit": "",
  1033. "invite_resent": "",
  1034. "invite_revoked": "",
  1035. "invite_users": "",
  1036. "invited_people": "",
  1037. "invited_to_group": "",
  1038. "invited_to_group_have_individual_subcription": "",
  1039. "inviting": "",
  1040. "ip_address": "",
  1041. "is_email_affiliated": "",
  1042. "issued_on": "",
  1043. "it_looks_like_that_didnt_work_you_can_try_again_or_get_in_touch": "",
  1044. "it_looks_like_your_account_is_billed_manually_purchasing_additional_license_or_upgrading_subscription": "",
  1045. "it_looks_like_your_account_is_billed_manually_upgrading_subscription": "",
  1046. "it_looks_like_your_payment_details_are_missing_please_update_your_billing_information": "",
  1047. "italics": "",
  1048. "join_beta_program": "",
  1049. "join_group": "",
  1050. "join_now": "",
  1051. "join_overleaf_labs": "",
  1052. "join_project": "",
  1053. "join_project_lowercase": "",
  1054. "join_team_explanation": "",
  1055. "join_x_enterprise_group": "",
  1056. "join_x_managed_enterprise_group": "",
  1057. "joined_team": "",
  1058. "joining": "",
  1059. "jump_to_location_in_pdf": "",
  1060. "justify": "",
  1061. "kb_suggestions_enquiry": "",
  1062. "keep_current_plan": "",
  1063. "keep_personal_projects_separate": "",
  1064. "keep_your_account_safe_add_another_email": "",
  1065. "keybindings": "",
  1066. "keyboard_shortcuts": "",
  1067. "knowledge_base": "",
  1068. "labels_help_you_to_easily_reference_your_figures": "",
  1069. "labels_help_you_to_reference_your_tables": "",
  1070. "labs_ongoing_experiments": "",
  1071. "labs_settings": "",
  1072. "language": "",
  1073. "language_model_gpt_any_language": "",
  1074. "language_model_gpt_any_language_description": "",
  1075. "language_model_gpt_custom_prompt": "",
  1076. "language_model_gpt_custom_prompt_description": "",
  1077. "language_model_writefull_english": "",
  1078. "language_model_writefull_english_description": "",
  1079. "language_suggestion_actions": "",
  1080. "language_suggestions": "",
  1081. "last_active": "",
  1082. "last_active_description": "",
  1083. "last_edit": "",
  1084. "last_logged_in": "",
  1085. "last_modified": "",
  1086. "last_name": "",
  1087. "last_resort_trouble_shooting_guide": "",
  1088. "last_suggested_fix": "",
  1089. "last_updated_date_by_x": "",
  1090. "last_used": "",
  1091. "last_verification_attempt": "",
  1092. "last_verified": "",
  1093. "latam_discount_modal_info": "",
  1094. "latam_discount_modal_title": "",
  1095. "latex_places_figures_according_to_a_special_algorithm": "",
  1096. "latex_places_tables_according_to_a_special_algorithm": "",
  1097. "layout_options": "",
  1098. "learn_more": "",
  1099. "learn_more_about": "",
  1100. "learn_more_about_account": "",
  1101. "learn_more_about_email_reconfirmation": "",
  1102. "learn_more_about_link_sharing": "",
  1103. "learn_more_about_managed_users": "",
  1104. "learn_more_about_roles_permissions": "",
  1105. "leave": "",
  1106. "leave_any_group_subscriptions": "",
  1107. "leave_group": "",
  1108. "leave_now": "",
  1109. "leave_project": "",
  1110. "leave_projects": "",
  1111. "left": "",
  1112. "legacy_themes": "",
  1113. "length_unit": "",
  1114. "let_us_know": "",
  1115. "let_us_know_how_we_can_help": "",
  1116. "let_us_know_what_you_think": "",
  1117. "lets_get_those_premium_features": "",
  1118. "lets_get_you_set_up": "",
  1119. "library": "",
  1120. "library_in_labs": "",
  1121. "license": "",
  1122. "license_allocated": "",
  1123. "license_not_allocated": "",
  1124. "licenses": "",
  1125. "light_themes": "",
  1126. "limited_document_history": "",
  1127. "limited_to_n_collaborators_per_project": "",
  1128. "limited_to_n_collaborators_per_project_plural": "",
  1129. "line_width_is_the_width_of_the_line_in_the_current_environment": "",
  1130. "link": "",
  1131. "link_account": "",
  1132. "link_accounts": "",
  1133. "link_accounts_and_add_email": "",
  1134. "link_copied": "",
  1135. "link_institutional_email_get_started": "",
  1136. "link_sharing": "",
  1137. "link_sharing_is_off_short": "",
  1138. "link_sharing_is_on": "",
  1139. "link_to_github": "",
  1140. "link_to_github_description": "",
  1141. "link_to_mendeley": "",
  1142. "link_to_papers": "",
  1143. "link_to_zotero": "",
  1144. "link_to_zotero_mendeley_papers_to_see_search_results_from_your_libraries_without_importing_files": "",
  1145. "linked_accounts": "",
  1146. "linked_collabratec_description": "",
  1147. "linked_file": "",
  1148. "load_domains_failed": "",
  1149. "loading": "",
  1150. "loading_github_repositories": "",
  1151. "loading_prices": "",
  1152. "loading_python_runtime": "",
  1153. "loading_recent_github_commits": "",
  1154. "loading_references": "",
  1155. "log_entry_description": "",
  1156. "log_entry_maximum_entries": "",
  1157. "log_entry_maximum_entries_enable_stop_on_first_error": "",
  1158. "log_entry_maximum_entries_see_full_logs": "",
  1159. "log_entry_maximum_entries_title": "",
  1160. "log_hint_extra_info": "",
  1161. "log_in": "",
  1162. "log_in_with_primary_email_address": "",
  1163. "log_out": "",
  1164. "log_out_lowercase_dot": "",
  1165. "log_viewer_error": "",
  1166. "logging_in_or_managing_your_account": "",
  1167. "login_count": "",
  1168. "login_to_accept_invitation": "",
  1169. "login_with_service": "",
  1170. "logs_and_output_files": "",
  1171. "looking_multiple_licenses": "",
  1172. "looks_like_youre_at": "",
  1173. "lost_connection": "",
  1174. "main_bibliography_file_for_this_project": "",
  1175. "main_document": "",
  1176. "main_file_not_found": "",
  1177. "main_text": "",
  1178. "make_a_copy": "",
  1179. "make_email_primary_description": "",
  1180. "make_owner": "",
  1181. "make_primary": "",
  1182. "make_private": "",
  1183. "manage_access": "",
  1184. "manage_beta_program_membership": "",
  1185. "manage_email_preferences": "",
  1186. "manage_files_from_your_dropbox_folder": "",
  1187. "manage_group_members_subtext": "",
  1188. "manage_group_settings": "",
  1189. "manage_group_settings_subtext": "",
  1190. "manage_group_settings_subtext_group_sso": "",
  1191. "manage_group_settings_subtext_managed_users": "",
  1192. "manage_group_sharing_permissions_subtext": "",
  1193. "manage_institution_managers": "",
  1194. "manage_managers_subtext": "",
  1195. "manage_newsletter": "",
  1196. "manage_overleaf_email_preferences": "",
  1197. "manage_publisher_managers": "",
  1198. "manage_sessions": "",
  1199. "manage_subscription": "",
  1200. "manage_tag": "",
  1201. "manage_template": "",
  1202. "manage_users_subtext": "",
  1203. "manage_your_ai_assist_add_on": "",
  1204. "manage_your_references_across_projects": "",
  1205. "managed": "",
  1206. "managed_user_accounts": "",
  1207. "managed_user_invite_has_been_sent_to_email": "",
  1208. "managed_users": "",
  1209. "managed_users_explanation": "",
  1210. "managed_users_is_enabled": "",
  1211. "managed_users_terms": "",
  1212. "manager": "",
  1213. "managers_management": "",
  1214. "managing_your_subscription": "",
  1215. "markdown_export_feedback_message": "",
  1216. "markdown_import_feedback_message": "",
  1217. "marked_as_resolved": "",
  1218. "math": "",
  1219. "math_display": "",
  1220. "math_inline": "",
  1221. "max_ai_allowance": "",
  1222. "maximum_files_uploaded_together": "",
  1223. "maybe_later": "",
  1224. "member": "",
  1225. "members_added": "",
  1226. "members_management": "",
  1227. "mendeley": "",
  1228. "mendeley_dynamic_sync_description": "",
  1229. "mendeley_groups_loading_error": "",
  1230. "mendeley_groups_relink": "",
  1231. "mendeley_integration": "",
  1232. "mendeley_is_premium": "",
  1233. "mendeley_reference_loading_error": "",
  1234. "mendeley_reference_loading_error_expired": "",
  1235. "mendeley_reference_loading_error_forbidden": "",
  1236. "mendeley_sync_description": "",
  1237. "mendeley_upgrade_prompt_content": "",
  1238. "mendeley_upgrade_prompt_title": "",
  1239. "menu": "",
  1240. "merge_cells": "",
  1241. "message_received": "",
  1242. "missing_field_for_entry": "",
  1243. "missing_fields_for_entry": "",
  1244. "missing_payment_details": "",
  1245. "model": "",
  1246. "money_back_guarantee": "",
  1247. "month": "",
  1248. "month_plural": "",
  1249. "monthly": "",
  1250. "more": "",
  1251. "more_actions": "",
  1252. "more_collabs_per_project": "",
  1253. "more_comments": "",
  1254. "more_compile_time": "",
  1255. "more_editor_toolbar_item": "",
  1256. "more_info": "",
  1257. "more_options": "",
  1258. "move_to_the_left": "",
  1259. "move_to_the_right": "",
  1260. "my_library": "",
  1261. "n_items": "",
  1262. "n_items_plural": "",
  1263. "n_more_collaborators": "",
  1264. "n_more_collaborators_plural": "",
  1265. "n_more_updates_above": "",
  1266. "n_more_updates_above_plural": "",
  1267. "n_more_updates_below": "",
  1268. "n_more_updates_below_plural": "",
  1269. "name": "",
  1270. "name_usage_explanation": "",
  1271. "navigation": "",
  1272. "need_anything_contact_us_at": "",
  1273. "need_contact_group_admin_to_make_changes": "",
  1274. "need_make_changes": "",
  1275. "need_more_than_x_licenses": "",
  1276. "need_to_add_new_primary_before_remove": "",
  1277. "need_to_leave": "",
  1278. "neither_agree_nor_disagree": "",
  1279. "new": "",
  1280. "new_compile_domain_notice": "",
  1281. "new_compiles_in_this_project_will_automatically_use_the_newest_version": "",
  1282. "new_file": "",
  1283. "new_folder": "",
  1284. "new_name": "",
  1285. "new_password": "",
  1286. "new_project": "",
  1287. "new_reference": "",
  1288. "new_reference_plural": "",
  1289. "new_subscription_will_be_billed_immediately": "",
  1290. "new_tag": "",
  1291. "new_tag_name": "",
  1292. "newsletter": "",
  1293. "newsletter_info_note": "",
  1294. "newsletter_info_subscribed": "",
  1295. "newsletter_info_summary": "",
  1296. "newsletter_info_title": "",
  1297. "newsletter_info_unsubscribed": "",
  1298. "newsletter_onboarding_accept": "",
  1299. "next": "",
  1300. "next_page": "",
  1301. "next_payment_of_x_collectected_on_y": "",
  1302. "next_suggestion": "",
  1303. "no_actions": "",
  1304. "no_add_on_purchase_while_paused": "",
  1305. "no_audit_logs_found": "",
  1306. "no_borders": "",
  1307. "no_caption": "",
  1308. "no_comments_or_suggestions": "",
  1309. "no_existing_password": "",
  1310. "no_folder": "",
  1311. "no_image_files_found": "",
  1312. "no_libraries_selected": "",
  1313. "no_members": "",
  1314. "no_messages_yet": "",
  1315. "no_new_commits_in_github": "",
  1316. "no_one_has_commented_or_left_any_suggestions_yet": "",
  1317. "no_one_sharing_link_is_disabled": "",
  1318. "no_other_projects_found": "",
  1319. "no_pdf_error_explanation": "",
  1320. "no_pdf_error_reason_no_content": "",
  1321. "no_pdf_error_reason_output_pdf_already_exists": "",
  1322. "no_pdf_error_reason_unrecoverable_error": "",
  1323. "no_pdf_error_title": "",
  1324. "no_personal_access_tokens": "",
  1325. "no_preview_available": "",
  1326. "no_project_notifications_description": "",
  1327. "no_projects": "",
  1328. "no_resolved_comments": "",
  1329. "no_results_found": "",
  1330. "no_search_results": "",
  1331. "no_selection_select_file": "",
  1332. "no_symbols_found": "",
  1333. "no_thanks_cancel_now": "",
  1334. "non_blinking_cursor": "",
  1335. "normal": "",
  1336. "normally_x_price_per_month": "",
  1337. "normally_x_price_per_year": "",
  1338. "not_a_student": "",
  1339. "not_managed": "",
  1340. "not_now": "",
  1341. "notification": "",
  1342. "notification_personal_and_group_subscriptions": "",
  1343. "notification_project_invite_accepted_message": "",
  1344. "notification_project_invite_message": "",
  1345. "number_of_users": "",
  1346. "numbered_list": "",
  1347. "oauth_orcid_description": "",
  1348. "of": "",
  1349. "off": "",
  1350. "official": "",
  1351. "ok": "",
  1352. "ok_continue_to_project": "",
  1353. "ok_join_project": "",
  1354. "on": "",
  1355. "on_free_plan_upgrade_to_access_features": "",
  1356. "one_step_away_from_professional_features": "",
  1357. "only_add_people_who_dont_yet_have_access": "",
  1358. "only_group_admin_or_managers_can_delete_your_account_1": "",
  1359. "only_group_admin_or_managers_can_delete_your_account_10": "",
  1360. "only_group_admin_or_managers_can_delete_your_account_3": "",
  1361. "only_group_admin_or_managers_can_delete_your_account_6": "",
  1362. "only_group_admin_or_managers_can_delete_your_account_7": "",
  1363. "only_group_admin_or_managers_can_delete_your_account_9": "",
  1364. "only_importer_can_refresh": "",
  1365. "only_invited_people": "",
  1366. "only_project_owner_can_link_github": "",
  1367. "open_action_menu": "",
  1368. "open_advanced_reference_search": "",
  1369. "open_each_file_in_its_own_tab": "",
  1370. "open_file": "",
  1371. "open_files_in_tabs": "",
  1372. "open_link": "",
  1373. "open_path": "",
  1374. "open_pdf_in_separate_tab": "",
  1375. "open_project": "",
  1376. "open_settings": "",
  1377. "open_target": "",
  1378. "optional": "",
  1379. "or": "",
  1380. "or_enable_clipboard_access_in_your_browser_settings": "",
  1381. "organization_name": "",
  1382. "organize_tags": "",
  1383. "other": "",
  1384. "other_logs_and_files": "",
  1385. "other_output_files": "",
  1386. "our_ai_features_combine_tools_from_overleaf_and_writefull_to_help_you_write_faster_smarter_and_with_confidence_learn_more_about_ai": "",
  1387. "our_team_will_get_back_to_you_shortly": "",
  1388. "out_of_sync": "",
  1389. "out_of_sync_detail": "",
  1390. "output_file": "",
  1391. "overall_theme": "",
  1392. "overleaf": "",
  1393. "overleaf_history_system": "",
  1394. "overleaf_is_easy_to_use": "",
  1395. "overleaf_labs": "",
  1396. "overleaf_learning_center": "",
  1397. "overleaf_logo": "",
  1398. "overleafs_functionality_meets_my_needs": "",
  1399. "overview": "",
  1400. "overwrite": "",
  1401. "overwriting_the_original_folder": "",
  1402. "owned_by_x": "",
  1403. "owner": "",
  1404. "page_current": "",
  1405. "page_x_of_n": "",
  1406. "pagination_navigation": "",
  1407. "papers": "",
  1408. "papers_dynamic_sync_description": "",
  1409. "papers_groups_loading_error": "",
  1410. "papers_groups_relink": "",
  1411. "papers_integration": "",
  1412. "papers_is_premium": "",
  1413. "papers_reference_loading_error": "",
  1414. "papers_reference_loading_error_expired": "",
  1415. "papers_reference_loading_error_forbidden": "",
  1416. "papers_sync_description": "",
  1417. "papers_upgrade_prompt_content": "",
  1418. "papers_upgrade_prompt_title": "",
  1419. "paragraph_styles": "",
  1420. "partial_outline_warning": "",
  1421. "password": "",
  1422. "password_managed_externally": "",
  1423. "password_was_detected_on_a_public_list_of_known_compromised_passwords": "",
  1424. "paste": "",
  1425. "paste_bibtex_or_dois_here": "",
  1426. "paste_options": "",
  1427. "paste_references": "",
  1428. "paste_with_formatting": "",
  1429. "paste_without_formatting": "",
  1430. "pause_subscription": "",
  1431. "pause_subscription_for": "",
  1432. "pay_now": "",
  1433. "payment_error_3ds_failed": "",
  1434. "payment_error_generic": "",
  1435. "payment_error_intermittent_error": "",
  1436. "payment_error_invalid_payment_method": "",
  1437. "payment_error_update_payment_method": "",
  1438. "payment_error_update_payment_method_checkout": "",
  1439. "payment_provider_unreachable_error": "",
  1440. "payment_summary": "",
  1441. "pdf": "",
  1442. "pdf_compile_in_progress_error": "",
  1443. "pdf_compile_rate_limit_hit": "",
  1444. "pdf_compile_try_again": "",
  1445. "pdf_only": "",
  1446. "pdf_preview": "",
  1447. "pdf_preview_error": "",
  1448. "pdf_rendering_error": "",
  1449. "pdf_unavailable_for_download": "",
  1450. "pdf_viewer": "",
  1451. "pdf_viewer_error": "",
  1452. "pdf_zoom_level": "",
  1453. "pending": "",
  1454. "pending_additional_licenses": "",
  1455. "pending_addon_cancellation": "",
  1456. "pending_invite": "",
  1457. "pending_subscription_message": "",
  1458. "per_license": "",
  1459. "per_month": "",
  1460. "per_month_x_annually": "",
  1461. "per_year": "",
  1462. "percent_is_the_percentage_of_the_line_width": "",
  1463. "permanently_disables_the_preview": "",
  1464. "personal_library": "",
  1465. "pick_up_where_you_left_off": "",
  1466. "plan": "",
  1467. "plan_tooltip": "",
  1468. "please_ask_the_project_owner_to_upgrade_more_collaborators": "",
  1469. "please_ask_the_project_owner_to_upgrade_to_track_changes": "",
  1470. "please_change_primary_to_remove": "",
  1471. "please_compile_pdf_before_download": "",
  1472. "please_confirm_primary_email_or_edit": "",
  1473. "please_confirm_secondary_email_or_edit": "",
  1474. "please_confirm_your_email_before_making_it_default": "",
  1475. "please_contact_support_to_makes_change_to_your_plan": "",
  1476. "please_enter_confirmation_code": "",
  1477. "please_get_in_touch": "",
  1478. "please_link_before_making_primary": "",
  1479. "please_provide_a_message": "",
  1480. "please_provide_a_subject": "",
  1481. "please_provide_a_valid_email_address": "",
  1482. "please_reconfirm_institutional_email": "",
  1483. "please_reconfirm_your_affiliation_before_making_this_primary": "",
  1484. "please_refresh": "",
  1485. "please_remove_all_emails": "",
  1486. "please_select": "",
  1487. "please_select_a_file": "",
  1488. "please_select_a_project": "",
  1489. "please_select_an_output_file": "",
  1490. "please_set_main_file": "",
  1491. "please_wait": "",
  1492. "plus_additional_collaborators_and_more": "",
  1493. "plus_more": "",
  1494. "plus_x_additional_licenses_for_a_total_of_y_licenses": "",
  1495. "po_number": "",
  1496. "po_number_can_include_digits_and_letters_only": "",
  1497. "po_number_must_not_exceed_x_characters": "",
  1498. "po_number_must_not_exceed_x_characters_plural": "",
  1499. "postal_code": "",
  1500. "powered_by_digital_science": "",
  1501. "premium": "",
  1502. "premium_feature": "",
  1503. "premium_plan_label": "",
  1504. "preparing_for_export": "",
  1505. "presentation_mode": "",
  1506. "press_shift_space_for_suggestions": "",
  1507. "press_space_to_open_the_ai_assistant": "",
  1508. "preview": "",
  1509. "preview_editor_tabs": "",
  1510. "previous_page": "",
  1511. "previous_suggestion": "",
  1512. "price": "",
  1513. "primarily_work_study_question": "",
  1514. "primarily_work_study_question_company": "",
  1515. "primarily_work_study_question_government": "",
  1516. "primarily_work_study_question_nonprofit_ngo": "",
  1517. "primarily_work_study_question_other": "",
  1518. "primarily_work_study_question_university_school": "",
  1519. "primary": "",
  1520. "primary_certificate": "",
  1521. "priority_support": "",
  1522. "privacy_and_terms": "",
  1523. "private": "",
  1524. "pro": "",
  1525. "problem_talking_to_publishing_service": "",
  1526. "problem_with_subscription_contact_us": "",
  1527. "proceed_to_paypal": "",
  1528. "proceeding_to_paypal_takes_you_to_the_paypal_site_to_pay": "",
  1529. "processing": "",
  1530. "processing_uppercase": "",
  1531. "progress_bar_percentage": "",
  1532. "project_access": "",
  1533. "project_actions": "",
  1534. "project_approaching_file_limit": "",
  1535. "project_categories_tags": "",
  1536. "project_figure_modal": "",
  1537. "project_files_history": "",
  1538. "project_flagged_too_many_compiles": "",
  1539. "project_has_too_many_files_limit": "",
  1540. "project_history_labels": "",
  1541. "project_last_published_at": "",
  1542. "project_linked_to": "",
  1543. "project_name": "",
  1544. "project_not_linked_to_github": "",
  1545. "project_notifications": "",
  1546. "project_notifications_muted_description": "",
  1547. "project_ownership_transfer_confirmation_1": "",
  1548. "project_ownership_transfer_confirmation_2": "",
  1549. "project_renamed_or_deleted": "",
  1550. "project_renamed_or_deleted_detail": "",
  1551. "project_search": "",
  1552. "project_search_file_count": "",
  1553. "project_search_file_count_plural": "",
  1554. "project_search_result_count": "",
  1555. "project_search_result_count_plural": "",
  1556. "project_synchronisation": "",
  1557. "project_timed_out_enable_stop_on_first_error": "",
  1558. "project_timed_out_fatal_error": "",
  1559. "project_timed_out_intro": "",
  1560. "project_timed_out_learn_more": "",
  1561. "project_timed_out_optimize_images": "",
  1562. "project_title_options": "",
  1563. "project_too_large": "",
  1564. "project_too_large_please_reduce": "",
  1565. "project_too_much_editable_text": "",
  1566. "project_url": "",
  1567. "projects": "",
  1568. "projects_count": "",
  1569. "projects_list": "",
  1570. "provide_details_of_your_sso_configuration": "",
  1571. "public": "",
  1572. "publish": "",
  1573. "publish_as_template": "",
  1574. "publisher_account": "",
  1575. "publishing": "",
  1576. "pull_github_changes_into_sharelatex": "",
  1577. "push_sharelatex_changes_to_github": "",
  1578. "push_to_github_pull_to_overleaf": "",
  1579. "quoted_text": "",
  1580. "raw_logs": "",
  1581. "raw_logs_description": "",
  1582. "reactivate": "",
  1583. "reactivate_add_on_failed": "",
  1584. "reactivate_subscription": "",
  1585. "reactivating": "",
  1586. "read_lines_from_path": "",
  1587. "read_more": "",
  1588. "read_only_dropbox_sync_message": "",
  1589. "read_only_token": "",
  1590. "read_write_token": "",
  1591. "ready_to_join_x": "",
  1592. "ready_to_join_x_in_group_y": "",
  1593. "ready_to_set_up": "",
  1594. "realtime_track_changes": "",
  1595. "reauthorize_github_account": "",
  1596. "recaptcha_conditions": "",
  1597. "recent_commits_in_github": "",
  1598. "recommended": "",
  1599. "recompile": "",
  1600. "recompile_from_scratch": "",
  1601. "recompile_pdf": "",
  1602. "reconfirm_secondary_email": "",
  1603. "reconfirming": "",
  1604. "reconnect": "",
  1605. "reconnecting": "",
  1606. "reconnecting_in_x_secs": "",
  1607. "recovering": "",
  1608. "recurly_email_update_needed": "",
  1609. "recurly_email_updated": "",
  1610. "redirect_to_editor": "",
  1611. "redirect_url": "",
  1612. "redo": "",
  1613. "reduce_costs_group_licenses": "",
  1614. "reduces_visual_distraction_by_keeping_the_cursor_solid": "",
  1615. "reference_error_relink_hint": "",
  1616. "reference_manager_linked": "",
  1617. "reference_manager_lowercase": "",
  1618. "reference_manager_searched_groups": "",
  1619. "reference_manager_unlinked": "",
  1620. "reference_managers": "",
  1621. "reference_search": "",
  1622. "reference_search_setting": "",
  1623. "reference_search_settings": "",
  1624. "reference_search_style": "",
  1625. "reference_sync": "",
  1626. "references_from_these_libraries_will_be_included_in_your_reference_search_results": "",
  1627. "refresh": "",
  1628. "refresh_page_after_linking_dropbox": "",
  1629. "refresh_page_after_starting_free_trial": "",
  1630. "refreshing": "",
  1631. "refund_with_description": "",
  1632. "regards": "",
  1633. "registering": "",
  1634. "reject": "",
  1635. "reject_change": "",
  1636. "reject_selected_changes": "",
  1637. "reject_suggestion": "",
  1638. "relink_your_account": "",
  1639. "reload_editor": "",
  1640. "remind_before_trial_ends": "",
  1641. "remote_service_error": "",
  1642. "remove": "",
  1643. "remove_access": "",
  1644. "remove_domain": "",
  1645. "remove_domain_success": "",
  1646. "remove_domain_verification": "",
  1647. "remove_domain_verification_explanation": "",
  1648. "remove_domain_verification_type_to_confirm": "",
  1649. "remove_from_group": "",
  1650. "remove_link": "",
  1651. "remove_manager": "",
  1652. "remove_or_replace_figure": "",
  1653. "remove_original_links": "",
  1654. "remove_original_sharing_links": "",
  1655. "remove_secondary_email_addresses": "",
  1656. "remove_secondary_email_addresses_except_saml_email": "",
  1657. "remove_sso_login_option": "",
  1658. "remove_tag": "",
  1659. "remove_user": "",
  1660. "remove_your_organization_email_from_this_account": "",
  1661. "removed_from_project": "",
  1662. "removing": "",
  1663. "rename": "",
  1664. "rename_project": "",
  1665. "renews_on": "",
  1666. "reopen": "",
  1667. "reopen_comment_error_message": "",
  1668. "reopen_comment_error_title": "",
  1669. "replace_figure": "",
  1670. "replace_from_another_project": "",
  1671. "replace_from_computer": "",
  1672. "replace_from_project_files": "",
  1673. "replace_from_url": "",
  1674. "replies_to_your_activity_only": "",
  1675. "replies_to_your_activity_only_description": "",
  1676. "reply": "",
  1677. "repository_name": "",
  1678. "repository_visibility": "",
  1679. "republish": "",
  1680. "resend": "",
  1681. "resend_confirmation_code": "",
  1682. "resend_group_invite": "",
  1683. "resend_invite": "",
  1684. "resend_link_sso": "",
  1685. "resend_managed_user_invite": "",
  1686. "resending_confirmation_code": "",
  1687. "resize": "",
  1688. "resolve_comment": "",
  1689. "resolve_comment_error_message": "",
  1690. "resolve_comment_error_title": "",
  1691. "resolved_comments": "",
  1692. "restore": "",
  1693. "restore_file": "",
  1694. "restore_file_confirmation_message": "",
  1695. "restore_file_confirmation_title": "",
  1696. "restore_file_error_message": "",
  1697. "restore_file_error_title": "",
  1698. "restore_file_version": "",
  1699. "restore_project_to_this_version": "",
  1700. "restore_this_version": "",
  1701. "restoring": "",
  1702. "resync_completed": "",
  1703. "resync_message": "",
  1704. "resync_project_history": "",
  1705. "resyncing": "",
  1706. "retry_domain_verification": "",
  1707. "retry_test": "",
  1708. "reverse_x_sort_order": "",
  1709. "revert_pending_plan_change": "",
  1710. "review": "",
  1711. "review_panel": "",
  1712. "reviewer": "",
  1713. "reviewer_dropbox_sync_message": "",
  1714. "reviewing": "",
  1715. "revoke": "",
  1716. "revoke_invite": "",
  1717. "revoke_license": "",
  1718. "right": "",
  1719. "role": "",
  1720. "run": "",
  1721. "run_current_script_to_see_output": "",
  1722. "run_python_code": "",
  1723. "saml_auth_error": "",
  1724. "saml_commons_reconfirmation_unable_to_find_user": "",
  1725. "saml_email_not_in_account_error_managed_users_2": "",
  1726. "saml_identity_exists_error": "",
  1727. "saml_invalid_signature_error": "",
  1728. "saml_login_disabled_error": "",
  1729. "saml_login_failure": "",
  1730. "saml_login_identity_mismatch_error": "",
  1731. "saml_login_identity_not_found_error": "",
  1732. "saml_metadata": "",
  1733. "saml_missing_signature_error": "",
  1734. "saml_request_denied_error": "",
  1735. "saml_response": "",
  1736. "save": "",
  1737. "save_20_percent": "",
  1738. "save_or_cancel-cancel": "",
  1739. "save_or_cancel-or": "",
  1740. "save_or_cancel-save": "",
  1741. "save_x_or_more": "",
  1742. "saved": "",
  1743. "saving": "",
  1744. "saving_notification_with_seconds": "",
  1745. "scope": "",
  1746. "search": "",
  1747. "search_all_project_files": "",
  1748. "search_bib_files": "",
  1749. "search_by_author_journal_title_and_more_link_to_zotero_mendeley_papers": "",
  1750. "search_by_citation_key_author_journal_title_year_and_date": "",
  1751. "search_by_citekey_author_year_title": "",
  1752. "search_command_find": "",
  1753. "search_command_replace": "",
  1754. "search_in_all_projects": "",
  1755. "search_in_archived_projects": "",
  1756. "search_in_library": "",
  1757. "search_in_shared_projects": "",
  1758. "search_in_trashed_projects": "",
  1759. "search_in_your_projects": "",
  1760. "search_match_case": "",
  1761. "search_members": "",
  1762. "search_next": "",
  1763. "search_only_the_bib_files_in_your_project_only_by_citekeys": "",
  1764. "search_previous": "",
  1765. "search_project": "",
  1766. "search_projects": "",
  1767. "search_references": "",
  1768. "search_regexp": "",
  1769. "search_replace": "",
  1770. "search_replace_all": "",
  1771. "search_replace_with": "",
  1772. "search_search_for": "",
  1773. "search_whole_word": "",
  1774. "search_within_selection": "",
  1775. "searched_path_for_lines_containing": "",
  1776. "security": "",
  1777. "see_suggestions_from_collaborators": "",
  1778. "see_your_current_location_in_the_project": "",
  1779. "select": "",
  1780. "select_a_column_or_a_merged_cell_to_align": "",
  1781. "select_a_column_to_adjust_column_width": "",
  1782. "select_a_file": "",
  1783. "select_a_file_figure_modal": "",
  1784. "select_a_group_optional": "",
  1785. "select_a_language": "",
  1786. "select_a_new_owner_for_projects": "",
  1787. "select_a_payment_method": "",
  1788. "select_a_project": "",
  1789. "select_a_project_figure_modal": "",
  1790. "select_a_row_or_a_column_to_delete": "",
  1791. "select_access_level": "",
  1792. "select_access_levels": "",
  1793. "select_all": "",
  1794. "select_all_entries": "",
  1795. "select_all_projects": "",
  1796. "select_an_output_file": "",
  1797. "select_an_output_file_figure_modal": "",
  1798. "select_bib_file": "",
  1799. "select_cells_in_a_single_row_to_merge": "",
  1800. "select_color": "",
  1801. "select_entry": "",
  1802. "select_entry_type_prompt": "",
  1803. "select_folder_from_project": "",
  1804. "select_from_output_files": "",
  1805. "select_from_project_files": "",
  1806. "select_from_source_files": "",
  1807. "select_from_your_computer": "",
  1808. "select_github_repository": "",
  1809. "select_image_from_project_files": "",
  1810. "select_project": "",
  1811. "select_projects": "",
  1812. "select_size": "",
  1813. "select_tag": "",
  1814. "select_tax_id_type": "",
  1815. "select_user": "",
  1816. "select_user_role": "",
  1817. "selected": "",
  1818. "selected_lowercase": "",
  1819. "selected_lowercase_plural": "",
  1820. "selection_deleted": "",
  1821. "send": "",
  1822. "send_confirmation_code": "",
  1823. "send_message": "",
  1824. "send_request": "",
  1825. "sending": "",
  1826. "sentence_completion": "",
  1827. "server_error": "",
  1828. "server_pro_license_entitlement_line_1": "",
  1829. "server_pro_license_entitlement_line_2": "",
  1830. "server_pro_license_entitlement_line_3": "",
  1831. "session_created_at": "",
  1832. "session_error": "",
  1833. "session_expired_redirecting_to_login": "",
  1834. "sessions": "",
  1835. "set_as_main_document": "",
  1836. "set_color": "",
  1837. "set_column_width": "",
  1838. "set_up_single_sign_on": "",
  1839. "set_up_sso": "",
  1840. "settings": "",
  1841. "setup_another_account_under_a_personal_email_address": "",
  1842. "share": "",
  1843. "share_feedback": "",
  1844. "share_project": "",
  1845. "share_project_name": "",
  1846. "shared_with_you": "",
  1847. "sharelatex_beta_program": "",
  1848. "sharing_permissions": "",
  1849. "shortcut_to_open_advanced_reference_search": "",
  1850. "show_all_projects": "",
  1851. "show_breadcrumbs": "",
  1852. "show_document_preamble": "",
  1853. "show_editor_tabs": "",
  1854. "show_equation_preview": "",
  1855. "show_file_tree": "",
  1856. "show_in_code": "",
  1857. "show_in_pdf": "",
  1858. "show_less": "",
  1859. "show_live_equation_previews_while_typing": "",
  1860. "show_local_file_contents": "",
  1861. "show_more": "",
  1862. "show_outline": "",
  1863. "show_version_history": "",
  1864. "show_x_more_projects": "",
  1865. "show_x_more_projects_plural": "",
  1866. "showing_pdf_preview_with_inverted_colors": "",
  1867. "showing_x_out_of_n_projects": "",
  1868. "showing_x_out_of_n_users": "",
  1869. "showing_x_results": "",
  1870. "showing_x_results_of_total": "",
  1871. "showing_x_results_of_total_plural": "",
  1872. "showing_x_results_plural": "",
  1873. "sidebar": "",
  1874. "sign_up": "",
  1875. "simple_search_mode": "",
  1876. "single_sign_on_sso": "",
  1877. "size": "",
  1878. "skip": "",
  1879. "skip_welcome_animation": "",
  1880. "some_dois_could_not_be_resolved": "",
  1881. "something_not_right": "",
  1882. "something_went_wrong": "",
  1883. "something_went_wrong_canceling_your_subscription": "",
  1884. "something_went_wrong_loading_pdf_viewer": "",
  1885. "something_went_wrong_processing_the_request": "",
  1886. "something_went_wrong_rendering_pdf": "",
  1887. "something_went_wrong_rendering_pdf_expected": "",
  1888. "something_went_wrong_server": "",
  1889. "somethings_gone_wrong": "",
  1890. "somthing_went_wrong_compiling": "",
  1891. "sorry_it_looks_like_that_didnt_work_this_time": "",
  1892. "sorry_there_are_no_experiments": "",
  1893. "sorry_there_was_an_issue_adding_x_users_to_your_subscription": "",
  1894. "sorry_there_was_an_issue_upgrading_your_subscription": "",
  1895. "sorry_this_project_is_not_available": "",
  1896. "sorry_you_can_only_change_to_group_from_trial_via_support": "",
  1897. "sorry_you_can_only_change_to_group_via_support": "",
  1898. "sorry_your_table_cant_be_displayed_at_the_moment": "",
  1899. "sort_by": "",
  1900. "sort_by_x": "",
  1901. "sort_projects": "",
  1902. "speak": "",
  1903. "speech_input_not_available": "",
  1904. "spellcheck": "",
  1905. "spellcheck_language": "",
  1906. "spelling_and_language": "",
  1907. "split_view": "",
  1908. "sso": "",
  1909. "sso_active": "",
  1910. "sso_already_setup_good_to_go": "",
  1911. "sso_config_deleted": "",
  1912. "sso_config_prop_help_certificate": "",
  1913. "sso_config_prop_help_email": "",
  1914. "sso_config_prop_help_first_name": "",
  1915. "sso_config_prop_help_last_name": "",
  1916. "sso_config_prop_help_redirect_url": "",
  1917. "sso_config_prop_help_user_id": "",
  1918. "sso_configuration": "",
  1919. "sso_configuration_not_finalized": "",
  1920. "sso_configuration_saved": "",
  1921. "sso_disabled_by_group_admin": "",
  1922. "sso_error_audience_mismatch": "",
  1923. "sso_error_idp_error": "",
  1924. "sso_error_invalid_external_user_id": "",
  1925. "sso_error_invalid_signature": "",
  1926. "sso_error_missing_email_attribute": "",
  1927. "sso_error_missing_external_user_id": "",
  1928. "sso_error_missing_firstname_attribute": "",
  1929. "sso_error_missing_lastname_attribute": "",
  1930. "sso_error_missing_signature": "",
  1931. "sso_error_response_already_processed": "",
  1932. "sso_explanation": "",
  1933. "sso_here_is_the_data_we_received": "",
  1934. "sso_is_disabled": "",
  1935. "sso_is_disabled_explanation_1": "",
  1936. "sso_is_disabled_explanation_2": "",
  1937. "sso_is_enabled": "",
  1938. "sso_is_enabled_explanation_1": "",
  1939. "sso_is_enabled_explanation_1_sso_only": "",
  1940. "sso_is_enabled_explanation_2": "",
  1941. "sso_link_account_with_idp": "",
  1942. "sso_link_error": "",
  1943. "sso_link_invite_has_been_sent_to_email": "",
  1944. "sso_logs": "",
  1945. "sso_not_active": "",
  1946. "sso_provider_error_invalid_name": "",
  1947. "sso_reauth_request": "",
  1948. "sso_test_interstitial_info_1": "",
  1949. "sso_test_interstitial_info_2": "",
  1950. "sso_test_interstitial_title": "",
  1951. "sso_test_result_error_message": "",
  1952. "sso_user_explanation_enabled_with_admin_email": "",
  1953. "sso_user_explanation_enabled_with_group_name": "",
  1954. "sso_user_explanation_ready_with_admin_email": "",
  1955. "sso_user_explanation_ready_with_group_name": "",
  1956. "standard": "",
  1957. "start_by_adding_your_email": "",
  1958. "start_by_fixing_the_first_error_in_your_document": "",
  1959. "start_editing": "",
  1960. "start_free_trial": "",
  1961. "start_new_chat": "",
  1962. "start_the_conversation_by_saying_hello_or_sharing_an_update": "",
  1963. "start_time_utc": "",
  1964. "start_typing_find_your_company": "",
  1965. "start_typing_find_your_organization": "",
  1966. "start_typing_find_your_university": "",
  1967. "status": "",
  1968. "stop": "",
  1969. "stop_compile": "",
  1970. "stop_on_first_error": "",
  1971. "stop_on_first_error_enabled_description": "",
  1972. "stop_on_first_error_enabled_title": "",
  1973. "stop_on_validation_error": "",
  1974. "stop_python_execution": "",
  1975. "stops_compiling_after_the_first_error_so_you_can_fix_issues_one_at_a_time": "",
  1976. "store_your_work": "",
  1977. "stretch_width_to_text": "",
  1978. "strongly_agree": "",
  1979. "strongly_disagree": "",
  1980. "student": "",
  1981. "student_disclaimer": "",
  1982. "subject": "",
  1983. "subject_area": "",
  1984. "subject_to_additional_vat": "",
  1985. "submit_title": "",
  1986. "subscribe": "",
  1987. "subscribe_now": "",
  1988. "subscribe_to_find_the_symbols_you_need_faster": "",
  1989. "subscription": "",
  1990. "subscription_admins_cannot_be_deleted": "",
  1991. "subscription_canceled": "",
  1992. "subscription_canceled_and_terminate_on_x": "",
  1993. "subscription_will_remain_active_until_end_of_billing_period_x": "",
  1994. "subscription_will_remain_active_until_end_of_trial_period_x": "",
  1995. "success_sso_set_up": "",
  1996. "success_youve_successfully_joined_group": "",
  1997. "suggest_a_different_fix": "",
  1998. "suggest_edits": "",
  1999. "suggest_fix": "",
  2000. "suggested": "",
  2001. "suggested_code": "",
  2002. "suggested_fix_for_error_in_path": "",
  2003. "suggestion_applied": "",
  2004. "suggests_code_completions_while_typing": "",
  2005. "support_for_your_browser_is_ending_soon": "",
  2006. "supports_up_to_x_licenses": "",
  2007. "sure_you_want_to_cancel_plan_change": "",
  2008. "sure_you_want_to_change_plan": "",
  2009. "sure_you_want_to_delete": "",
  2010. "sure_you_want_to_leave_group": "",
  2011. "switch_compile_mode_for_faster_draft_compilation": "",
  2012. "switch_to_editor": "",
  2013. "switch_to_pdf": "",
  2014. "switch_to_standard_plan": "",
  2015. "symbol": "",
  2016. "symbol_palette": "",
  2017. "sync": "",
  2018. "sync_all_projects_with_dropbox": "",
  2019. "sync_dropbox_github": "",
  2020. "sync_project_to_github_explanation": "",
  2021. "sync_to_dropbox": "",
  2022. "sync_to_github": "",
  2023. "sync_with_a_github_repository": "",
  2024. "sync_with_dropbox": "",
  2025. "sync_with_github": "",
  2026. "synctex_error_recompile_and_try_again": "",
  2027. "synctex_failed": "",
  2028. "syntax_checks": "",
  2029. "syntax_validation": "",
  2030. "tab_connecting": "",
  2031. "tab_settings": "",
  2032. "table": "",
  2033. "tabs_open_in_preview_mode_until_you_interact_with_them": "",
  2034. "tag_color": "",
  2035. "tag_name_cannot_exceed_characters": "",
  2036. "tag_name_is_already_used": "",
  2037. "tags": "",
  2038. "take_survey": "",
  2039. "tax_id_number": "",
  2040. "tax_id_type": "",
  2041. "tell_the_project_owner_and_ask_them_to_upgrade": "",
  2042. "template": "",
  2043. "template_description": "",
  2044. "template_title_taken_from_project_title": "",
  2045. "templates": "",
  2046. "temporarily_hides_the_preview": "",
  2047. "terminated": "",
  2048. "test": "",
  2049. "test_configuration": "",
  2050. "test_configuration_successful": "",
  2051. "tex_live_version": "",
  2052. "thank_you": "",
  2053. "thank_you_exclamation": "",
  2054. "thank_you_for_participating_feedback": "",
  2055. "thank_you_for_your_feedback": "",
  2056. "thanks_for_confirming_your_email_address": "",
  2057. "thanks_for_getting_in_touch": "",
  2058. "thanks_for_subscribing": "",
  2059. "thanks_for_subscribing_to_plan_with_add_on": "",
  2060. "thanks_for_subscribing_to_the_add_on": "",
  2061. "thanks_for_subscribing_you_help_sl": "",
  2062. "thanks_settings_updated": "",
  2063. "the_add_on_will_remain_active_until": "",
  2064. "the_ai_assistant_isnt_currently_available_on_your_plan": "",
  2065. "the_code_editor_color_scheme": "",
  2066. "the_code_editor_color_scheme_dark_mode": "",
  2067. "the_code_editor_color_scheme_light_mode": "",
  2068. "the_document_contains_formatting_we_werent_able_to_convert": "",
  2069. "the_following_files_already_exist_in_this_project": "",
  2070. "the_following_files_and_folders_already_exist_in_this_project": "",
  2071. "the_following_folder_already_exists_in_this_project": "",
  2072. "the_following_folder_already_exists_in_this_project_plural": "",
  2073. "the_home_of_research_writing": "",
  2074. "the_latex_engine_used_for_compiling": "",
  2075. "the_link_may_be_broken_or_you_may_not_have_access_rights": "",
  2076. "the_next_payment_will_be_collected_on": "",
  2077. "the_original_text_has_changed": "",
  2078. "the_overleaf_color_scheme": "",
  2079. "the_primary_file_for_compiling_your_project": "",
  2080. "the_target_folder_could_not_be_found": "",
  2081. "the_token_can_be_found_later_learn_more": "",
  2082. "the_version_of_tex_live_used_for_compiling": "",
  2083. "the_visual_editor_cant_preview_this_type_of_image_file": "",
  2084. "the_width_you_choose_here_is_based_on_the_width_of_the_text_in_your_document": "",
  2085. "their_projects_will_be_transferred_to_another_user": "",
  2086. "theme": "",
  2087. "then_x_price_per_month": "",
  2088. "then_x_price_per_year": "",
  2089. "there_are_lots_of_options_to_edit_and_customize_your_figures": "",
  2090. "there_was_a_problem_restoring_the_project_please_try_again_in_a_few_moments_or_contact_us": "",
  2091. "these_settings_might_change_in_the_future": "",
  2092. "they_lose_access_to_account": "",
  2093. "they_will_be_removed_from_the_group": "",
  2094. "they_will_continue_to_have_access_to_any_projects_shared_with_them": "",
  2095. "they_will_no_longer_be_a_managed_user": "",
  2096. "they_will_retain_ownership_of_projects_currently_owned_by_them_and_collaborators_will_become_read_only": "",
  2097. "they_will_retain_their_existing_account_on_the_free_plan": "",
  2098. "they_wont_be_able_to_log_in_with_sso_they_will_need_to_set_password": "",
  2099. "this_action_cannot_be_reversed": "",
  2100. "this_action_cannot_be_undone": "",
  2101. "this_action_will_also_disable_domain_capture": "",
  2102. "this_address_will_be_shown_on_the_invoice": "",
  2103. "this_change_will_permanently_remove_your_original_links_you_can_still_share_new_link": "",
  2104. "this_change_will_permanently_remove_your_original_links_you_need_to_share_the_new_link": "",
  2105. "this_could_be_because_we_cant_support_some_elements_of_the_table": "",
  2106. "this_field_is_required": "",
  2107. "this_grants_access_to_features_2": "",
  2108. "this_is_the_file_that_references_pulled_from_your_reference_manager_will_be_added_to": "",
  2109. "this_organization_is_tax_exempt": "",
  2110. "this_policy_applies_to_all_projects_owned_by_your_group_members": "",
  2111. "this_project_already_has_maximum_collaborators": "",
  2112. "this_project_exceeded_collaborator_limit": "",
  2113. "this_project_exceeded_compile_timeout_limit_on_free_plan": "",
  2114. "this_project_has_more_than_max_collabs": "",
  2115. "this_project_is_compiled_using_untested_version": "",
  2116. "this_project_is_public": "",
  2117. "this_project_is_public_read_only": "",
  2118. "this_project_will_appear_in_your_dropbox_folder_at": "",
  2119. "this_tool_helps_you_insert_figures": "",
  2120. "this_tool_helps_you_insert_simple_tables_into_your_project_without_writing_latex_code": "",
  2121. "this_total_reflects_the_amount_due_until": "",
  2122. "this_was_helpful": "",
  2123. "this_wasnt_helpful": "",
  2124. "this_will_remove_primary_email": "",
  2125. "this_will_reset_in": "",
  2126. "time_and": "",
  2127. "time_hour": "",
  2128. "time_hour_plural": "",
  2129. "time_minute": "",
  2130. "time_minute_plural": "",
  2131. "timedout": "",
  2132. "tip": "",
  2133. "title": "",
  2134. "to_add_email_accounts_need_to_be_linked_2": "",
  2135. "to_add_more_collaborators": "",
  2136. "to_change_access_permissions": "",
  2137. "to_confirm_transfer_enter_email_address": "",
  2138. "to_confirm_unlink_all_users_enter_email": "",
  2139. "to_continue_using_upgrade_or_change_your_browser": "",
  2140. "to_fix_this_you_can": "",
  2141. "to_fix_this_you_can_ask_the_github_repository_owner": "",
  2142. "to_insert_or_move_a_caption_make_sure_tabular_is_directly_within_table": "",
  2143. "to_keep_edit_access": "",
  2144. "to_modify_your_subscription_go_to": "",
  2145. "to_pull_results_directly_from_your_reference_manager_enable_one_of_the_available_reference_manager_integrations": "",
  2146. "to_use_text_wrapping_in_your_table_make_sure_you_include_the_array_package": "",
  2147. "toggle_compile_options_menu": "",
  2148. "toggle_group": "",
  2149. "toggle_personal_library": "",
  2150. "toggle_unknown_group": "",
  2151. "token": "",
  2152. "token_access_failure": "",
  2153. "token_expiring_soon": "",
  2154. "token_generated": "",
  2155. "token_limit_reached": "",
  2156. "token_read_only": "",
  2157. "token_read_write": "",
  2158. "too_many_attempts": "",
  2159. "too_many_comments_or_tracked_changes": "",
  2160. "too_many_comments_or_tracked_changes_detail": "",
  2161. "too_many_confirm_code_resend_attempts": "",
  2162. "too_many_confirm_code_verification_attempts": "",
  2163. "too_many_files_uploaded_throttled_short_period": "",
  2164. "too_many_requests": "",
  2165. "too_many_search_results": "",
  2166. "too_recently_compiled": "",
  2167. "took_a_while": "",
  2168. "toolbar_bold": "",
  2169. "toolbar_bulleted_list": "",
  2170. "toolbar_change_editor_mode": "",
  2171. "toolbar_code_visual_editor_switch": "",
  2172. "toolbar_decrease_indent": "",
  2173. "toolbar_editor": "",
  2174. "toolbar_generate_math": "",
  2175. "toolbar_generate_table": "",
  2176. "toolbar_increase_indent": "",
  2177. "toolbar_insert_citation": "",
  2178. "toolbar_insert_cross_reference": "",
  2179. "toolbar_insert_display_math": "",
  2180. "toolbar_insert_figure": "",
  2181. "toolbar_insert_inline_math": "",
  2182. "toolbar_insert_link": "",
  2183. "toolbar_insert_list": "",
  2184. "toolbar_insert_math": "",
  2185. "toolbar_insert_math_and_symbols": "",
  2186. "toolbar_insert_math_lowercase": "",
  2187. "toolbar_insert_misc": "",
  2188. "toolbar_insert_symbol": "",
  2189. "toolbar_insert_table": "",
  2190. "toolbar_italic": "",
  2191. "toolbar_list_indentation": "",
  2192. "toolbar_numbered_list": "",
  2193. "toolbar_redo": "",
  2194. "toolbar_search_file": "",
  2195. "toolbar_section_heading_level": "",
  2196. "toolbar_selected_projects": "",
  2197. "toolbar_selected_projects_management_actions": "",
  2198. "toolbar_selected_projects_remove": "",
  2199. "toolbar_selected_projects_restore": "",
  2200. "toolbar_table_insert_size_table": "",
  2201. "toolbar_table_insert_table_lowercase": "",
  2202. "toolbar_text_formatting": "",
  2203. "toolbar_text_style": "",
  2204. "toolbar_undo": "",
  2205. "toolbar_undo_redo_actions": "",
  2206. "tools": "",
  2207. "tooltip_hide_panel": "",
  2208. "tooltip_hide_pdf": "",
  2209. "tooltip_show_panel": "",
  2210. "tooltip_show_pdf": "",
  2211. "total_due_in_x_days": "",
  2212. "total_due_today": "",
  2213. "total_per_month": "",
  2214. "total_per_year": "",
  2215. "total_today": "",
  2216. "total_with_subtotal_and_tax": "",
  2217. "total_words": "",
  2218. "total_words_lower": "",
  2219. "track_changes": "",
  2220. "tracked_change_added": "",
  2221. "tracked_change_deleted": "",
  2222. "transfer_management_of_your_account": "",
  2223. "transfer_management_of_your_account_to_x": "",
  2224. "transfer_management_resolve_following_issues": "",
  2225. "transfer_this_users_projects": "",
  2226. "transfer_this_users_projects_description": "",
  2227. "transferring": "",
  2228. "trash": "",
  2229. "trash_projects": "",
  2230. "trashed": "",
  2231. "trashed_projects": "",
  2232. "trashing_projects_wont_affect_collaborators": "",
  2233. "trial_last_day": "",
  2234. "trial_remaining_days": "",
  2235. "tried_to_log_in_with_email": "",
  2236. "tried_to_register_with_email": "",
  2237. "try_again": "",
  2238. "try_for_free": "",
  2239. "try_now": "",
  2240. "try_recompile_project_or_troubleshoot": "",
  2241. "try_relinking_provider": "",
  2242. "try_to_compile_despite_errors": "",
  2243. "turn_off": "",
  2244. "turn_off_link_sharing": "",
  2245. "turn_on": "",
  2246. "turn_on_link_sharing": "",
  2247. "unarchive": "",
  2248. "uncategorized": "",
  2249. "uncategorized_projects": "",
  2250. "unconfirmed": "",
  2251. "undelete": "",
  2252. "understand_managed_user_accounts": "",
  2253. "understanding_labels": "",
  2254. "undo": "",
  2255. "unfold_line": "",
  2256. "unique_identifier_attribute": "",
  2257. "university": "",
  2258. "university_school": "",
  2259. "unknown": "",
  2260. "unknown_group": "",
  2261. "unlimited_collaborators_per_project": "",
  2262. "unlimited_collabs": "",
  2263. "unlimited_collabs_per_project_plus": "",
  2264. "unlimited_document_history": "",
  2265. "unlimited_projects": "",
  2266. "unlink": "",
  2267. "unlink_all_users": "",
  2268. "unlink_all_users_explanation": "",
  2269. "unlink_commons_sso_confirm": "",
  2270. "unlink_commons_sso_error": "",
  2271. "unlink_commons_sso_lose_licence": "",
  2272. "unlink_commons_sso_no_login": "",
  2273. "unlink_commons_sso_title": "",
  2274. "unlink_commons_sso_troubleshoot": "",
  2275. "unlink_dropbox_folder": "",
  2276. "unlink_dropbox_warning": "",
  2277. "unlink_from_sso": "",
  2278. "unlink_github_repository": "",
  2279. "unlink_github_warning": "",
  2280. "unlink_linked_accounts": "",
  2281. "unlink_linked_google_account": "",
  2282. "unlink_provider_account_title": "",
  2283. "unlink_provider_account_warning": "",
  2284. "unlink_reference": "",
  2285. "unlink_sso": "",
  2286. "unlink_the_project_from_the_current_github_repo": "",
  2287. "unlink_user_explanation": "",
  2288. "unlink_users": "",
  2289. "unlink_warning_reference": "",
  2290. "unlinking": "",
  2291. "unmerge_cells": "",
  2292. "unpause_subscription": "",
  2293. "unpausing": "",
  2294. "unpublish": "",
  2295. "unpublishing": "",
  2296. "unsubscribe": "",
  2297. "until_then_you_can_still": "",
  2298. "untrash": "",
  2299. "update": "",
  2300. "update_account_info": "",
  2301. "update_dropbox_settings": "",
  2302. "update_your_billing_details": "",
  2303. "updates_to_project_sharing": "",
  2304. "updating": "",
  2305. "upgrade": "",
  2306. "upgrade_cc_btn": "",
  2307. "upgrade_for_more_compile_time": "",
  2308. "upgrade_for_unlimited_access_to_ai": "",
  2309. "upgrade_my_plan": "",
  2310. "upgrade_now": "",
  2311. "upgrade_plan": "",
  2312. "upgrade_summary": "",
  2313. "upgrade_to_add_more_collaborators_and_access_collaboration_features": "",
  2314. "upgrade_to_add_more_collaborators_and_more": "",
  2315. "upgrade_to_get_feature": "",
  2316. "upgrade_to_get_started": "",
  2317. "upgrade_to_plan": "",
  2318. "upgrade_to_review": "",
  2319. "upgrade_your_subscription": "",
  2320. "upload": "",
  2321. "upload_file": "",
  2322. "upload_from_computer": "",
  2323. "upload_project": "",
  2324. "upload_zipped_project": "",
  2325. "url_to_fetch_the_file_from": "",
  2326. "us_gov_banner_fedramp": "",
  2327. "us_gov_banner_government_purchasing": "",
  2328. "us_gov_banner_small_business_reseller": "",
  2329. "usage_limit_reached": "",
  2330. "usage_metrics": "",
  2331. "use_a_different_email": "",
  2332. "use_a_different_password": "",
  2333. "use_saml_metadata_to_configure_sso_with_idp": "",
  2334. "use_the_shortcut_key_to_paste": "",
  2335. "use_your_own_machine": "",
  2336. "used_latex_before": "",
  2337. "used_latex_response_familiar": "",
  2338. "used_latex_response_never": "",
  2339. "used_latex_response_occasionally": "",
  2340. "used_latex_response_often": "",
  2341. "used_when_referring_to_the_figure_elsewhere_in_the_document": "",
  2342. "user_deletion_error": "",
  2343. "user_deletion_password_reset_tip": "",
  2344. "user_email_attribute": "",
  2345. "user_first_name_attribute": "",
  2346. "user_has_left_organization_and_need_to_transfer_their_projects": "",
  2347. "user_last_name_attribute": "",
  2348. "user_management": "",
  2349. "user_personal_access_tokens": "",
  2350. "user_sessions": "",
  2351. "using_latex": "",
  2352. "using_premium_features": "",
  2353. "using_the_overleaf_editor": "",
  2354. "using_writefull": "",
  2355. "valid": "",
  2356. "valid_sso_configuration": "",
  2357. "validation_issue_entry_description": "",
  2358. "value_must_be_a_number": "",
  2359. "value_must_be_a_whole_number": "",
  2360. "value_must_be_at_least_x": "",
  2361. "vat": "",
  2362. "vat_number": "",
  2363. "verification": "",
  2364. "verification_code": "",
  2365. "verified": "",
  2366. "verify_email_address_before_enabling_managed_users": "",
  2367. "verify_your_email_address": "",
  2368. "verifying_domain": "",
  2369. "via_sharing_links_legacy": "",
  2370. "view": "",
  2371. "view_all": "",
  2372. "view_all_plans": "",
  2373. "view_audit_logs_group_subtext": "",
  2374. "view_billing_details": "",
  2375. "view_code": "",
  2376. "view_configuration": "",
  2377. "view_group_members": "",
  2378. "view_hub": "",
  2379. "view_hub_subtext": "",
  2380. "view_in_template_gallery": "",
  2381. "view_invitation": "",
  2382. "view_invoices": "",
  2383. "view_labs_experiments": "",
  2384. "view_less": "",
  2385. "view_logs": "",
  2386. "view_metrics": "",
  2387. "view_metrics_commons_subtext": "",
  2388. "view_metrics_group_subtext": "",
  2389. "view_more": "",
  2390. "view_more_domain_details": "",
  2391. "view_only_access": "",
  2392. "view_only_downgraded": "",
  2393. "view_only_reviewer_downgraded": "",
  2394. "view_options": "",
  2395. "view_payment_portal": "",
  2396. "view_payment_portal_disclaimer": "",
  2397. "view_your_invoices": "",
  2398. "viewer": "",
  2399. "viewing": "",
  2400. "viewing_x": "",
  2401. "visual": "",
  2402. "visual_editor_does_not_support_this_file_type": "",
  2403. "want_change_to_apply_before_plan_end": "",
  2404. "warnings": "",
  2405. "we_are_unable_to_opt_you_into_this_experiment": "",
  2406. "we_cant_find_any_sections_or_subsections_in_this_file": "",
  2407. "we_couldnt_export_this_document": "",
  2408. "we_do_not_share_personal_information": "",
  2409. "we_got_your_request": "",
  2410. "we_logged_you_in": "",
  2411. "we_sent_code": "",
  2412. "we_sent_new_code": "",
  2413. "we_were_unable_to_verify_your_domain": "",
  2414. "we_will_charge_you_now_for_the_cost_of_your_additional_licenses_based_on_remaining_months": "",
  2415. "we_will_charge_you_now_for_your_new_plan_based_on_the_remaining_months_of_your_current_subscription": "",
  2416. "we_will_invoice_you_now_for_the_additional_licenses_based_on_remaining_months": "",
  2417. "we_will_use_your_existing_payment_method": "",
  2418. "webinars": "",
  2419. "website_status": "",
  2420. "wed_love_you_to_stay": "",
  2421. "welcome_to_overleaf_opening_workspace": "",
  2422. "welcome_to_plan": "",
  2423. "welcome_to_sl": "",
  2424. "well_be_here_when_youre_ready": "",
  2425. "were_making_some_changes_to_project_sharing_this_means_you_will_be_visible": "",
  2426. "were_performing_maintenance": "",
  2427. "weve_converted_your_content_to_latex": "",
  2428. "weve_hit_a_problem_try_starting_a_new_chat": "",
  2429. "what_did_you_find_most_helpful": "",
  2430. "what_do_you_need_help_with": "",
  2431. "what_does_this_mean_for_you": "",
  2432. "what_happens_when_sso_is_enabled": "",
  2433. "what_should_we_call_you": "",
  2434. "what_would_you_like_to_do": "",
  2435. "when_you_tick_the_include_caption_box": "",
  2436. "who_can_be_invited_to_group_members_projects": "",
  2437. "why_not_pause_instead": "",
  2438. "wide": "",
  2439. "will_lose_edit_access_on_date": "",
  2440. "with_overleaf_subscription_you_also_get": "",
  2441. "word_count_lower": "",
  2442. "words": "",
  2443. "work_in_vim_or_emacs_emulation_mode": "",
  2444. "work_offline": "",
  2445. "work_offline_pull_to_overleaf": "",
  2446. "work_with_non_overleaf_users": "",
  2447. "work_with_other_github_users": "",
  2448. "write_faster_smarter_with_research_ready_ai": "",
  2449. "x_changes_in": "",
  2450. "x_changes_in_plural": "",
  2451. "x_files_saved_to_your_project": "",
  2452. "x_files_saved_to_your_project_plural": "",
  2453. "x_libraries_accessed_in_this_project": "",
  2454. "x_people_invited": "",
  2455. "x_people_invited_plural": "",
  2456. "x_price_for_first_month": "",
  2457. "x_price_for_first_year": "",
  2458. "x_price_for_y_months": "",
  2459. "x_price_per_month": "",
  2460. "x_price_per_user": "",
  2461. "x_price_per_year": "",
  2462. "x_saved_to_your_project": "",
  2463. "year": "",
  2464. "yearly": "",
  2465. "yes_move_me_to_personal_plan": "",
  2466. "you": "",
  2467. "you_already_have_a_subscription": "",
  2468. "you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
  2469. "you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z_you": "",
  2470. "you_are_a_manager_of_commons_at_institution_x": "",
  2471. "you_are_a_manager_of_publisher_x": "",
  2472. "you_are_a_manager_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
  2473. "you_are_a_manager_of_x_plan_as_member_of_group_subscription_y_administered_by_z_you": "",
  2474. "you_are_currently_logged_in_as": "",
  2475. "you_are_currently_logged_in_as_x_you_might_need_to_log_in_with_different_email": "",
  2476. "you_are_on_a_paid_plan_contact_support_to_find_out_more": "",
  2477. "you_are_on_x_plan_as_a_confirmed_member_of_institution_y": "",
  2478. "you_are_on_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
  2479. "you_are_using_our_free_plan": "",
  2480. "you_can_also_choose_to_view_anonymously_or_leave_the_project": "",
  2481. "you_can_also_right_click_a_file_to_set_it_as_main": "",
  2482. "you_can_buy_this_plan_but_not_as_a_trial": "",
  2483. "you_can_link_x_in_your_account_settings": "",
  2484. "you_can_now_enable_sso": "",
  2485. "you_can_now_log_in_sso": "",
  2486. "you_can_now_search_and_add_references_from_your_rm_library_without_needing_to_import_files": "",
  2487. "you_can_only_be_affiliated_with_one_group": "",
  2488. "you_can_select_or_invite_collaborator": "",
  2489. "you_can_select_or_invite_collaborator_plural": "",
  2490. "you_can_still_use_your_premium_features": "",
  2491. "you_cant_add_or_change_password_due_to_sso": "",
  2492. "you_cant_join_this_group_subscription": "",
  2493. "you_currently_have_x_linked_with_your_overleaf_account": "",
  2494. "you_dont_have_any_repositories": "",
  2495. "you_have_1_license_and_your_plan_supports_up_to_y": "",
  2496. "you_have_added_x_of_group_size_y": "",
  2497. "you_have_been_invited_to_transfer_management_of_your_account": "",
  2498. "you_have_been_invited_to_transfer_management_of_your_account_to": "",
  2499. "you_have_been_removed_from_this_project_and_will_be_redirected_to_project_dashboard": "",
  2500. "you_have_multiple_organization_email_addresses_on_your_account": "",
  2501. "you_have_x_licenses_and_your_plan_supports_up_to_y": "",
  2502. "you_have_x_licenses_on_your_subscription": "",
  2503. "you_need_to_configure_your_sso_settings": "",
  2504. "you_unpaused_your_subscription": "",
  2505. "you_will_be_able_to_reassign_subscription": "",
  2506. "youll_get_best_results_in_visual_but_can_be_used_in_source": "",
  2507. "youll_need_to_ask_the_github_repository_owner": "",
  2508. "youll_no_longer_need_to_remember_credentials": "",
  2509. "your_account_is_managed_by_admin_cant_join_additional_group": "",
  2510. "your_account_is_managed_by_your_group_admin": "",
  2511. "your_add_on_has_been_cancelled_and_will_remain_active_until_your_billing_cycle_ends_on": "",
  2512. "your_affiliation_is_confirmed": "",
  2513. "your_browser_cant_access_the_clipboard_so_use_this_shortcut": "",
  2514. "your_changes_will_save": "",
  2515. "your_compile_timed_out": "",
  2516. "your_current_plan": "",
  2517. "your_current_plan_gives_you": "",
  2518. "your_current_plan_supports_up_to_x_licenses": "",
  2519. "your_current_project_will_revert_to_the_version_from_time": "",
  2520. "your_document_couldnt_be_imported_check_our_guidance_or_expand_conversion_error_details": "",
  2521. "your_email_is_confirmed": "",
  2522. "your_feedback_matters_answer_two_quick_questions": "",
  2523. "your_git_access_info": "",
  2524. "your_git_access_info_bullet_1": "",
  2525. "your_git_access_info_bullet_2": "",
  2526. "your_git_access_info_bullet_3": "",
  2527. "your_git_access_info_bullet_4": "",
  2528. "your_git_access_info_bullet_5": "",
  2529. "your_git_access_tokens": "",
  2530. "your_limit_will_reset_in_time_or_speak_to_admin": "",
  2531. "your_message_to_collaborators": "",
  2532. "your_name_and_email_address_will_be_visible_to_project_editors": "",
  2533. "your_name_and_email_address_will_be_visible_to_the_project_owner_and_other_editors": "",
  2534. "your_new_plan": "",
  2535. "your_password_was_detected": "",
  2536. "your_plan": "",
  2537. "your_plan_is_changing_at_term_end": "",
  2538. "your_plan_is_limited_to_n_editors": "",
  2539. "your_plan_is_limited_to_n_editors_plural": "",
  2540. "your_premium_plan_is_paused": "",
  2541. "your_project_exceeded_collaborator_limit": "",
  2542. "your_project_exceeded_compile_timeout_limit_on_free_plan": "",
  2543. "your_project_near_compile_timeout_limit": "",
  2544. "your_projects": "",
  2545. "your_role": "",
  2546. "your_subscription_has_expired": "",
  2547. "your_subscription_will_pause_on": "",
  2548. "your_subscription_will_pause_on_short": "",
  2549. "your_subscriptions": "",
  2550. "youre_a_member_of_overleaf_labs": "",
  2551. "youre_about_to_enable_single_sign_on": "",
  2552. "youre_about_to_enable_single_sign_on_sso_only": "",
  2553. "youre_adding_x_licenses_to_your_plan_giving_you_a_total_of_y_licenses": "",
  2554. "youre_already_setup_for_sso": "",
  2555. "youre_creating_account_for_x_it_will_be_managed_by_y": "",
  2556. "youre_joining": "",
  2557. "youre_joining_x_as_y": "",
  2558. "youre_not_eligible_for_a_free_trial": "",
  2559. "youre_on_free_trial_which_ends_on": "",
  2560. "youre_signed_in_as_logout": "",
  2561. "youre_signed_in_using_your_organization_email": "",
  2562. "youve_added_more_licenses": "",
  2563. "youve_added_x_more_licenses_to_your_subscription_invite_people": "",
  2564. "youve_hit_your_daily_ai_limit": "",
  2565. "youve_lost_collaboration_access": "",
  2566. "youve_paused_your_subscription": "",
  2567. "youve_reached_the_fair_usage": "",
  2568. "youve_reached_the_fair_usage_limit_on_your_plan_you_can_start_chatting_again_in_time": "",
  2569. "youve_reached_your_ai_usage_limit": "",
  2570. "youve_reached_your_daily_ai_limit": "",
  2571. "youve_unlinked_all_users": "",
  2572. "youve_upgraded_your_plan": "",
  2573. "youve_upgraded_your_subscription": "",
  2574. "zoom_in": "",
  2575. "zoom_out": "",
  2576. "zoom_to": "",
  2577. "zotero": "",
  2578. "zotero_dynamic_sync_description": "",
  2579. "zotero_groups_loading_error": "",
  2580. "zotero_groups_relink": "",
  2581. "zotero_integration": "",
  2582. "zotero_is_premium": "",
  2583. "zotero_reference_loading_error": "",
  2584. "zotero_reference_loading_error_expired": "",
  2585. "zotero_reference_loading_error_forbidden": "",
  2586. "zotero_sync_description": "",
  2587. "zotero_upgrade_prompt_content": "",
  2588. "zotero_upgrade_prompt_title": ""
  2589. }