extracted-translations.json 79 KB

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