extracted-translations.json 76 KB

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