This commit is contained in:
Yang Luo 2023-05-31 11:41:47 +08:00
parent 7caa885131
commit 0aa4df40c6
16 changed files with 126 additions and 280 deletions

View File

@ -166,7 +166,7 @@ class PlanEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("plan:PricePerMonth"), i18next.t("plan:PricePerMonth - Tooltip"))} : {Setting.getLabel(i18next.t("plan:Price per month"), i18next.t("plan:Price per month - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<InputNumber value={this.state.plan.pricePerMonth} onChange={value => { <InputNumber value={this.state.plan.pricePerMonth} onChange={value => {
@ -176,7 +176,7 @@ class PlanEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("plan:PricePerYear"), i18next.t("plan:PricePerYear - Tooltip"))} : {Setting.getLabel(i18next.t("plan:Price per year"), i18next.t("plan:Price per year - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<InputNumber value={this.state.plan.pricePerYear} onChange={value => { <InputNumber value={this.state.plan.pricePerYear} onChange={value => {

View File

@ -178,7 +178,7 @@ class PricingEditPage extends React.Component {
</Row> </Row>
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("pricing:Sub plans"), i18next.t("pricing:Sub plans - Tooltip"))} : {Setting.getLabel(i18next.t("general:Plans"), i18next.t("general:Plans - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<Select mode="tags" style={{width: "100%"}} value={this.state.pricing.plans} <Select mode="tags" style={{width: "100%"}} value={this.state.pricing.plans}

View File

@ -188,7 +188,7 @@ class SubscriptionEditPage extends React.Component {
<Row style={{marginTop: "20px"}} > <Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}> <Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("subscription:Plan"), i18next.t("subscription:Plan - Tooltip"))} : {Setting.getLabel(i18next.t("general:Plan"), i18next.t("general:Plan - Tooltip"))} :
</Col> </Col>
<Col span={22} > <Col span={22} >
<Select virtual={false} style={{width: "100%"}} value={this.state.subscription.plan} onChange={(value => {this.updateSubscriptionField("plan", value);})} <Select virtual={false} style={{width: "100%"}} value={this.state.subscription.plan} onChange={(value => {this.updateSubscriptionField("plan", value);})}
@ -265,8 +265,8 @@ class SubscriptionEditPage extends React.Component {
this.updateSubscriptionField("state", value); this.updateSubscriptionField("state", value);
})} })}
options={[ options={[
{value: "Approved", name: i18next.t("subscription:Approved")}, {value: "Approved", name: i18next.t("permission:Approved")},
{value: "Pending", name: i18next.t("subscription:Pending")}, {value: "Pending", name: i18next.t("permission:Pending")},
].map((item) => Setting.getOption(item.name, item.value))} ].map((item) => Setting.getOption(item.name, item.value))}
/> />
</Col> </Col>

View File

@ -140,7 +140,7 @@ class SubscriptionListPage extends BaseListPage {
...this.getColumnSearchProps("duration"), ...this.getColumnSearchProps("duration"),
}, },
{ {
title: i18next.t("subscription:Plan"), title: i18next.t("general:Plan"),
dataIndex: "plan", dataIndex: "plan",
key: "plan", key: "plan",
width: "140px", width: "140px",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Anwendungen", "Applications": "Anwendungen",
"Applications that require authentication": "Anwendungen, die eine Authentifizierung erfordern", "Applications that require authentication": "Anwendungen, die eine Authentifizierung erfordern",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Öffentliches Avatarbild für den Benutzer", "Avatar - Tooltip": "Öffentliches Avatarbild für den Benutzer",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Telefon", "Phone": "Telefon",
"Phone - Tooltip": "Telefonnummer", "Phone - Tooltip": "Telefonnummer",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Pläne", "Plans": "Pläne",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Vorschau", "Preview": "Vorschau",
"Preview - Tooltip": "Vorschau der konfigurierten Effekte", "Preview - Tooltip": "Vorschau der konfigurierten Effekte",
"Pricings": "Preise", "Pricings": "Preise",
@ -278,6 +277,8 @@
"Records": "Datensätze", "Records": "Datensätze",
"Request URI": "Anforderungs-URI", "Request URI": "Anforderungs-URI",
"Resources": "Ressourcen", "Resources": "Ressourcen",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Rollen", "Roles": "Rollen",
"Roles - Tooltip": "Rollen, denen der Benutzer angehört", "Roles - Tooltip": "Rollen, denen der Benutzer angehört",
"Save": "Speichern", "Save": "Speichern",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Es tut uns leid, aber Sie haben keine Berechtigung, auf diese Seite zuzugreifen, oder Sie sind nicht angemeldet.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Es tut uns leid, aber Sie haben keine Berechtigung, auf diese Seite zuzugreifen, oder Sie sind nicht angemeldet.",
"State": "Bundesland / Staat", "State": "Bundesland / Staat",
"State - Tooltip": "Bundesland", "State - Tooltip": "Bundesland",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Abonnements", "Subscriptions": "Abonnements",
"Successfully added": "Erfolgreich hinzugefügt", "Successfully added": "Erfolgreich hinzugefügt",
"Successfully deleted": "Erfolgreich gelöscht", "Successfully deleted": "Erfolgreich gelöscht",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "pro Monat",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Preis pro Monat", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "pro Monat"
"PricePerYear": "Preis pro Jahr",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Rolle im aktuellen Plan enthalten"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Preisseite URL kopieren", "Copy pricing page URL": "Preisseite URL kopieren",
@ -547,8 +542,6 @@
"Has trial": "Testphase verfügbar", "Has trial": "Testphase verfügbar",
"Has trial - Tooltip": "Verfügbarkeit der Testphase nach Auswahl eines Plans", "Has trial - Tooltip": "Verfügbarkeit der Testphase nach Auswahl eines Plans",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Zusatzpläne",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Testphase Dauer", "Trial duration": "Testphase Dauer",
"Trial duration - Tooltip": "Dauer der Testphase", "Trial duration - Tooltip": "Dauer der Testphase",
"days trial available!": "Tage Testphase verfügbar!", "days trial available!": "Tage Testphase verfügbar!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail des Produkts", "Detail - Tooltip": "Detail des Produkts",
"Dummy": "Dummy",
"Edit Product": "Produkt bearbeiten", "Edit Product": "Produkt bearbeiten",
"I have completed the payment": "Ich habe die Zahlung abgeschlossen", "I have completed the payment": "Ich habe die Zahlung abgeschlossen",
"Image": "Bild", "Image": "Bild",
@ -772,22 +766,14 @@
"sign in now": "Jetzt anmelden" "sign in now": "Jetzt anmelden"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Laufzeit", "Duration": "Laufzeit",
"Duration - Tooltip": "Laufzeit des Abonnements", "Duration - Tooltip": "Laufzeit des Abonnements",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Enddatum", "End date": "Enddatum",
"End date - Tooltip": "Enddatum", "End date - Tooltip": "Enddatum",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Startdatum", "Start date": "Startdatum",
"Start date - Tooltip": "Startdatum", "Start date - Tooltip": "Startdatum"
"Sub plan": "Abonnementplan",
"Sub plan - Tooltip": "Abonnementplan",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Abonnenten",
"Sub users - Tooltip": "Abonnenten"
}, },
"syncer": { "syncer": {
"Affiliation table": "Zuordnungstabelle", "Affiliation table": "Zuordnungstabelle",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Applications", "Applications": "Applications",
"Applications that require authentication": "Applications that require authentication", "Applications that require authentication": "Applications that require authentication",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Public avatar image for the user", "Avatar - Tooltip": "Public avatar image for the user",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Phone", "Phone": "Phone",
"Phone - Tooltip": "Phone number", "Phone - Tooltip": "Phone number",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Plans", "Plans": "Plans",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Preview", "Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects", "Preview - Tooltip": "Preview the configured effects",
"Pricings": "Pricings", "Pricings": "Pricings",
@ -278,6 +277,8 @@
"Records": "Records", "Records": "Records",
"Request URI": "Request URI", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to", "Roles - Tooltip": "Roles that the user belongs to",
"Save": "Save", "Save": "Save",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Sorry, you do not have permission to access this page or logged in status invalid.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Sorry, you do not have permission to access this page or logged in status invalid.",
"State": "State", "State": "State",
"State - Tooltip": "State", "State - Tooltip": "State",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Subscriptions", "Subscriptions": "Subscriptions",
"Successfully added": "Successfully added", "Successfully added": "Successfully added",
"Successfully deleted": "Successfully deleted", "Successfully deleted": "Successfully deleted",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "per month",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Price per month", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "per month"
"PricePerYear": "Price per year",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Role included in the current plane"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copy pricing page URL", "Copy pricing page URL": "Copy pricing page URL",
@ -547,8 +542,6 @@
"Has trial": "Has trial", "Has trial": "Has trial",
"Has trial - Tooltip": "Availability of the trial period after choosing a plan", "Has trial - Tooltip": "Availability of the trial period after choosing a plan",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Sub plans",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Trial duration", "Trial duration": "Trial duration",
"Trial duration - Tooltip": "Trial duration period", "Trial duration - Tooltip": "Trial duration period",
"days trial available!": "days trial available!", "days trial available!": "days trial available!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy",
"Edit Product": "Edit Product", "Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment", "I have completed the payment": "I have completed the payment",
"Image": "Image", "Image": "Image",
@ -772,22 +766,14 @@
"sign in now": "sign in now" "sign in now": "sign in now"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Duration", "Duration": "Duration",
"Duration - Tooltip": "Subscription duration", "Duration - Tooltip": "Subscription duration",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "End date", "End date": "End date",
"End date - Tooltip": "End date", "End date - Tooltip": "End date",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Start date", "Start date": "Start date",
"Start date - Tooltip": "Start date", "Start date - Tooltip": "Start date"
"Sub plan": "Sub plan",
"Sub plan - Tooltip": "Sub plan",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Sub users",
"Sub users - Tooltip": "Sub users"
}, },
"syncer": { "syncer": {
"Affiliation table": "Affiliation table", "Affiliation table": "Affiliation table",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Aplicaciones", "Applications": "Aplicaciones",
"Applications that require authentication": "Aplicaciones que requieren autenticación", "Applications that require authentication": "Aplicaciones que requieren autenticación",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Imagen de avatar pública para el usuario", "Avatar - Tooltip": "Imagen de avatar pública para el usuario",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Teléfono", "Phone": "Teléfono",
"Phone - Tooltip": "Número de teléfono", "Phone - Tooltip": "Número de teléfono",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Planes", "Plans": "Planes",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Avance", "Preview": "Avance",
"Preview - Tooltip": "Vista previa de los efectos configurados", "Preview - Tooltip": "Vista previa de los efectos configurados",
"Pricings": "Precios", "Pricings": "Precios",
@ -278,6 +277,8 @@
"Records": "Registros", "Records": "Registros",
"Request URI": "URI de solicitud", "Request URI": "URI de solicitud",
"Resources": "Recursos", "Resources": "Recursos",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Roles", "Roles": "Roles",
"Roles - Tooltip": "Roles a los que pertenece el usuario", "Roles - Tooltip": "Roles a los que pertenece el usuario",
"Save": "Guardar", "Save": "Guardar",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Lo siento, no tiene permiso para acceder a esta página o su estado de inicio de sesión es inválido.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Lo siento, no tiene permiso para acceder a esta página o su estado de inicio de sesión es inválido.",
"State": "Estado", "State": "Estado",
"State - Tooltip": "Estado", "State - Tooltip": "Estado",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Suscripciones", "Subscriptions": "Suscripciones",
"Successfully added": "Éxito al agregar", "Successfully added": "Éxito al agregar",
"Successfully deleted": "Éxito en la eliminación", "Successfully deleted": "Éxito en la eliminación",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "por mes",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Precio por mes", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "por mes"
"PricePerYear": "Precio por año",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Rol incluido en el plan actual"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copiar URL de la página de precios", "Copy pricing page URL": "Copiar URL de la página de precios",
@ -547,8 +542,6 @@
"Has trial": "Tiene período de prueba", "Has trial": "Tiene período de prueba",
"Has trial - Tooltip": "Disponibilidad del período de prueba después de elegir un plan", "Has trial - Tooltip": "Disponibilidad del período de prueba después de elegir un plan",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Planes adicionales",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Duración del período de prueba", "Trial duration": "Duración del período de prueba",
"Trial duration - Tooltip": "Duración del período de prueba", "Trial duration - Tooltip": "Duración del período de prueba",
"days trial available!": "días de prueba disponibles", "days trial available!": "días de prueba disponibles",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Detalle", "Detail": "Detalle",
"Detail - Tooltip": "Detalle del producto", "Detail - Tooltip": "Detalle del producto",
"Dummy": "Dummy",
"Edit Product": "Editar Producto", "Edit Product": "Editar Producto",
"I have completed the payment": "He completado el pago", "I have completed the payment": "He completado el pago",
"Image": "Imagen", "Image": "Imagen",
@ -772,22 +766,14 @@
"sign in now": "Inicie sesión ahora" "sign in now": "Inicie sesión ahora"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Duración", "Duration": "Duración",
"Duration - Tooltip": "Duración de la suscripción", "Duration - Tooltip": "Duración de la suscripción",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Fecha de finalización", "End date": "Fecha de finalización",
"End date - Tooltip": "Fecha de finalización", "End date - Tooltip": "Fecha de finalización",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Fecha de inicio", "Start date": "Fecha de inicio",
"Start date - Tooltip": "Fecha de inicio", "Start date - Tooltip": "Fecha de inicio"
"Sub plan": "Plan de suscripción",
"Sub plan - Tooltip": "Plan de suscripción",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Usuarios de la suscripción",
"Sub users - Tooltip": "Usuarios de la suscripción"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabla de afiliación", "Affiliation table": "Tabla de afiliación",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Applications", "Applications": "Applications",
"Applications that require authentication": "Applications qui nécessitent une authentification", "Applications that require authentication": "Applications qui nécessitent une authentification",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Image d'avatar public pour l'utilisateur", "Avatar - Tooltip": "Image d'avatar public pour l'utilisateur",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Téléphone", "Phone": "Téléphone",
"Phone - Tooltip": "Numéro de téléphone", "Phone - Tooltip": "Numéro de téléphone",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Plans", "Plans": "Plans",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Aperçu", "Preview": "Aperçu",
"Preview - Tooltip": "Prévisualisez les effets configurés", "Preview - Tooltip": "Prévisualisez les effets configurés",
"Pricings": "Tarifs", "Pricings": "Tarifs",
@ -278,6 +277,8 @@
"Records": "Dossiers", "Records": "Dossiers",
"Request URI": "URI de demande", "Request URI": "URI de demande",
"Resources": "Ressources", "Resources": "Ressources",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Rôles", "Roles": "Rôles",
"Roles - Tooltip": "Les rôles auxquels l'utilisateur appartient", "Roles - Tooltip": "Les rôles auxquels l'utilisateur appartient",
"Save": "Enregistrer", "Save": "Enregistrer",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Désolé, vous n'avez pas la permission d'accéder à cette page ou votre statut de connexion est invalide.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Désolé, vous n'avez pas la permission d'accéder à cette page ou votre statut de connexion est invalide.",
"State": "État", "State": "État",
"State - Tooltip": "État", "State - Tooltip": "État",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Abonnements", "Subscriptions": "Abonnements",
"Successfully added": "Ajouté avec succès", "Successfully added": "Ajouté avec succès",
"Successfully deleted": "Supprimé avec succès", "Successfully deleted": "Supprimé avec succès",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "par mois",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Prix par mois", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "par mois"
"PricePerYear": "Prix par an",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Rôle inclus dans le plan actuel"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Copier l'URL de la page tarifs", "Copy pricing page URL": "Copier l'URL de la page tarifs",
@ -547,8 +542,6 @@
"Has trial": "Essai gratuit disponible", "Has trial": "Essai gratuit disponible",
"Has trial - Tooltip": "Disponibilité de la période d'essai après avoir choisi un forfait", "Has trial - Tooltip": "Disponibilité de la période d'essai après avoir choisi un forfait",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Forfaits supplémentaires",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Durée de l'essai", "Trial duration": "Durée de l'essai",
"Trial duration - Tooltip": "Durée de la période d'essai", "Trial duration - Tooltip": "Durée de la période d'essai",
"days trial available!": "jours d'essai disponibles !", "days trial available!": "jours d'essai disponibles !",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Détail", "Detail": "Détail",
"Detail - Tooltip": "Détail du produit", "Detail - Tooltip": "Détail du produit",
"Dummy": "Dummy",
"Edit Product": "Modifier le produit", "Edit Product": "Modifier le produit",
"I have completed the payment": "J'ai effectué le paiement", "I have completed the payment": "J'ai effectué le paiement",
"Image": "Image", "Image": "Image",
@ -772,22 +766,14 @@
"sign in now": "Connectez-vous maintenant" "sign in now": "Connectez-vous maintenant"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Durée", "Duration": "Durée",
"Duration - Tooltip": "Durée de l'abonnement", "Duration - Tooltip": "Durée de l'abonnement",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Date de fin", "End date": "Date de fin",
"End date - Tooltip": "Date de fin", "End date - Tooltip": "Date de fin",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Date de début", "Start date": "Date de début",
"Start date - Tooltip": "Date de début", "Start date - Tooltip": "Date de début"
"Sub plan": "Plan de l'abonnement",
"Sub plan - Tooltip": "Plan de l'abonnement",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Utilisateurs de l'abonnement",
"Sub users - Tooltip": "Utilisateurs de l'abonnement"
}, },
"syncer": { "syncer": {
"Affiliation table": "Table d'affiliation", "Affiliation table": "Table d'affiliation",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Aplikasi", "Applications": "Aplikasi",
"Applications that require authentication": "Aplikasi yang memerlukan autentikasi", "Applications that require authentication": "Aplikasi yang memerlukan autentikasi",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Gambar avatar publik untuk pengguna", "Avatar - Tooltip": "Gambar avatar publik untuk pengguna",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Telepon", "Phone": "Telepon",
"Phone - Tooltip": "Nomor telepon", "Phone - Tooltip": "Nomor telepon",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Rencana", "Plans": "Rencana",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Tinjauan", "Preview": "Tinjauan",
"Preview - Tooltip": "Mengawali pratinjau efek yang sudah dikonfigurasi", "Preview - Tooltip": "Mengawali pratinjau efek yang sudah dikonfigurasi",
"Pricings": "Harga", "Pricings": "Harga",
@ -278,6 +277,8 @@
"Records": "Catatan", "Records": "Catatan",
"Request URI": "Permintaan URI", "Request URI": "Permintaan URI",
"Resources": "Sumber daya", "Resources": "Sumber daya",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Peran-peran", "Roles": "Peran-peran",
"Roles - Tooltip": "Peran-peran yang diikuti oleh pengguna", "Roles - Tooltip": "Peran-peran yang diikuti oleh pengguna",
"Save": "Menyimpan", "Save": "Menyimpan",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Maaf, Anda tidak memiliki izin untuk mengakses halaman ini atau status masuk tidak valid.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Maaf, Anda tidak memiliki izin untuk mengakses halaman ini atau status masuk tidak valid.",
"State": "Negara", "State": "Negara",
"State - Tooltip": "Negara", "State - Tooltip": "Negara",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Langganan", "Subscriptions": "Langganan",
"Successfully added": "Berhasil ditambahkan", "Successfully added": "Berhasil ditambahkan",
"Successfully deleted": "Berhasil dihapus", "Successfully deleted": "Berhasil dihapus",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "per bulan",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Harga per bulan", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "per bulan"
"PricePerYear": "Harga per tahun",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Peran yang termasuk dalam rencana saat ini"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Salin URL halaman harga", "Copy pricing page URL": "Salin URL halaman harga",
@ -547,8 +542,6 @@
"Has trial": "Mempunyai periode percobaan", "Has trial": "Mempunyai periode percobaan",
"Has trial - Tooltip": "Ketersediaan periode percobaan setelah memilih rencana", "Has trial - Tooltip": "Ketersediaan periode percobaan setelah memilih rencana",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Rencana Tambahan",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Durasi percobaan", "Trial duration": "Durasi percobaan",
"Trial duration - Tooltip": "Durasi periode percobaan", "Trial duration - Tooltip": "Durasi periode percobaan",
"days trial available!": "hari percobaan tersedia!", "days trial available!": "hari percobaan tersedia!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Rincian", "Detail": "Rincian",
"Detail - Tooltip": "Detail produk", "Detail - Tooltip": "Detail produk",
"Dummy": "Dummy",
"Edit Product": "Edit Produk", "Edit Product": "Edit Produk",
"I have completed the payment": "Saya telah menyelesaikan pembayaran", "I have completed the payment": "Saya telah menyelesaikan pembayaran",
"Image": "Gambar", "Image": "Gambar",
@ -772,22 +766,14 @@
"sign in now": "Masuk sekarang" "sign in now": "Masuk sekarang"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Durasi", "Duration": "Durasi",
"Duration - Tooltip": "Durasi langganan", "Duration - Tooltip": "Durasi langganan",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Tanggal Berakhir", "End date": "Tanggal Berakhir",
"End date - Tooltip": "Tanggal Berakhir", "End date - Tooltip": "Tanggal Berakhir",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Tanggal Mulai", "Start date": "Tanggal Mulai",
"Start date - Tooltip": "Tanggal Mulai", "Start date - Tooltip": "Tanggal Mulai"
"Sub plan": "Rencana Langganan",
"Sub plan - Tooltip": "Rencana Langganan",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Pengguna Langganan",
"Sub users - Tooltip": "Pengguna Langganan"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabel afiliasi", "Affiliation table": "Tabel afiliasi",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "アプリケーション", "Applications": "アプリケーション",
"Applications that require authentication": "認証が必要なアプリケーション", "Applications that require authentication": "認証が必要なアプリケーション",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "アバター", "Avatar": "アバター",
"Avatar - Tooltip": "ユーザーのパブリックアバター画像", "Avatar - Tooltip": "ユーザーのパブリックアバター画像",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "電話", "Phone": "電話",
"Phone - Tooltip": "電話番号", "Phone - Tooltip": "電話番号",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "プラン", "Plans": "プラン",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "プレビュー", "Preview": "プレビュー",
"Preview - Tooltip": "構成されたエフェクトをプレビューする", "Preview - Tooltip": "構成されたエフェクトをプレビューする",
"Pricings": "価格設定", "Pricings": "価格設定",
@ -278,6 +277,8 @@
"Records": "記録", "Records": "記録",
"Request URI": "リクエストURI", "Request URI": "リクエストURI",
"Resources": "リソース", "Resources": "リソース",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "役割", "Roles": "役割",
"Roles - Tooltip": "ユーザーが所属する役割", "Roles - Tooltip": "ユーザーが所属する役割",
"Save": "保存", "Save": "保存",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "申し訳ありませんが、このページにアクセスする権限がありません、またはログイン状態が無効です。", "Sorry, you do not have permission to access this page or logged in status invalid.": "申し訳ありませんが、このページにアクセスする権限がありません、またはログイン状態が無効です。",
"State": "州", "State": "州",
"State - Tooltip": "状態", "State - Tooltip": "状態",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "サブスクリプション", "Subscriptions": "サブスクリプション",
"Successfully added": "正常に追加されました", "Successfully added": "正常に追加されました",
"Successfully deleted": "正常に削除されました", "Successfully deleted": "正常に削除されました",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "月毎",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "月額料金", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "月毎"
"PricePerYear": "年間料金",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "現在のプランに含まれるロール"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "価格ページのURLをコピー", "Copy pricing page URL": "価格ページのURLをコピー",
@ -547,8 +542,6 @@
"Has trial": "トライアル期間あり", "Has trial": "トライアル期間あり",
"Has trial - Tooltip": "プラン選択後のトライアル期間の有無", "Has trial - Tooltip": "プラン選択後のトライアル期間の有無",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "追加プラン",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "トライアル期間の長さ", "Trial duration": "トライアル期間の長さ",
"Trial duration - Tooltip": "トライアル期間の長さ", "Trial duration - Tooltip": "トライアル期間の長さ",
"days trial available!": "日間のトライアルが利用可能です!", "days trial available!": "日間のトライアルが利用可能です!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "詳細", "Detail": "詳細",
"Detail - Tooltip": "製品の詳細", "Detail - Tooltip": "製品の詳細",
"Dummy": "Dummy",
"Edit Product": "製品を編集", "Edit Product": "製品を編集",
"I have completed the payment": "私は支払いを完了しました", "I have completed the payment": "私は支払いを完了しました",
"Image": "画像", "Image": "画像",
@ -772,22 +766,14 @@
"sign in now": "今すぐサインインしてください" "sign in now": "今すぐサインインしてください"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "期間", "Duration": "期間",
"Duration - Tooltip": "購読の期間", "Duration - Tooltip": "購読の期間",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "終了日", "End date": "終了日",
"End date - Tooltip": "終了日", "End date - Tooltip": "終了日",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "開始日", "Start date": "開始日",
"Start date - Tooltip": "開始日", "Start date - Tooltip": "開始日"
"Sub plan": "購読プラン",
"Sub plan - Tooltip": "購読プラン",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "購読ユーザー",
"Sub users - Tooltip": "購読ユーザー"
}, },
"syncer": { "syncer": {
"Affiliation table": "所属テーブル", "Affiliation table": "所属テーブル",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "응용 프로그램", "Applications": "응용 프로그램",
"Applications that require authentication": "인증이 필요한 애플리케이션들", "Applications that require authentication": "인증이 필요한 애플리케이션들",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "아바타", "Avatar": "아바타",
"Avatar - Tooltip": "사용자를 위한 공개 아바타 이미지", "Avatar - Tooltip": "사용자를 위한 공개 아바타 이미지",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "전화기", "Phone": "전화기",
"Phone - Tooltip": "전화 번호", "Phone - Tooltip": "전화 번호",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "플랜", "Plans": "플랜",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "미리보기", "Preview": "미리보기",
"Preview - Tooltip": "구성된 효과를 미리보기합니다", "Preview - Tooltip": "구성된 효과를 미리보기합니다",
"Pricings": "가격", "Pricings": "가격",
@ -278,6 +277,8 @@
"Records": "기록", "Records": "기록",
"Request URI": "요청 URI", "Request URI": "요청 URI",
"Resources": "자원", "Resources": "자원",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "역할들", "Roles": "역할들",
"Roles - Tooltip": "사용자가 속한 역할들", "Roles - Tooltip": "사용자가 속한 역할들",
"Save": "저장하다", "Save": "저장하다",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "죄송합니다. 이 페이지에 접근할 권한이 없거나 로그인 상태가 유효하지 않습니다.", "Sorry, you do not have permission to access this page or logged in status invalid.": "죄송합니다. 이 페이지에 접근할 권한이 없거나 로그인 상태가 유효하지 않습니다.",
"State": "주", "State": "주",
"State - Tooltip": "국가", "State - Tooltip": "국가",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "구독", "Subscriptions": "구독",
"Successfully added": "성공적으로 추가되었습니다", "Successfully added": "성공적으로 추가되었습니다",
"Successfully deleted": "성공적으로 삭제되었습니다", "Successfully deleted": "성공적으로 삭제되었습니다",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "월",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "월별 가격", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "월"
"PricePerYear": "연간 가격",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "현재 플랜에 포함된 역할"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "가격 페이지 URL 복사", "Copy pricing page URL": "가격 페이지 URL 복사",
@ -547,8 +542,6 @@
"Has trial": "무료 체험 가능", "Has trial": "무료 체험 가능",
"Has trial - Tooltip": "플랜 선택 후 체험 기간의 가용 여부", "Has trial - Tooltip": "플랜 선택 후 체험 기간의 가용 여부",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "추가 플랜",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "체험 기간", "Trial duration": "체험 기간",
"Trial duration - Tooltip": "체험 기간의 기간", "Trial duration - Tooltip": "체험 기간의 기간",
"days trial available!": "일 무료 체험 가능!", "days trial available!": "일 무료 체험 가능!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "세부사항", "Detail": "세부사항",
"Detail - Tooltip": "제품의 세부사항", "Detail - Tooltip": "제품의 세부사항",
"Dummy": "Dummy",
"Edit Product": "제품 편집", "Edit Product": "제품 편집",
"I have completed the payment": "저는 지불을 완료했습니다", "I have completed the payment": "저는 지불을 완료했습니다",
"Image": "이미지", "Image": "이미지",
@ -772,22 +766,14 @@
"sign in now": "지금 로그인하십시오" "sign in now": "지금 로그인하십시오"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "기간", "Duration": "기간",
"Duration - Tooltip": "구독 기간", "Duration - Tooltip": "구독 기간",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "종료일", "End date": "종료일",
"End date - Tooltip": "종료일", "End date - Tooltip": "종료일",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "시작일", "Start date": "시작일",
"Start date - Tooltip": "시작일", "Start date - Tooltip": "시작일"
"Sub plan": "구독 플랜",
"Sub plan - Tooltip": "구독 플랜",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "구독 사용자",
"Sub users - Tooltip": "구독 사용자"
}, },
"syncer": { "syncer": {
"Affiliation table": "소속 테이블", "Affiliation table": "소속 테이블",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Aplicações", "Applications": "Aplicações",
"Applications that require authentication": "Aplicações que requerem autenticação", "Applications that require authentication": "Aplicações que requerem autenticação",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Avatar", "Avatar": "Avatar",
"Avatar - Tooltip": "Imagem de avatar pública do usuário", "Avatar - Tooltip": "Imagem de avatar pública do usuário",
"Back": "Voltar", "Back": "Voltar",
@ -265,7 +261,10 @@
"Phone": "Telefone", "Phone": "Telefone",
"Phone - Tooltip": "Número de telefone", "Phone - Tooltip": "Número de telefone",
"Phone or email": "Telefone ou email", "Phone or email": "Telefone ou email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Kế hoạch", "Plans": "Kế hoạch",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Visualizar", "Preview": "Visualizar",
"Preview - Tooltip": "Visualizar os efeitos configurados", "Preview - Tooltip": "Visualizar os efeitos configurados",
"Pricings": "Bảng giá", "Pricings": "Bảng giá",
@ -278,6 +277,8 @@
"Records": "Registros", "Records": "Registros",
"Request URI": "URI da solicitação", "Request URI": "URI da solicitação",
"Resources": "Recursos", "Resources": "Recursos",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Funções", "Roles": "Funções",
"Roles - Tooltip": "Funções às quais o usuário pertence", "Roles - Tooltip": "Funções às quais o usuário pertence",
"Save": "Salvar", "Save": "Salvar",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Desculpe, você não tem permissão para acessar esta página ou o status de login é inválido.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Desculpe, você não tem permissão para acessar esta página ou o status de login é inválido.",
"State": "Estado", "State": "Estado",
"State - Tooltip": "Estado", "State - Tooltip": "Estado",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Đăng ký", "Subscriptions": "Đăng ký",
"Successfully added": "Adicionado com sucesso", "Successfully added": "Adicionado com sucesso",
"Successfully deleted": "Excluído com sucesso", "Successfully deleted": "Excluído com sucesso",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "mỗi tháng",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Giá mỗi tháng", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "mỗi tháng"
"PricePerYear": "Giá mỗi năm",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Vai trò bao gồm trong kế hoạch hiện tại"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Sao chép URL trang bảng giá", "Copy pricing page URL": "Sao chép URL trang bảng giá",
@ -547,8 +542,6 @@
"Has trial": "Có thời gian thử nghiệm", "Has trial": "Có thời gian thử nghiệm",
"Has trial - Tooltip": "Khả dụng thời gian thử nghiệm sau khi chọn kế hoạch", "Has trial - Tooltip": "Khả dụng thời gian thử nghiệm sau khi chọn kế hoạch",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Kế hoạch phụ",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Thời gian thử nghiệm", "Trial duration": "Thời gian thử nghiệm",
"Trial duration - Tooltip": "Thời gian thử nghiệm", "Trial duration - Tooltip": "Thời gian thử nghiệm",
"days trial available!": "ngày dùng thử có sẵn!", "days trial available!": "ngày dùng thử có sẵn!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Detalhe", "Detail": "Detalhe",
"Detail - Tooltip": "Detalhes do produto", "Detail - Tooltip": "Detalhes do produto",
"Dummy": "Dummy",
"Edit Product": "Editar Produto", "Edit Product": "Editar Produto",
"I have completed the payment": "Eu concluí o pagamento", "I have completed the payment": "Eu concluí o pagamento",
"Image": "Imagem", "Image": "Imagem",
@ -772,22 +766,14 @@
"sign in now": "Faça login agora" "sign in now": "Faça login agora"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Thời lượng", "Duration": "Thời lượng",
"Duration - Tooltip": "Thời lượng đăng ký", "Duration - Tooltip": "Thời lượng đăng ký",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Ngày kết thúc", "End date": "Ngày kết thúc",
"End date - Tooltip": "Ngày kết thúc", "End date - Tooltip": "Ngày kết thúc",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Ngày bắt đầu", "Start date": "Ngày bắt đầu",
"Start date - Tooltip": "Ngày bắt đầu", "Start date - Tooltip": "Ngày bắt đầu"
"Sub plan": "Kế hoạch đăng ký",
"Sub plan - Tooltip": "Kế hoạch đăng ký",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Người dùng đăng ký",
"Sub users - Tooltip": "Người dùng đăng ký"
}, },
"syncer": { "syncer": {
"Affiliation table": "Tabela de Afiliação", "Affiliation table": "Tabela de Afiliação",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Приложения", "Applications": "Приложения",
"Applications that require authentication": "Приложения, которые требуют аутентификации", "Applications that require authentication": "Приложения, которые требуют аутентификации",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Аватар", "Avatar": "Аватар",
"Avatar - Tooltip": "Публичное изображение аватара пользователя", "Avatar - Tooltip": "Публичное изображение аватара пользователя",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Телефон", "Phone": "Телефон",
"Phone - Tooltip": "Номер телефона", "Phone - Tooltip": "Номер телефона",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Планы", "Plans": "Планы",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Предварительный просмотр", "Preview": "Предварительный просмотр",
"Preview - Tooltip": "Предварительный просмотр настроенных эффектов", "Preview - Tooltip": "Предварительный просмотр настроенных эффектов",
"Pricings": "Тарифы", "Pricings": "Тарифы",
@ -278,6 +277,8 @@
"Records": "Записи", "Records": "Записи",
"Request URI": "Запрос URI", "Request URI": "Запрос URI",
"Resources": "Ресурсы", "Resources": "Ресурсы",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Роли", "Roles": "Роли",
"Roles - Tooltip": "Роли, к которым принадлежит пользователь", "Roles - Tooltip": "Роли, к которым принадлежит пользователь",
"Save": "Сохранить", "Save": "Сохранить",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "К сожалению, у вас нет разрешения на доступ к этой странице или ваш статус входа недействителен.", "Sorry, you do not have permission to access this page or logged in status invalid.": "К сожалению, у вас нет разрешения на доступ к этой странице или ваш статус входа недействителен.",
"State": "Государство", "State": "Государство",
"State - Tooltip": "Государство", "State - Tooltip": "Государство",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Подписки", "Subscriptions": "Подписки",
"Successfully added": "Успешно добавлено", "Successfully added": "Успешно добавлено",
"Successfully deleted": "Успешно удалено", "Successfully deleted": "Успешно удалено",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "в месяц",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Цена за месяц", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "в месяц"
"PricePerYear": "Цена за год",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Роль, включенная в текущий план"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Скопировать URL прайс-листа", "Copy pricing page URL": "Скопировать URL прайс-листа",
@ -547,8 +542,6 @@
"Has trial": "Есть пробный период", "Has trial": "Есть пробный период",
"Has trial - Tooltip": "Наличие пробного периода после выбора плана", "Has trial - Tooltip": "Наличие пробного периода после выбора плана",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Тарифные планы",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Продолжительность пробного периода", "Trial duration": "Продолжительность пробного периода",
"Trial duration - Tooltip": "Продолжительность пробного периода", "Trial duration - Tooltip": "Продолжительность пробного периода",
"days trial available!": "дней пробного периода доступно!", "days trial available!": "дней пробного периода доступно!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Деталь", "Detail": "Деталь",
"Detail - Tooltip": "Деталь продукта", "Detail - Tooltip": "Деталь продукта",
"Dummy": "Dummy",
"Edit Product": "Редактировать продукт", "Edit Product": "Редактировать продукт",
"I have completed the payment": "Я произвел оплату", "I have completed the payment": "Я произвел оплату",
"Image": "Изображение", "Image": "Изображение",
@ -772,22 +766,14 @@
"sign in now": "войти сейчас" "sign in now": "войти сейчас"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Продолжительность", "Duration": "Продолжительность",
"Duration - Tooltip": "Продолжительность подписки", "Duration - Tooltip": "Продолжительность подписки",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Дата окончания", "End date": "Дата окончания",
"End date - Tooltip": "Дата окончания", "End date - Tooltip": "Дата окончания",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Дата начала", "Start date": "Дата начала",
"Start date - Tooltip": "Дата начала", "Start date - Tooltip": "Дата начала"
"Sub plan": "План подписки",
"Sub plan - Tooltip": "План подписки",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Пользователь подписки",
"Sub users - Tooltip": "Пользователь которому офомлена подписка"
}, },
"syncer": { "syncer": {
"Affiliation table": "Таблица принадлежности", "Affiliation table": "Таблица принадлежности",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "Ứng dụng", "Applications": "Ứng dụng",
"Applications that require authentication": "Các ứng dụng yêu cầu xác thực", "Applications that require authentication": "Các ứng dụng yêu cầu xác thực",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "Ảnh đại diện", "Avatar": "Ảnh đại diện",
"Avatar - Tooltip": "Ảnh đại diện công khai cho người dùng", "Avatar - Tooltip": "Ảnh đại diện công khai cho người dùng",
"Back": "Back", "Back": "Back",
@ -265,7 +261,10 @@
"Phone": "Điện thoại", "Phone": "Điện thoại",
"Phone - Tooltip": "Số điện thoại", "Phone - Tooltip": "Số điện thoại",
"Phone or email": "Phone or email", "Phone or email": "Phone or email",
"Plan": "Plan",
"Plan - Tooltip": "Plan - Tooltip",
"Plans": "Kế hoạch", "Plans": "Kế hoạch",
"Plans - Tooltip": "Plans - Tooltip",
"Preview": "Xem trước", "Preview": "Xem trước",
"Preview - Tooltip": "Xem trước các hiệu ứng đã cấu hình", "Preview - Tooltip": "Xem trước các hiệu ứng đã cấu hình",
"Pricings": "Bảng giá", "Pricings": "Bảng giá",
@ -278,6 +277,8 @@
"Records": "Hồ sơ", "Records": "Hồ sơ",
"Request URI": "Yêu cầu URI", "Request URI": "Yêu cầu URI",
"Resources": "Tài nguyên", "Resources": "Tài nguyên",
"Role": "Role",
"Role - Tooltip": "Role - Tooltip",
"Roles": "Vai trò", "Roles": "Vai trò",
"Roles - Tooltip": "Các vai trò mà người dùng thuộc về", "Roles - Tooltip": "Các vai trò mà người dùng thuộc về",
"Save": "Lưu", "Save": "Lưu",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "Xin lỗi, bạn không có quyền truy cập trang này hoặc trạng thái đăng nhập không hợp lệ.", "Sorry, you do not have permission to access this page or logged in status invalid.": "Xin lỗi, bạn không có quyền truy cập trang này hoặc trạng thái đăng nhập không hợp lệ.",
"State": "Nhà nước", "State": "Nhà nước",
"State - Tooltip": "Trạng thái", "State - Tooltip": "Trạng thái",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "Đăng ký", "Subscriptions": "Đăng ký",
"Successfully added": "Đã thêm thành công", "Successfully added": "Đã thêm thành công",
"Successfully deleted": "Đã xóa thành công", "Successfully deleted": "Đã xóa thành công",
@ -529,15 +528,11 @@
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "Edit Plan",
"New Plan": "New Plan", "New Plan": "New Plan",
"PerMonth": "mỗi tháng",
"Price per month": "Price per month", "Price per month": "Price per month",
"Price per month - Tooltip": "Price per month - Tooltip",
"Price per year": "Price per year", "Price per year": "Price per year",
"PricePerMonth": "Giá mỗi tháng", "Price per year - Tooltip": "Price per year - Tooltip",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "mỗi tháng"
"PricePerYear": "Giá mỗi năm",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "Vai trò bao gồm trong kế hoạch hiện tại"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "Sao chép URL trang bảng giá", "Copy pricing page URL": "Sao chép URL trang bảng giá",
@ -547,8 +542,6 @@
"Has trial": "Có thời gian thử nghiệm", "Has trial": "Có thời gian thử nghiệm",
"Has trial - Tooltip": "Khả dụng thời gian thử nghiệm sau khi chọn kế hoạch", "Has trial - Tooltip": "Khả dụng thời gian thử nghiệm sau khi chọn kế hoạch",
"New Pricing": "New Pricing", "New Pricing": "New Pricing",
"Sub plans": "Kế hoạch phụ",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "Thời gian thử nghiệm", "Trial duration": "Thời gian thử nghiệm",
"Trial duration - Tooltip": "Thời gian thử nghiệm", "Trial duration - Tooltip": "Thời gian thử nghiệm",
"days trial available!": "ngày dùng thử có sẵn!", "days trial available!": "ngày dùng thử có sẵn!",
@ -561,6 +554,7 @@
"CNY": "CNY", "CNY": "CNY",
"Detail": "Chi tiết", "Detail": "Chi tiết",
"Detail - Tooltip": "Chi tiết sản phẩm", "Detail - Tooltip": "Chi tiết sản phẩm",
"Dummy": "Dummy",
"Edit Product": "Chỉnh sửa sản phẩm", "Edit Product": "Chỉnh sửa sản phẩm",
"I have completed the payment": "Tôi đã thanh toán hoàn tất", "I have completed the payment": "Tôi đã thanh toán hoàn tất",
"Image": "Ảnh", "Image": "Ảnh",
@ -772,22 +766,14 @@
"sign in now": "Đăng nhập ngay bây giờ" "sign in now": "Đăng nhập ngay bây giờ"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "Thời lượng", "Duration": "Thời lượng",
"Duration - Tooltip": "Thời lượng đăng ký", "Duration - Tooltip": "Thời lượng đăng ký",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "Edit Subscription",
"End date": "Ngày kết thúc", "End date": "Ngày kết thúc",
"End date - Tooltip": "Ngày kết thúc", "End date - Tooltip": "Ngày kết thúc",
"New Subscription": "New Subscription", "New Subscription": "New Subscription",
"Pending": "Pending",
"Start date": "Ngày bắt đầu", "Start date": "Ngày bắt đầu",
"Start date - Tooltip": "Ngày bắt đầu", "Start date - Tooltip": "Ngày bắt đầu"
"Sub plan": "Kế hoạch đăng ký",
"Sub plan - Tooltip": "Kế hoạch đăng ký",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "Người dùng đăng ký",
"Sub users - Tooltip": "Người dùng đăng ký"
}, },
"syncer": { "syncer": {
"Affiliation table": "Bảng liên kết", "Affiliation table": "Bảng liên kết",

View File

@ -173,10 +173,6 @@
"Application - Tooltip": "Application - Tooltip", "Application - Tooltip": "Application - Tooltip",
"Applications": "应用", "Applications": "应用",
"Applications that require authentication": "需要认证和鉴权的应用", "Applications that require authentication": "需要认证和鉴权的应用",
"Approve time": "Approve time",
"Approve time - Tooltip": "Approve time - Tooltip",
"Approver": "Approver",
"Approver - Tooltip": "Approver - Tooltip",
"Avatar": "头像", "Avatar": "头像",
"Avatar - Tooltip": "公开展示的用户头像", "Avatar - Tooltip": "公开展示的用户头像",
"Back": "返回", "Back": "返回",
@ -265,7 +261,10 @@
"Phone": "手机号", "Phone": "手机号",
"Phone - Tooltip": "手机号", "Phone - Tooltip": "手机号",
"Phone or email": "手机或邮箱", "Phone or email": "手机或邮箱",
"Plan": "计划",
"Plan - Tooltip": "订阅里的计划",
"Plans": "计划", "Plans": "计划",
"Plans - Tooltip": "订阅里的计划",
"Preview": "预览", "Preview": "预览",
"Preview - Tooltip": "可预览所配置的效果", "Preview - Tooltip": "可预览所配置的效果",
"Pricings": "定价", "Pricings": "定价",
@ -278,6 +277,8 @@
"Records": "日志", "Records": "日志",
"Request URI": "请求URI", "Request URI": "请求URI",
"Resources": "资源", "Resources": "资源",
"Role": "角色",
"Role - Tooltip": "所对应的角色",
"Roles": "角色", "Roles": "角色",
"Roles - Tooltip": "用户所属的角色", "Roles - Tooltip": "用户所属的角色",
"Save": "保存", "Save": "保存",
@ -295,8 +296,6 @@
"Sorry, you do not have permission to access this page or logged in status invalid.": "抱歉,您无权访问该页面或登录状态失效", "Sorry, you do not have permission to access this page or logged in status invalid.": "抱歉,您无权访问该页面或登录状态失效",
"State": "状态", "State": "状态",
"State - Tooltip": "状态", "State - Tooltip": "状态",
"Submitter": "Submitter",
"Submitter - Tooltip": "Submitter - Tooltip",
"Subscriptions": "订阅", "Subscriptions": "订阅",
"Successfully added": "添加成功", "Successfully added": "添加成功",
"Successfully deleted": "删除成功", "Successfully deleted": "删除成功",
@ -527,28 +526,22 @@
"Write": "写权限" "Write": "写权限"
}, },
"plan": { "plan": {
"Edit Plan": "Edit Plan", "Edit Plan": "编辑计划",
"New Plan": "New Plan", "New Plan": "添加计划",
"PerMonth": "每月", "Price per month": "价格/月",
"Price per month": "Price per month", "Price per month - Tooltip": "该订阅一个月的价格",
"Price per year": "Price per year", "Price per year": "价格/年",
"PricePerMonth": "每月价格", "Price per year - Tooltip": "该订阅一年的价格",
"PricePerMonth - Tooltip": "PricePerMonth - Tooltip", "per month": "每月"
"PricePerYear": "每年价格",
"PricePerYear - Tooltip": "PricePerYear - Tooltip",
"Sub role": "Sub role",
"Sub roles - Tooltip": "当前计划中包含的角色"
}, },
"pricing": { "pricing": {
"Copy pricing page URL": "复制定价页面链接", "Copy pricing page URL": "复制定价页面链接",
"Edit Pricing": "Edit Pricing", "Edit Pricing": "编辑定价",
"Free": "免费", "Free": "免费",
"Getting started": "开始使用", "Getting started": "开始使用",
"Has trial": "有试用期", "Has trial": "有试用期",
"Has trial - Tooltip": "选择计划后是否有试用期", "Has trial - Tooltip": "选择计划后是否有试用期",
"New Pricing": "New Pricing", "New Pricing": "添加定价",
"Sub plans": "附加计划",
"Sub plans - Tooltip": "Sub plans - Tooltip",
"Trial duration": "试用期时长", "Trial duration": "试用期时长",
"Trial duration - Tooltip": "试用期时长", "Trial duration - Tooltip": "试用期时长",
"days trial available!": "天试用期可用!", "days trial available!": "天试用期可用!",
@ -561,6 +554,7 @@
"CNY": "人民币", "CNY": "人民币",
"Detail": "详情", "Detail": "详情",
"Detail - Tooltip": "商品详情", "Detail - Tooltip": "商品详情",
"Dummy": "虚拟",
"Edit Product": "编辑商品", "Edit Product": "编辑商品",
"I have completed the payment": "支付完成", "I have completed the payment": "支付完成",
"Image": "图片", "Image": "图片",
@ -772,22 +766,14 @@
"sign in now": "立即登录" "sign in now": "立即登录"
}, },
"subscription": { "subscription": {
"Approved": "Approved",
"Duration": "订阅时长", "Duration": "订阅时长",
"Duration - Tooltip": "订阅时长", "Duration - Tooltip": "订阅时长",
"Edit Subscription": "Edit Subscription", "Edit Subscription": "编辑订阅",
"End date": "结束日期", "End date": "结束日期",
"End date - Tooltip": "结束日期", "End date - Tooltip": "结束日期",
"New Subscription": "New Subscription", "New Subscription": "添加订阅",
"Pending": "Pending",
"Start date": "开始日期", "Start date": "开始日期",
"Start date - Tooltip": "开始日期", "Start date - Tooltip": "开始日期"
"Sub plan": "订阅计划",
"Sub plan - Tooltip": "订阅计划",
"Sub plane": "Sub plane",
"Sub user": "Sub user",
"Sub users": "订阅用户",
"Sub users - Tooltip": "订阅用户"
}, },
"syncer": { "syncer": {
"Affiliation table": "工作单位表", "Affiliation table": "工作单位表",

View File

@ -44,7 +44,7 @@ class SingleCard extends React.Component {
<div style={{textAlign: "left"}} className="px-10 mt-5"> <div style={{textAlign: "left"}} className="px-10 mt-5">
<span style={{fontWeight: 700, fontSize: "48px"}}>$ {plan.pricePerMonth}</span> <span style={{fontWeight: 700, fontSize: "48px"}}>$ {plan.pricePerMonth}</span>
<span style={{fontSize: "18px", fontWeight: 600, color: "gray"}}> {i18next.t("plan:PerMonth")}</span> <span style={{fontSize: "18px", fontWeight: 600, color: "gray"}}> {i18next.t("plan:per month")}</span>
</div> </div>
<br /> <br />