mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Remove unused code and translation locales from old subscription pages (#13646)
* Remove unused code from old subscription pages. * Remove unused translation locales from old subscription pages. GitOrigin-RevId: abf99373188bafa90f4900a358a30b4cc8a433d1
This commit is contained in:
parent
21eada08ef
commit
afbd143f0f
21 changed files with 0 additions and 390 deletions
|
@ -1,69 +0,0 @@
|
|||
script(type="text/ng-template", id="groupPlanModalUpgradeTemplate")
|
||||
.modal-header
|
||||
h2 Customize your group subscription
|
||||
h3 #{translate("save_30_percent_or_more_uppercase")}
|
||||
.modal-body.plans.group-subscription-modal
|
||||
.container-fluid
|
||||
.row
|
||||
.col-md-6.text-center
|
||||
.circle.circle-lg
|
||||
| {{ recurlyPrice.total }}
|
||||
span.small / year
|
||||
br
|
||||
span.circle-subtext {{perUserDisplayPrice}} per user
|
||||
ul.list-unstyled
|
||||
li Each user will have access to:
|
||||
li
|
||||
li(ng-if="selected.plan_code == 'collaborator'")
|
||||
strong #{translate("collabs_per_proj", {collabcount:10})}
|
||||
li(ng-if="selected.plan_code == 'professional'")
|
||||
strong #{translate("unlimited_collabs")}
|
||||
+features_premium
|
||||
.col-md-6
|
||||
form.form
|
||||
.form-group
|
||||
label(for='plan_code')
|
||||
| Plan
|
||||
label(ng-repeat="plan_code in options.plan_codes" class="group-plan-option")
|
||||
input(type="radio" name="plan_code" ng-model="selected.plan_code" value="{{plan_code.code}}")
|
||||
span {{plan_code.display}}
|
||||
.form-group
|
||||
label(for='size')
|
||||
| #{translate('number_of_users')}
|
||||
select.form-control(id="size", ng-model="selected.size")
|
||||
option(ng-repeat="size in options.sizes", value="{{size}}") {{ size }}
|
||||
.form-group
|
||||
label(for='currency')
|
||||
| Currency
|
||||
select.form-control(disabled id="currency", ng-model="selected.currency")
|
||||
option(ng-repeat="currency in options.currencies", value="{{currency.code}}") {{ currency.display }}
|
||||
.form-group
|
||||
label(for='usage')
|
||||
| Overleaf offers a 40% educational discount for groups of 10 or more.
|
||||
label.group-plan-option
|
||||
input(id="usage", type="checkbox" ng-model="selected.usage" ng-true-value="'educational'" ng-false-value="'enterprise'")
|
||||
span This license is for educational purposes (applies to students or faculty using Overleaf for teaching)
|
||||
.row
|
||||
.col-md-12.text-center
|
||||
.educational-discount-badge
|
||||
div(ng-hide="selected.usage !== 'educational'")
|
||||
p.applied(ng-show="discountEligible")
|
||||
| 40% educational discount applied!
|
||||
p.ineligible(ng-hide="discountEligible")
|
||||
| The educational discount is available for groups of 10 or more
|
||||
.modal-footer
|
||||
.text-center
|
||||
p(ng-show="recurlyPrice.includesTax") Total:
|
||||
strong {{ recurlyPrice.total }}
|
||||
| ({{recurlyPrice.subtotal}} + {{recurlyPrice.tax}} tax) per year
|
||||
p
|
||||
strong Your new subscription will be billed immediately to your current payment method.
|
||||
hr.thin
|
||||
button.btn.btn-primary.btn-lg(ng-disabled='inflight' ng-click="upgrade()") Upgrade Now
|
||||
hr.thin
|
||||
a(
|
||||
href
|
||||
ng-controller="ContactGeneralModal"
|
||||
ng-click="openModal()"
|
||||
) Need more than 50 licenses? Please get in touch
|
||||
|
|
@ -1,238 +0,0 @@
|
|||
//- Buy Buttons
|
||||
mixin btn_buy_collaborator(location)
|
||||
a.btn.btn-primary(
|
||||
ng-href="/user/subscription/new?planCode={{ getCollaboratorPlanCode() }}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
||||
ng-click="signUpNowClicked('collaborator','" + location + "')"
|
||||
)
|
||||
span(ng-show="ui.view != 'annual'") #{translate("start_free_trial")}
|
||||
span(ng-show="ui.view == 'annual'") #{translate("buy_now")}
|
||||
mixin btn_buy_personal(location)
|
||||
a.btn.btn-primary(
|
||||
ng-href="/user/subscription/new?planCode={{ getPersonalPlanCode() }}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
||||
ng-click="signUpNowClicked('personal','" + location + "')"
|
||||
)
|
||||
span(ng-show="ui.view != 'annual'") #{translate("start_free_trial")}
|
||||
span(ng-show="ui.view == 'annual'") #{translate("buy_now")}
|
||||
mixin btn_buy_free(location)
|
||||
a.btn.btn-primary(
|
||||
href="/register"
|
||||
style=(getLoggedInUserId() === null ? "" : "visibility: hidden")
|
||||
ng-click="signUpNowClicked('free','" + location + "')"
|
||||
)
|
||||
span.text-capitalize #{translate('get_started_now')}
|
||||
mixin btn_buy_professional(location)
|
||||
a.btn.btn-primary(
|
||||
ng-href="/user/subscription/new?planCode=professional{{ ui.view == 'annual' && '-annual' || '_free_trial_7_days'}}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
||||
ng-click="signUpNowClicked('professional','" + location + "')"
|
||||
)
|
||||
span(ng-show="ui.view != 'annual'") #{translate("start_free_trial")}
|
||||
span(ng-show="ui.view == 'annual'") #{translate("buy_now")}
|
||||
mixin btn_buy_student(location, plan)
|
||||
if plan == 'annual'
|
||||
a.btn.btn-primary(
|
||||
ng-href="/user/subscription/new?planCode=student-annual¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
||||
ng-click="signUpNowClicked('student-annual','" + location + "')"
|
||||
) #{translate("buy_now")}
|
||||
else
|
||||
a.btn.btn-primary(
|
||||
ng-href="/user/subscription/new?planCode=student_free_trial_7_days¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
||||
ng-click="signUpNowClicked('student-monthly','" + location + "')"
|
||||
) #{translate("start_free_trial")}
|
||||
|
||||
//- Cards
|
||||
mixin card_student_annual(location)
|
||||
.best-value
|
||||
strong #{translate('best_value')}
|
||||
.card-header
|
||||
h2 #{translate("student")} (#{translate("annual")})
|
||||
h5.tagline #{translate('tagline_student_annual')}
|
||||
.circle
|
||||
span
|
||||
+price_student_annual
|
||||
+features_student(location, 'annual')
|
||||
mixin card_student_monthly(location)
|
||||
.card-header
|
||||
h2 #{translate("student")}
|
||||
h5.tagline #{translate('tagline_student_monthly')}
|
||||
.circle
|
||||
span
|
||||
+price_student_monthly
|
||||
+features_student(location, 'monthly')
|
||||
|
||||
//- Features Lists, used within cards
|
||||
mixin features_collaborator(location)
|
||||
ul.list-unstyled
|
||||
li
|
||||
strong #{translate("collabs_per_proj", {collabcount:10})}
|
||||
+features_premium
|
||||
li
|
||||
br
|
||||
+btn_buy_collaborator(location)
|
||||
mixin features_free(location)
|
||||
ul.list-unstyled
|
||||
li #{translate("one_collaborator")}
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li
|
||||
br
|
||||
+btn_buy_free(location)
|
||||
mixin features_personal(location)
|
||||
ul.list-unstyled
|
||||
li #{translate("one_collaborator")}
|
||||
li
|
||||
li
|
||||
strong #{translate('premium_features')}
|
||||
li #{translate('sync_dropbox_github')}
|
||||
li #{translate('full_doc_history')}
|
||||
li + #{translate('more').toLowerCase()}
|
||||
li(class="hidden-xs hidden-sm")
|
||||
li
|
||||
br
|
||||
+btn_buy_personal(location)
|
||||
mixin features_premium
|
||||
li
|
||||
li
|
||||
strong #{translate('all_premium_features')}
|
||||
li #{translate('sync_dropbox_github')}
|
||||
li #{translate('full_doc_history')}
|
||||
li #{translate('track_changes')}
|
||||
li + #{translate('more').toLowerCase()}
|
||||
mixin features_professional(location)
|
||||
ul.list-unstyled
|
||||
li
|
||||
strong #{translate("unlimited_collabs")}
|
||||
+features_premium
|
||||
li
|
||||
br
|
||||
+btn_buy_professional(location)
|
||||
mixin features_student(location, plan)
|
||||
ul.list-unstyled
|
||||
li
|
||||
strong #{translate("collabs_per_proj", {collabcount:6})}
|
||||
+features_premium
|
||||
li
|
||||
br
|
||||
+btn_buy_student(location, plan)
|
||||
|
||||
//- Prices
|
||||
mixin price_personal
|
||||
span(ng-if="ui.view == 'monthly'")
|
||||
| {{plans[currencyCode]['personal']['monthly']}}
|
||||
span.small /mo
|
||||
span(ng-if="ui.view == 'annual'")
|
||||
| {{plans[currencyCode]['personal']['annual']}}
|
||||
span.small /yr
|
||||
mixin price_collaborator
|
||||
span(ng-if="ui.view == 'monthly'")
|
||||
| {{plans[currencyCode]['collaborator']['monthly']}}
|
||||
span.small /mo
|
||||
span(ng-if="ui.view == 'annual'")
|
||||
| {{plans[currencyCode]['collaborator']['annual']}}
|
||||
span.small /yr
|
||||
mixin price_professional
|
||||
span(ng-if="ui.view == 'monthly'")
|
||||
| {{plans[currencyCode]['professional']['monthly']}}
|
||||
span.small /mo
|
||||
span(ng-if="ui.view == 'annual'")
|
||||
| {{plans[currencyCode]['professional']['annual']}}
|
||||
span.small /yr
|
||||
mixin price_student_annual
|
||||
| {{plans[currencyCode]['student']['annual']}}
|
||||
span.small /yr
|
||||
mixin price_student_monthly
|
||||
| {{plans[currencyCode]['student']['monthly']}}
|
||||
span.small /mo
|
||||
|
||||
//- UI Control
|
||||
mixin currency_dropdown
|
||||
.dropdown.currency-dropdown(dropdown)
|
||||
a.btn.btn-default.dropdown-toggle(
|
||||
href="#",
|
||||
data-toggle="dropdown",
|
||||
dropdown-toggle
|
||||
)
|
||||
| {{currencyCode}} ({{plans[currencyCode]['symbol']}})
|
||||
span.caret
|
||||
|
||||
ul.dropdown-menu.dropdown-menu-right.text-right(role="menu")
|
||||
li(ng-repeat="(currency, value) in plans")
|
||||
a(
|
||||
href="#",
|
||||
ng-click="changeCurreny($event, currency)"
|
||||
) {{currency}} ({{value['symbol']}})
|
||||
mixin plan_switch(location)
|
||||
ul.nav.nav-pills
|
||||
li(ng-class="{'active': ui.view == 'monthly'}")
|
||||
button.btn-default-outline(
|
||||
ng-click="switchToMonthly($event,'" + location + "')"
|
||||
) #{translate("monthly")}
|
||||
li(ng-class="{'active': ui.view == 'annual'}")
|
||||
button.btn-default-outline(
|
||||
href="#"
|
||||
ng-click="switchToAnnual($event,'" + location + "')"
|
||||
) #{translate("annual")}
|
||||
li(ng-class="{'active': ui.view == 'student'}")
|
||||
button.btn-default-outline(
|
||||
href="#"
|
||||
ng-click="switchToStudent($event,'" + location + "')"
|
||||
) #{translate("special_price_student")}
|
||||
|
||||
mixin allCardsAndControls(controlsRowSpaced, listLocation)
|
||||
- var location = listLocation ? 'card_' + listLocation : 'card'
|
||||
.row.top-switch(class=controlsRowSpaced ? "row-spaced" : "")
|
||||
.col-md-6.col-md-offset-3
|
||||
+plan_switch('card')
|
||||
.col-md-2.text-right
|
||||
+currency_dropdown
|
||||
|
||||
.row
|
||||
.col-md-10.col-md-offset-1
|
||||
.row
|
||||
.card-group.text-centered(ng-if="ui.view == 'monthly' || ui.view == 'annual'")
|
||||
.col-md-4
|
||||
.card.card-first
|
||||
.card-header
|
||||
h2 #{translate("personal")}
|
||||
h5.tagline #{translate("tagline_personal")}
|
||||
.circle
|
||||
+price_personal
|
||||
+features_personal(location)
|
||||
.col-md-4
|
||||
.card.card-highlighted
|
||||
.best-value
|
||||
strong #{translate('best_value')}
|
||||
.card-header
|
||||
h2 #{translate("standard")}
|
||||
h5.tagline #{translate("tagline_collaborator")}
|
||||
.circle
|
||||
+price_collaborator
|
||||
+features_collaborator(location)
|
||||
.col-md-4
|
||||
.card.card-last
|
||||
.card-header
|
||||
h2 #{translate("professional")}
|
||||
h5.tagline #{translate("tagline_professional")}
|
||||
.circle
|
||||
+price_professional
|
||||
+features_professional(location)
|
||||
|
||||
.card-group.text-centered(ng-if="ui.view == 'student'")
|
||||
.col-md-4
|
||||
.card.card-first
|
||||
.card-header
|
||||
h2 #{translate("free")}
|
||||
h5.tagline #{translate("tagline_free")}
|
||||
.circle #{translate("free")}
|
||||
+features_free(location)
|
||||
|
||||
.col-md-4
|
||||
.card.card-highlighted
|
||||
+card_student_annual(location)
|
||||
|
||||
.col-md-4
|
||||
.card.card-last
|
||||
+card_student_monthly(location)
|
|
@ -1,9 +0,0 @@
|
|||
- var featuresPageVariantNew = splitTestVariants && splitTestVariants['features-page'] && splitTestVariants['features-page'] === 'new'
|
||||
|
||||
- var newVariantSegmentation = {splitTest: 'features-page', splitTestVariant: 'new'}
|
||||
- var defaultVariantSegmentation = {splitTest: 'features-page', splitTestVariant: 'default'}
|
||||
|
||||
if featuresPageVariantNew
|
||||
p !{translate("get_most_subscription_by_checking_features", {}, [{name: 'a', attrs: {href: '/about/features-overview', 'event-tracking':'features-page-link', 'event-tracking-trigger': 'click', 'event-tracking-mb': 'true', 'event-segmentation': newVariantSegmentation}}])}
|
||||
else
|
||||
p !{translate("get_most_subscription_by_checking_premium_features", {}, [{name: 'a', attrs: {href: '/learn/how-to/Overleaf_premium_features', 'event-tracking':'features-page-link', 'event-tracking-trigger': 'click', 'event-tracking-mb': 'true', 'event-segmentation': defaultVariantSegmentation}}])}
|
|
@ -1,9 +0,0 @@
|
|||
p
|
||||
i * !{translate("subject_to_additional_vat")}
|
||||
|
||||
if (personalSubscription.recurly.activeCoupons.length > 0)
|
||||
i * !{translate("coupons_not_included")}:
|
||||
ul
|
||||
each coupon in personalSubscription.recurly.activeCoupons
|
||||
li
|
||||
i= coupon.description || coupon.name
|
|
@ -29,7 +29,6 @@
|
|||
"blog": "Blog",
|
||||
"bonus_please_recommend_us": "Bonus - Doporučte nás prosím",
|
||||
"built_in": "Vestavěný",
|
||||
"buy_now": "Kupte teď!",
|
||||
"can_edit": "Může upravovat",
|
||||
"can_link_to_sl_with_html": "Můžete odkázat na __appName__ pomocí následujícího HTML kódu:",
|
||||
"can_revert_back_blurb": "Při samostatné i skupinové práci můžou vzniknout chyby. Vrátit se k předchozí verzi je snadné a vy se tak nemusíte obávat ztráty dat nebo nechtěných změn.",
|
||||
|
|
|
@ -136,7 +136,6 @@
|
|||
"built_in": "Indbygget",
|
||||
"bulk_accept_confirm": "Er du sikker på, at du vil acceptere de valgte __nChanges__ ændringer?",
|
||||
"bulk_reject_confirm": "Er du sikker på, at du vil afvise de valgte __nChanges__ ændringer?",
|
||||
"buy_now": "Køb nu!",
|
||||
"by": "af",
|
||||
"can_edit": "Kan Redigere",
|
||||
"can_link_institution_email_acct_to_institution_acct": "Du kan nu kæde din <b>__appName__</b>–konto <b>__email__</b> sammen med din institutionelle konto fra <b>__institutionName__</b>.",
|
||||
|
@ -926,7 +925,6 @@
|
|||
"somthing_went_wrong_compiling": "Beklager, noget gik galt og dit projekt kunne ikke kompiléres. Vent lidt og prøv igen.",
|
||||
"sorry_something_went_wrong_opening_the_document_please_try_again": "Beklager, der skete en uventet fejl i forsøget på at åbne dette indhold i Overleaf. Prøv venligst igen.",
|
||||
"source": "Kilde",
|
||||
"special_price_student": "Studenterabonnementer Til Specialpris",
|
||||
"spell_check": "Stavekontrol",
|
||||
"spread_the_word_and_fill_bar": "Spred budskabet og fyld baren",
|
||||
"sso_link_error": "Fejl i kontosammenkædningen",
|
||||
|
|
|
@ -100,7 +100,6 @@
|
|||
"back_to_your_projects": "Zurück zu deinen Projekten",
|
||||
"become_an_advisor": "Werde ein __appName__-Berater",
|
||||
"best_choices_companies_universities_non_profits": "Die beste Wahl für Unternehmen, Universitäten und gemeinnützige Organisationen",
|
||||
"best_value": "Bester Wert",
|
||||
"beta": "Beta",
|
||||
"beta_feature_badge": "Betafunktionsmerkmal",
|
||||
"beta_program_already_participating": "Du bist dem Beta-Programm beigetreten",
|
||||
|
@ -127,7 +126,6 @@
|
|||
"built_in": "Eigener",
|
||||
"bulk_accept_confirm": "Möchtest du die ausgewählten __nChanges__-Änderungen wirklich akzeptieren?",
|
||||
"bulk_reject_confirm": "Möchtest du die ausgewählten __nChanges__-Änderungen wirklich ablehnen?",
|
||||
"buy_now": "Kaufe jetzt!",
|
||||
"buy_now_no_exclamation_mark": "Jetzt kaufen",
|
||||
"by": "von",
|
||||
"by_subscribing_you_agree_to_our_terms_of_service": "Mit der Anmeldung stimmst du unseren <0>Nutzungsbedingungen</0> zu.",
|
||||
|
@ -1131,7 +1129,6 @@
|
|||
"somthing_went_wrong_compiling": "Entschuldigung, es ist etwas schief gegangen und dein Projekt konnte nicht kompiliert werden. Versuche es in ein paar Minuten erneut.",
|
||||
"sorry_something_went_wrong_opening_the_document_please_try_again": "Entschuldigung, beim Versuch, diesen Inhalt auf Overleaf zu öffnen, ist ein unerwarteter Fehler aufgetreten. Bitte versuche es erneut.",
|
||||
"source": "Quelldateien",
|
||||
"special_price_student": "Sonderpreis-Studenten-Abonnements",
|
||||
"spell_check": "Rechtschreibprüfung",
|
||||
"spread_the_word_and_fill_bar": "Sag es weiter und fülle diesen Balken",
|
||||
"sso_account_already_linked": "Das Konto ist bereits mit einem anderen __appName__-Nutzer verknüpft",
|
||||
|
@ -1185,12 +1182,6 @@
|
|||
"syntax_validation": "Syntaxüberprüfung",
|
||||
"tab_connecting": "Verbindung mit dem Editor with hergestellt",
|
||||
"tab_no_longer_connected": "Dieser Browser Tab ist nicht mehr mit dem Editor verbunden",
|
||||
"tagline_collaborator": "Ideal für gemeinsame Projekte",
|
||||
"tagline_free": "Perfekt für den Einstieg",
|
||||
"tagline_personal": "Ideal, wenn du alleine arbeitest",
|
||||
"tagline_professional": "Für diejenigen, die mit vielen zusammenarbeiten",
|
||||
"tagline_student_annual": "Spare noch mehr",
|
||||
"tagline_student_monthly": "Großartig für ein einzelnes Semester",
|
||||
"tags": "Stichworte",
|
||||
"take_me_home": "Bring mich nach Hause!",
|
||||
"take_short_survey": "Nimm an einer kurzen Umfrage teil",
|
||||
|
|
|
@ -130,7 +130,6 @@
|
|||
"back_to_your_projects": "Back to your projects",
|
||||
"become_an_advisor": "Become an __appName__ advisor",
|
||||
"best_choices_companies_universities_non_profits": "Best choice for companies, universities and non-profits",
|
||||
"best_value": "Best value",
|
||||
"beta": "Beta",
|
||||
"beta_feature_badge": "Beta feature badge",
|
||||
"beta_program_already_participating": "You are enrolled in the Beta Program",
|
||||
|
@ -160,7 +159,6 @@
|
|||
"built_in": "Built-In",
|
||||
"bulk_accept_confirm": "Are you sure you want to accept the selected __nChanges__ changes?",
|
||||
"bulk_reject_confirm": "Are you sure you want to reject the selected __nChanges__ changes?",
|
||||
"buy_now": "Buy Now!",
|
||||
"buy_now_no_exclamation_mark": "Buy now",
|
||||
"by": "by",
|
||||
"by_subscribing_you_agree_to_our_terms_of_service": "By subscribing, you agree to our <0>terms of service</0>.",
|
||||
|
@ -1480,7 +1478,6 @@
|
|||
"sort_by": "Sort by",
|
||||
"sort_by_x": "Sort by __x__",
|
||||
"source": "Source",
|
||||
"special_price_student": "Special Price Student Plans",
|
||||
"spell_check": "Spell check",
|
||||
"spread_the_word_and_fill_bar": "Spread the word and fill this bar up",
|
||||
"sso_account_already_linked": "Account already linked to another __appName__ user",
|
||||
|
@ -1543,12 +1540,6 @@
|
|||
"tag_color": "Tag color",
|
||||
"tag_name_cannot_exceed_characters": "Tag name cannot exceed __maxLength__ characters",
|
||||
"tag_name_is_already_used": "Tag \"__tagName__\" already exists",
|
||||
"tagline_collaborator": "Great for shared projects",
|
||||
"tagline_free": "Perfect for getting started",
|
||||
"tagline_personal": "Ideal when working solo",
|
||||
"tagline_professional": "For those working with many",
|
||||
"tagline_student_annual": "Save even more",
|
||||
"tagline_student_monthly": "Great for a single term",
|
||||
"tags": "Tags",
|
||||
"take_me_home": "Take me home!",
|
||||
"take_short_survey": "Take a short survey",
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
"blog": "Blog",
|
||||
"bonus_please_recommend_us": "Bono - Recomiéndanos, por favor",
|
||||
"built_in": "Integrado",
|
||||
"buy_now": "¡Comprar ahora!",
|
||||
"can_edit": "Puede editar",
|
||||
"can_link_to_sl_with_html": "Puedes enlazar a __appName__ con el siguiente código HTML:",
|
||||
"can_revert_back_blurb": "Trabajando solo o con colaboradores, a veces se cometen errores. Revirtiendo los cambios a versiones previas es simple y elimina el riesgo de perder trabajo o lamentar un cambio.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"blog": "Blogi",
|
||||
"bonus_please_recommend_us": "Bonus - Ole hyvä ja suosittele meitä",
|
||||
"built_in": "Sisäänrakennettu",
|
||||
"buy_now": "Osta Heti!",
|
||||
"can_edit": "Voi muokata",
|
||||
"can_link_to_sl_with_html": "Voit linkittää sovellukseen __appName__ seuraavalla HTML-koodilla:",
|
||||
"can_revert_back_blurb": "Tehdessä töitä itsenäisesti tai yhdessä tapahtuu joskus virheitä. Voit yksinkertaisesti palata takaisin aiempiin versioihin, joka poistaa sinulta riskin, että kadottaisit tehdyn työn tai kadut muutosta.",
|
||||
|
|
|
@ -90,7 +90,6 @@
|
|||
"autocomplete_references": "Auto-complétion des références (à l’intérieur d’une commande <code>\\cite{}</code>)",
|
||||
"back_to_editor": "Retour à l’éditeur",
|
||||
"back_to_your_projects": "Retourner à mes projets",
|
||||
"best_value": "Meilleure offre",
|
||||
"beta": "Bêta",
|
||||
"beta_feature_badge": "Badge de fonctionnalité bêta",
|
||||
"beta_program_already_participating": "Vous participez au programme de bêta",
|
||||
|
@ -116,7 +115,6 @@
|
|||
"built_in": "Intégré",
|
||||
"bulk_accept_confirm": "Êtes-vous sûr·e de vouloir accepter les __nChanges__ modifications sélectionnées ?",
|
||||
"bulk_reject_confirm": "Êtes-vous sûr·e de vouloir rejeter les __nChanges__ modifications sélectionnées ?",
|
||||
"buy_now": "Acheter maintenant !",
|
||||
"by": "par",
|
||||
"by_subscribing_you_agree_to_our_terms_of_service": "En vous inscrivant, vous acceptez nos <0>conditions d’utilisation</0>.",
|
||||
"can_edit": "Édition autorisée",
|
||||
|
@ -934,7 +932,6 @@
|
|||
"somthing_went_wrong_compiling": "Désolé, quelque chose ne fonctionne pas et votre projet ne peut pas être compilé. Veuillez réessayer dans quelques instants.",
|
||||
"sorry_something_went_wrong_opening_the_document_please_try_again": "Désolé, une erreur s’est produite lors de l’ouverture de ce contenu sur Overleaf. Veuillez réessayer",
|
||||
"source": "Code source",
|
||||
"special_price_student": "Prix spécial pour les étudiant·e·s",
|
||||
"spell_check": "Correcteur orthographique",
|
||||
"spread_the_word_and_fill_bar": "Parlez-en autour de vous et remplissez cette barre",
|
||||
"sso_account_already_linked": "Compte déjà lié à un·e autre utilisateur·rice __appName__",
|
||||
|
@ -976,12 +973,6 @@
|
|||
"sync_to_github": "Synchroniser avec GitHub",
|
||||
"synctex_failed": "Impossible de trouver le fichier source correspondant",
|
||||
"syntax_validation": "Vérification du code",
|
||||
"tagline_collaborator": "Parfait pour les projets partagés",
|
||||
"tagline_free": "Parfait pour se lancer",
|
||||
"tagline_personal": "Idéal lorsque vous travaillez seul·e",
|
||||
"tagline_professional": "Pour celles et ceux qui travaillent nombreux",
|
||||
"tagline_student_annual": "Économisez encore plus",
|
||||
"tagline_student_monthly": "Parfait pour un seul semestre",
|
||||
"take_me_home": "Retour à la maison !",
|
||||
"tc_everyone": "Tout le monde",
|
||||
"tc_guests": "Invités",
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
"blog": "Blog",
|
||||
"bonus_please_recommend_us": "Bonus - Per favore raccomandaci",
|
||||
"built_in": "Built-In",
|
||||
"buy_now": "Compra Ora!",
|
||||
"can_edit": "Può Modificare",
|
||||
"can_link_to_sl_with_html": "Puoi collegare a __appName__ con il seguente HTML:",
|
||||
"can_revert_back_blurb": "Sia in collaborazione che in proprio, si possono fare errori. Ritornare a versioni precedenti è semplice e rimuove il rischio di perdere lavoro o rimpiangere una modifica.",
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
"blog": "ブログ",
|
||||
"bonus_please_recommend_us": "ボーナス- 当社を推薦してください",
|
||||
"built_in": "組み込み",
|
||||
"buy_now": "今すぐ購入!",
|
||||
"can_edit": "編集可能",
|
||||
"can_link_to_sl_with_html": "次のHTMLで __appName__ にリンクすることができます:",
|
||||
"can_revert_back_blurb": "共同作業時あるいはご自身でミスをしてしまうことがあります。以前のバージョンに復元する機能で簡単に、作業の紛失や間違った変更のリスクを取り除くことができます。",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"built_in": "빌트인",
|
||||
"bulk_accept_confirm": "선택하신 __nChanges__개의 변경 사항을 승락하시겠습니까?",
|
||||
"bulk_reject_confirm": "선택하신 __nChanges__개의 변경 사항을 거절하시겠습니까?",
|
||||
"buy_now": "지금 구매하세요!",
|
||||
"can_edit": "편집가능",
|
||||
"can_link_to_sl_with_html": "다음의 HTML에 __appName__(을)를 연결하실 수 있습니다:",
|
||||
"can_revert_back_blurb": "공동 연구자와 함께하거나 혼자 작업하면서 실수가 생길 수 있습니다. 이전으로 돌아가기를 사용하십시오. 작업 손실 위험이 없으며 후회하지 않으실 것입니다.",
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
"autocomplete_references": "Refereer Autocomplete (in een <code>\\cite{}</code> blok)",
|
||||
"back_to_editor": "Terug naar de editor",
|
||||
"back_to_your_projects": "Terug naar je projecten",
|
||||
"best_value": "Voordeligste koop",
|
||||
"beta": "Beta",
|
||||
"beta_program_already_participating": "U neemt al deel aan het Bèta Programma",
|
||||
"beta_program_badge_description": "TIjdens het gebruik van __appName__, zullen bèta opties gemarkeerd zijn met deze badge:",
|
||||
|
@ -75,7 +74,6 @@
|
|||
"browsing_project_as_of": "Door project aan het bladeren vanaf",
|
||||
"browsing_project_labelled": "Bladeren door projectversie gelabeld",
|
||||
"built_in": "Ingebouwd",
|
||||
"buy_now": "Nu kopen!",
|
||||
"can_edit": "Kan Bewerken",
|
||||
"can_link_to_sl_with_html": "Je kunt naar __appName__ linken via de volgende HTML-code:",
|
||||
"can_revert_back_blurb": "Zowel in samenwerkingsverband als in je eentje worden soms fouten gemaakt. Een vorige versie herstellen is eenvoudig en elimineert het risico op verlies van je werk of spijt van een wijziging.",
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
"blog": "Blogg",
|
||||
"bonus_please_recommend_us": "Bonus - Anbefal oss",
|
||||
"built_in": "Innebygget",
|
||||
"buy_now": "Kjøp Nå!",
|
||||
"can_edit": "Kan redigere",
|
||||
"can_link_to_sl_with_html": "Du kan lenke til __appName__ ved å bruke følgende HTML:",
|
||||
"can_revert_back_blurb": "Ved samarbeid eller når du jobber for deg selv, skjer det ofte feil. Gjenoppretting av tidligere versjoner er enkelt og eliminerer risikoen for å miste arbeid eller angre på en endring.",
|
||||
|
|
|
@ -72,7 +72,6 @@
|
|||
"autocomplete_references": "Referência Autocompletar (dentro do bloco <code>\\cite{}</code>)",
|
||||
"back_to_editor": "Voltar ao editor",
|
||||
"back_to_your_projects": "Voltar ao seus projetos",
|
||||
"best_value": "Melhor valor",
|
||||
"beta": "Beta",
|
||||
"beta_program_already_participating": "Você está inscrito no Programa Beta.",
|
||||
"beta_program_badge_description": "Enquanto usa o __appName__, você verá os recursos beta marcados com este emblema:",
|
||||
|
@ -96,7 +95,6 @@
|
|||
"built_in": "Embutido",
|
||||
"bulk_accept_confirm": "Vocês tem certeza que deseja aceitar as __nChanges__ alterações selecionadas?",
|
||||
"bulk_reject_confirm": "Vocês tem certeza que deseja rejeitar as __nChanges__ alterações selecionadas?",
|
||||
"buy_now": "Comprar agora!",
|
||||
"by": "por",
|
||||
"can_edit": "Pode Editar",
|
||||
"can_link_to_sl_with_html": "Você pode vincular o __appName__ com o HTML a seguir:",
|
||||
|
@ -688,11 +686,6 @@
|
|||
"sync_to_dropbox": "Sincronize com Dropbox",
|
||||
"sync_to_github": "Sincronizar com GitHub",
|
||||
"syntax_validation": "Checar código",
|
||||
"tagline_collaborator": "Incrível para trabalhos em grupo",
|
||||
"tagline_personal": "Ideal para trabalhar individualmente",
|
||||
"tagline_professional": "Para aqueles que trabalhos com vários",
|
||||
"tagline_student_annual": "Economize ainda mais",
|
||||
"tagline_student_monthly": "Incrível para um único mandato",
|
||||
"take_me_home": "Ir para o início!",
|
||||
"tc_everyone": "Todos",
|
||||
"tc_guests": "Convidados",
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
"blog": "Блог",
|
||||
"bonus_please_recommend_us": "Бонус - пожалуйста, рекомендуйте нас",
|
||||
"built_in": "встроенный",
|
||||
"buy_now": "Купить!",
|
||||
"can_edit": "Могут править",
|
||||
"can_link_to_sl_with_html": "Вы можете вставить ссылку на __appName__ с помощью кода:",
|
||||
"can_revert_back_blurb": "Ошибки случаются вне зависимости от того, работаете ли Вы один или вместе с соавторами. Вы всегда можете легко вернуться к предыдущей версии, что устраняет риск потери работы или внесения нежелательных изменений.",
|
||||
|
|
|
@ -90,7 +90,6 @@
|
|||
"autocomplete_references": "Autokomplettering av referenser (inuti <code>\\cite{}</code>)",
|
||||
"back_to_editor": "Tillbaka till textredigeraren",
|
||||
"back_to_your_projects": "Tillbaka till dina projekt",
|
||||
"best_value": "Bästa värde",
|
||||
"beta": "Beta",
|
||||
"beta_program_already_participating": "Du är ansluten till beta-programmet.",
|
||||
"beta_program_badge_description": "När du använder __appName__ kommer du att se beta-funktioner markerade med denna ikon:",
|
||||
|
@ -116,7 +115,6 @@
|
|||
"built_in": "Inbyggd",
|
||||
"bulk_accept_confirm": "Är du säker på att du vill acceptera de __nChanges__ valda ändringarna?",
|
||||
"bulk_reject_confirm": "Är du säker på att du vill avvisa de __nChanges__ valda ändringarna?",
|
||||
"buy_now": "Köp nu!",
|
||||
"by": "av",
|
||||
"can_edit": "Kan redigera",
|
||||
"can_link_institution_email_acct_to_institution_acct": "Du kan nu länka ditt <b>__email__</b> <b>__appName__</b>-konto till ditt <b>__institutionName__</b> institutionella konto.",
|
||||
|
@ -913,7 +911,6 @@
|
|||
"sort_by": "Sortera efter",
|
||||
"sort_by_x": "Sortera efter __x__",
|
||||
"source": "Källfiler",
|
||||
"special_price_student": "Studentplaner till specialpris",
|
||||
"spell_check": "Stavningskontroll",
|
||||
"spread_the_word_and_fill_bar": "Sprid ordet och fyll upp denna mätaren",
|
||||
"sso_account_already_linked": "Kontot är redan kopplat till en annan __appName__-användare",
|
||||
|
@ -958,12 +955,6 @@
|
|||
"synctex_failed": "Kunde ej finna motsvarande källfil",
|
||||
"syntax_validation": "Kodkontroll",
|
||||
"tag_name_cannot_exceed_characters": "Taggnamnet får inte överstiga __maxLength__ tecken.",
|
||||
"tagline_collaborator": "Bäst för delade projekt",
|
||||
"tagline_free": "Perfekt för att komma igång",
|
||||
"tagline_personal": "Perfekt när du jobbar ensam",
|
||||
"tagline_professional": "För de som jobbar med många",
|
||||
"tagline_student_annual": "Spara ännu mer",
|
||||
"tagline_student_monthly": "Perfekt för en termin",
|
||||
"take_me_home": "Ta mig härifrån!",
|
||||
"take_short_survey": "Gör en kort enkät",
|
||||
"tc_everyone": "Alla",
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
"blog": "Blog",
|
||||
"bonus_please_recommend_us": "Ekstra özellik - Bizi tavsiye edin",
|
||||
"built_in": "Yerleşik",
|
||||
"buy_now": "Şimdi satın al!",
|
||||
"can_edit": "Değişiklik Yapabilir",
|
||||
"can_link_to_sl_with_html": "__appName__ bağlantısını, HTML ile, şu şekilde paylaşabilirsiniz",
|
||||
"can_revert_back_blurb": "İş arkadaşlarınız ile yaptığınız çalışmalarda ya da kendi çalışmalarınızda bazen hatalar yapabilirsiniz. Projenin eski versiyonlarını geri getirmek oldukça basittir bu sayede yapılan değişiklikler için pişmanlık duymazsınız ve işin bozulma riski ortadan kalkmış olur.",
|
||||
|
|
|
@ -90,7 +90,6 @@
|
|||
"autocomplete_references": "参考文献自动补全(在 <code>\\cite{}</code> 中)",
|
||||
"back_to_editor": "回到编辑器",
|
||||
"back_to_your_projects": "返回您的项目",
|
||||
"best_value": "最佳性价比",
|
||||
"beta": "试用版",
|
||||
"beta_feature_badge": "Beta功能徽章",
|
||||
"beta_program_already_participating": "您加入了 Beta 版测试",
|
||||
|
@ -116,7 +115,6 @@
|
|||
"built_in": "内嵌",
|
||||
"bulk_accept_confirm": "您确认采纳__nChanges__ 个变动吗?",
|
||||
"bulk_reject_confirm": "您确认拒绝__nChanges__ 个变动吗?",
|
||||
"buy_now": "现在购买!",
|
||||
"by": "由",
|
||||
"by_subscribing_you_agree_to_our_terms_of_service": "订阅即表示您同意我们的<0>服务条款</0>。",
|
||||
"can_edit": "可以编辑",
|
||||
|
@ -930,7 +928,6 @@
|
|||
"somthing_went_wrong_compiling": "抱歉,出错了,您的项目无法编译。请在几分钟后再试。",
|
||||
"sorry_something_went_wrong_opening_the_document_please_try_again": "很抱歉,尝试在Overleaf打开此内容时发生意外错误。请再试一次。",
|
||||
"source": "源码",
|
||||
"special_price_student": "特价学生计划",
|
||||
"spell_check": "拼写检查",
|
||||
"spread_the_word_and_fill_bar": "传播并填入此栏",
|
||||
"sso_account_already_linked": "帐户已链接到另一个__appName__用户",
|
||||
|
@ -972,12 +969,6 @@
|
|||
"sync_to_github": "同步到 GitHub",
|
||||
"synctex_failed": "找不到相应的源文件",
|
||||
"syntax_validation": "代码检查",
|
||||
"tagline_collaborator": "非常适合共同合作的项目",
|
||||
"tagline_free": "非常适合入门",
|
||||
"tagline_personal": "理想的个人项目实现",
|
||||
"tagline_professional": "对多人合作多项目来说",
|
||||
"tagline_student_annual": "节省更多",
|
||||
"tagline_student_monthly": "对单次使用来说简直完美",
|
||||
"take_me_home": "我要返回!",
|
||||
"tc_everyone": "所有人",
|
||||
"tc_guests": "受邀用户",
|
||||
|
|
Loading…
Reference in a new issue