Merge pull request #22749 from mattermost/MM-51317-change-users-when-referring-to-license-seats

MM-51317 - Change the use of the Word 'user(s)' to 'seat(s)' When Referring to the Number of Seats Bought with a License
Этот коммит содержится в:
Conor Macpherson
2023-04-04 11:14:47 -04:00
коммит произвёл GitHub
родитель ed36e8bd64 4c58fee5eb
Коммит 9736304633
33 изменённых файлов: 75 добавлений и 216 удалений

Просмотреть файл

@@ -226,9 +226,9 @@ export const InvoiceInfo = ({invoice, product, fullCharges, partialCharges, hasM
currency='USD' currency='USD'
/> />
<FormattedMessage <FormattedMessage
id='admin.billing.subscriptions.billing_summary.lastInvoice.userCount' id='admin.billing.subscriptions.billing_summary.lastInvoice.seatCount'
defaultMessage=' x {users} users' defaultMessage=' x {seats} seats'
values={{users: charge.quantity}} values={{seats: charge.quantity}}
/> />
</> </>
)} )}
@@ -309,9 +309,9 @@ export const InvoiceInfo = ({invoice, product, fullCharges, partialCharges, hasM
> >
<div className='BillingSummary__lastInvoice-chargeDescription'> <div className='BillingSummary__lastInvoice-chargeDescription'>
<FormattedMessage <FormattedMessage
id='admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial' id='admin.billing.subscriptions.billing_summary.lastInvoice.seatCountPartial'
defaultMessage='{users} users' defaultMessage='{seats} seats'
values={{users: charge.quantity}} values={{seats: charge.quantity}}
/> />
</div> </div>
<div className='BillingSummary__lastInvoice-chargeAmount'> <div className='BillingSummary__lastInvoice-chargeAmount'>

Просмотреть файл

@@ -51,28 +51,28 @@ describe('InvoiceUserCount', () => {
[1, InvoiceLineItemType.Full], [1, InvoiceLineItemType.Full],
[1, InvoiceLineItemType.Partial], [1, InvoiceLineItemType.Partial],
), ),
expected: '1 metered users, 1 users at full rate, 1 users with partial charges', expected: '1 metered seats, 1 seats at full rate, 1 seats with partial charges',
}, },
{ {
name: 'Supports cloud invoices with only metered line items', name: 'Supports cloud invoices with only metered line items',
invoice: makeInvoice( invoice: makeInvoice(
[12.34, InvoiceLineItemType.Metered], [12.34, InvoiceLineItemType.Metered],
), ),
expected: '12.34 users', expected: '12.34 seats',
}, },
{ {
name: 'Shows minimum decimal necessary', name: 'Shows minimum decimal necessary',
invoice: makeInvoice( invoice: makeInvoice(
[12.499, InvoiceLineItemType.Metered], [12.499, InvoiceLineItemType.Metered],
), ),
expected: '12.5 users', expected: '12.5 seats',
}, },
{ {
name: 'hides insignificant decimals', name: 'hides insignificant decimals',
invoice: makeInvoice( invoice: makeInvoice(
[12.002, InvoiceLineItemType.Metered], [12.002, InvoiceLineItemType.Metered],
), ),
expected: '12 users', expected: '12 seats',
}, },
{ {
name: 'Supports cloud invoices with only non-metered line items', name: 'Supports cloud invoices with only non-metered line items',
@@ -80,7 +80,7 @@ describe('InvoiceUserCount', () => {
[1, InvoiceLineItemType.Full], [1, InvoiceLineItemType.Full],
[249, InvoiceLineItemType.Partial], [249, InvoiceLineItemType.Partial],
), ),
expected: '1 users at full rate, 249 users with partial charges', expected: '1 seats at full rate, 249 seats with partial charges',
}, },
{ {
name: 'Shows default of 0 full users, 0 partial users when there are no users', name: 'Shows default of 0 full users, 0 partial users when there are no users',
@@ -89,19 +89,19 @@ describe('InvoiceUserCount', () => {
[0, InvoiceLineItemType.Full], [0, InvoiceLineItemType.Full],
[0, InvoiceLineItemType.Partial], [0, InvoiceLineItemType.Partial],
), ),
expected: '0 users at full rate, 0 users with partial charges', expected: '0 seats at full rate, 0 seats with partial charges',
}, },
{ {
name: 'Shows default of 0 full users, 0 partial users when there are no line items in invoice', name: 'Shows default of 0 full users, 0 partial users when there are no line items in invoice',
invoice: makeInvoice(), invoice: makeInvoice(),
expected: '0 users at full rate, 0 users with partial charges', expected: '0 seats at full rate, 0 seats with partial charges',
}, },
{ {
name: 'Shows 3 full userswhen there are on prem users', name: 'Shows 3 full userswhen there are on prem users',
invoice: makeInvoice( invoice: makeInvoice(
[3, InvoiceLineItemType.OnPremise], [3, InvoiceLineItemType.OnPremise],
), ),
expected: '3 users', expected: '3 seats',
}, },
]; ];

Просмотреть файл

@@ -18,8 +18,8 @@ export default function InvoiceUserCount({invoice}: {invoice: Invoice}): JSX.Ele
if (onPremUsers) { if (onPremUsers) {
return ( return (
<FormattedMessage <FormattedMessage
id='admin.billing.history.onPremUsers' id='admin.billing.history.onPremSeats'
defaultMessage='{num} users' defaultMessage='{num} seats'
values={{ values={{
// should always be a whole number, but truncate just in case // should always be a whole number, but truncate just in case
@@ -32,12 +32,12 @@ export default function InvoiceUserCount({invoice}: {invoice: Invoice}): JSX.Ele
if (fullUsers || partialUsers) { if (fullUsers || partialUsers) {
return ( return (
<FormattedMessage <FormattedMessage
id='admin.billing.history.fractionalAndRatedUsers' id='admin.billing.history.fractionalAndRatedSeats'
defaultMessage='{fractionalUsers} metered users, {fullUsers} users at full rate, {partialUsers} users with partial charges' defaultMessage='{fractionalSeats} metered seats, {fullSeats} seats at full rate, {partialSeats} seats with partial charges'
values={{ values={{
fractionalUsers: numberToFixedDynamic(meteredUsers, 2), fractionalSeats: numberToFixedDynamic(meteredUsers, 2),
fullUsers: fullUsers.toFixed(0), fullSeats: fullUsers.toFixed(0),
partialUsers: partialUsers.toFixed(0), partialSeats: partialUsers.toFixed(0),
}} }}
/> />
); );
@@ -45,10 +45,10 @@ export default function InvoiceUserCount({invoice}: {invoice: Invoice}): JSX.Ele
return ( return (
<FormattedMessage <FormattedMessage
id='admin.billing.history.fractionalUsers' id='admin.billing.history.fractionalSeats'
defaultMessage='{fractionalUsers} users' defaultMessage='{fractionalSeats} seats'
values={{ values={{
fractionalUsers: numberToFixedDynamic(meteredUsers, 2), fractionalSeats: numberToFixedDynamic(meteredUsers, 2),
}} }}
/> />
); );
@@ -56,11 +56,11 @@ export default function InvoiceUserCount({invoice}: {invoice: Invoice}): JSX.Ele
return ( return (
<FormattedMessage <FormattedMessage
id='admin.billing.history.usersAndRates' id='admin.billing.history.seatsAndRates'
defaultMessage='{fullUsers} users at full rate, {partialUsers} users with partial charges' defaultMessage='{fullSeats} seats at full rate, {partialSeats} seats with partial charges'
values={{ values={{
fullUsers: fullUsers.toFixed(0), fullSeats: fullUsers.toFixed(0),
partialUsers: partialUsers.toFixed(0), partialSeats: partialUsers.toFixed(0),
}} }}
/> />
); );

Просмотреть файл

@@ -82,7 +82,7 @@ describe('components/admin_console/license_settings/enterprise_edition/enterpris
return n.children().length === 2 && return n.children().length === 2 &&
n.childAt(0).type() === 'span' && n.childAt(0).type() === 'span' &&
!n.childAt(0).text().includes('ACTIVE') && !n.childAt(0).text().includes('ACTIVE') &&
n.childAt(0).text().includes('USERS'); n.childAt(0).text().includes('LICENSED SEATS');
}); });
expect(item.text()).toContain('1,000,000'); expect(item.text()).toContain('1,000,000');

Просмотреть файл

@@ -160,7 +160,7 @@ const EnterpriseEditionLeftPanel = ({
); );
}; };
type LegendValues = 'START DATE:' | 'EXPIRES:' | 'USERS:' | 'ACTIVE USERS:' | 'EDITION:' | 'LICENSE ISSUED:' | 'NAME:' | 'COMPANY / ORG:' type LegendValues = 'START DATE:' | 'EXPIRES:' | 'LICENSED SEATS:' | 'ACTIVE USERS:' | 'EDITION:' | 'LICENSE ISSUED:' | 'NAME:' | 'COMPANY / ORG:'
const renderLicenseValues = (activeUsers: number, seatsPurchased: number) => ({legend, value}: {legend: LegendValues; value: string | JSX.Element | null}, index: number): React.ReactNode => { const renderLicenseValues = (activeUsers: number, seatsPurchased: number) => ({legend, value}: {legend: LegendValues; value: string | JSX.Element | null}, index: number): React.ReactNode => {
if (legend === 'ACTIVE USERS:') { if (legend === 'ACTIVE USERS:') {
@@ -236,7 +236,7 @@ const renderLicenseContent = (
}> = [ }> = [
{legend: 'START DATE:', value: startsAt}, {legend: 'START DATE:', value: startsAt},
{legend: 'EXPIRES:', value: expiresAt}, {legend: 'EXPIRES:', value: expiresAt},
{legend: 'USERS:', value: users}, {legend: 'LICENSED SEATS:', value: users},
{legend: 'ACTIVE USERS:', value: activeUsers}, {legend: 'ACTIVE USERS:', value: activeUsers},
{legend: 'EDITION:', value: sku}, {legend: 'EDITION:', value: sku},
{legend: 'LICENSE ISSUED:', value: issued}, {legend: 'LICENSE ISSUED:', value: issued},

Просмотреть файл

@@ -260,7 +260,7 @@ const UploadLicenseModal = (props: Props): JSX.Element | null => {
<div className='subtitle'> <div className='subtitle'>
<FormattedMessage <FormattedMessage
id='admin.license.upload-modal.successfulUpgradeText' id='admin.license.upload-modal.successfulUpgradeText'
defaultMessage='You have upgraded to the {skuName} plan for {licensedUsersNum, number} users. This is effective from {startsAt} until {expiresAt}. ' defaultMessage='You have upgraded to the {skuName} plan for {licensedUsersNum, number} seats. This is effective from {startsAt} until {expiresAt}. '
values={{ values={{
expiresAt, expiresAt,
startsAt, startsAt,

Просмотреть файл

@@ -56,7 +56,7 @@ export const ActivatedUserCard = ({activatedUsers, seatsPurchased, isCloud}: Act
/> />
<FormattedMessage <FormattedMessage
id='analytics.team.overageUsersSeats' id='analytics.team.overageUsersSeats'
defaultMessage='This exceeds total paid users' defaultMessage='This exceeds total paid seats'
> >
{(text) => <span>{text}</span>} {(text) => <span>{text}</span>}
</FormattedMessage> </FormattedMessage>

Просмотреть файл

@@ -348,7 +348,7 @@ export default class SystemAnalytics extends React.PureComponent<Props, State> {
title={ title={
<FormattedMessage <FormattedMessage
id='analytics.system.seatsPurchased' id='analytics.system.seatsPurchased'
defaultMessage='Total paid users' defaultMessage='Licensed Seats'
/> />
} }
icon='fa-users' icon='fa-users'

Просмотреть файл

@@ -396,7 +396,7 @@ function Content(props: ContentProps) {
plan='Professional' plan='Professional'
planSummary={formatMessage({id: 'pricing_modal.planSummary.professional', defaultMessage: 'Scalable solutions for growing teams'})} planSummary={formatMessage({id: 'pricing_modal.planSummary.professional', defaultMessage: 'Scalable solutions for growing teams'})}
price={`$${professionalPrice}`} price={`$${professionalPrice}`}
rate={formatMessage({id: 'pricing_modal.rate.userPerMonth', defaultMessage: 'USD per user/month {br}<b>(billed annually)</b>'}, { rate={formatMessage({id: 'pricing_modal.rate.seatPerMonth', defaultMessage: 'USD per seat/month {br}<b>(billed annually)</b>'}, {
br: <br/>, br: <br/>,
b: (chunks: React.ReactNode | React.ReactNodeArray) => ( b: (chunks: React.ReactNode | React.ReactNodeArray) => (
<span style={{fontSize: '14px'}}> <span style={{fontSize: '14px'}}>

Просмотреть файл

@@ -211,7 +211,7 @@ function SelfHostedContent(props: ContentProps) {
plan='Professional' plan='Professional'
planSummary={formatMessage({id: 'pricing_modal.planSummary.professional', defaultMessage: 'Scalable solutions for growing teams'})} planSummary={formatMessage({id: 'pricing_modal.planSummary.professional', defaultMessage: 'Scalable solutions for growing teams'})}
price={professionalPrice} price={professionalPrice}
rate={formatMessage({id: 'pricing_modal.rate.userPerMonth', defaultMessage: 'USD per user/month {br}<b>(billed annually)</b>'}, { rate={formatMessage({id: 'pricing_modal.rate.seatPerMonth', defaultMessage: 'USD per seat/month {br}<b>(billed annually)</b>'}, {
br: <br/>, br: <br/>,
b: (chunks: React.ReactNode | React.ReactNodeArray) => ( b: (chunks: React.ReactNode | React.ReactNodeArray) => (
<span style={{fontSize: '14px'}}> <span style={{fontSize: '14px'}}>

Просмотреть файл

@@ -730,7 +730,7 @@ class PurchaseModal extends React.PureComponent<Props, State> {
this.state.selectedProduct ? this.state.selectedProduct.name : '', this.state.selectedProduct ? this.state.selectedProduct.name : '',
)} )}
price={yearlyProductMonthlyPrice} price={yearlyProductMonthlyPrice}
rate={formatMessage({id: 'pricing_modal.rate.userPerMonth', defaultMessage: 'USD per user/month {br}<b>(billed annually)</b>'}, { rate={formatMessage({id: 'pricing_modal.rate.seatPerMonth', defaultMessage: 'USD per seat/month {br}<b>(billed annually)</b>'}, {
br: <br/>, br: <br/>,
b: (chunks: React.ReactNode | React.ReactNodeArray) => ( b: (chunks: React.ReactNode | React.ReactNodeArray) => (
<span style={{fontSize: '14px'}}> <span style={{fontSize: '14px'}}>

Просмотреть файл

@@ -88,7 +88,7 @@ function validateSeats(seats: string, annualPricePerSeat: number, minSeats: numb
{errorPrefix} {errorPrefix}
<FormattedMessage <FormattedMessage
id='self_hosted_signup.error_max_seats' id='self_hosted_signup.error_max_seats'
defaultMessage=' license purchase only supports purchases up to {num} users' defaultMessage=' license purchase only supports purchases up to {num} seats'
values={{ values={{
num: <FormattedNumber value={maxSeats}/>, num: <FormattedNumber value={maxSeats}/>,
}} }}
@@ -167,7 +167,7 @@ export default function SeatsCalculator(props: Props) {
type='text' type='text'
value={props.seats.quantity} value={props.seats.quantity}
onChange={onChange} onChange={onChange}
placeholder={intl.formatMessage({id: 'self_hosted_signup.seats', defaultMessage: 'User seats'})} placeholder={intl.formatMessage({id: 'self_hosted_signup.seats', defaultMessage: 'Seats'})}
wrapperClassName='user_seats' wrapperClassName='user_seats'
inputClassName='user_seats' inputClassName='user_seats'
maxLength={maxSeats.toString().length + 1} maxLength={maxSeats.toString().length + 1}
@@ -197,7 +197,7 @@ export default function SeatsCalculator(props: Props) {
<div className='SeatsCalculator__seats-label'> <div className='SeatsCalculator__seats-label'>
<FormattedMessage <FormattedMessage
id='self_hosted_signup.line_item_subtotal' id='self_hosted_signup.line_item_subtotal'
defaultMessage='{num} users × 12 mo.' defaultMessage='{num} seats × 12 mo.'
values={{ values={{
num: props.seats.quantity || '0', num: props.seats.quantity || '0',
}} }}

Просмотреть файл

@@ -255,7 +255,7 @@ describe('SelfHostedPurchaseModal', () => {
// check title, and some of the most prominent details and secondary actions // check title, and some of the most prominent details and secondary actions
screen.getByText('Provide your payment details'); screen.getByText('Provide your payment details');
screen.getByText('Contact Sales'); screen.getByText('Contact Sales');
screen.getByText('USD per user/month', {exact: false}); screen.getByText('USD per seat/month', {exact: false});
screen.getByText('billed annually', {exact: false}); screen.getByText('billed annually', {exact: false});
screen.getByText(productName); screen.getByText(productName);
screen.getByText('You will be billed today. Your license will be applied automatically', {exact: false}); screen.getByText('You will be billed today. Your license will be applied automatically', {exact: false});

Просмотреть файл

@@ -80,7 +80,7 @@ export default function SelfHostedCard(props: Props) {
topColor='#4A69AC' topColor='#4A69AC'
plan={props.desiredPlanName} plan={props.desiredPlanName}
price={`${props.desiredProduct?.price_per_seat?.toString()}`} price={`${props.desiredProduct?.price_per_seat?.toString()}`}
rate={intl.formatMessage({id: 'pricing_modal.rate.userPerMonth', defaultMessage: 'USD per user/month {br}<b>(billed annually)</b>'}, { rate={intl.formatMessage({id: 'pricing_modal.rate.seatPerMonth', defaultMessage: 'USD per seat/month {br}<b>(billed annually)</b>'}, {
br: <br/>, br: <br/>,
b: (chunks: React.ReactNode | React.ReactNodeArray) => ( b: (chunks: React.ReactNode | React.ReactNodeArray) => (
<span style={{fontSize: '14px'}}> <span style={{fontSize: '14px'}}>

Просмотреть файл

@@ -241,7 +241,6 @@
"admin.billing.history.title": "История на плащания", "admin.billing.history.title": "История на плащания",
"admin.billing.history.total": "Общо", "admin.billing.history.total": "Общо",
"admin.billing.history.transactions": "Транзакции", "admin.billing.history.transactions": "Транзакции",
"admin.billing.history.usersAndRates": "{fullUsers} потребители на пълна тарифа, {partialUsers} потребители с частично таксуване",
"admin.billing.payment_info.add": "Добави кредитна карта", "admin.billing.payment_info.add": "Добави кредитна карта",
"admin.billing.payment_info.billingAddress": "Адрес за фактуриране", "admin.billing.payment_info.billingAddress": "Адрес за фактуриране",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} завършва на {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} завършва на {digits}",
@@ -332,8 +331,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Такси", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Такси",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Последна фактура", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Последна фактура",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Общо", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Общо",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} потребителя",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} потребителя",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Какво представляват частичните такси?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Какво представляват частичните такси?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Потребителите, които не са били активирани през цялото време на месеца, се таксуват с пропорционална месечна ставка.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Потребителите, които не са били активирани през цялото време на месеца, се таксуват с пропорционална месечна ставка.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "В бъдеще това е мястото, където ще се показва обобщение на вашите последни таксувания.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "В бъдеще това е мястото, където ще се показва обобщение на вашите последни таксувания.",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "Alle deine Rechnungen werden hier angezeigt", "admin.billing.history.allPaymentsShowHere": "Alle deine Rechnungen werden hier angezeigt",
"admin.billing.history.date": "Datum", "admin.billing.history.date": "Datum",
"admin.billing.history.description": "Beschreibung", "admin.billing.history.description": "Beschreibung",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} gebührenpflichtige Nutzer, {fullUsers} Nutzer zum vollen Tarif, {partialUsers} Nutzer mit Teilgebühren",
"admin.billing.history.fractionalUsers": "{fractionalUsers} Benutzer",
"admin.billing.history.noBillingHistory": "Hier wird in Zukunft deine Abrechnungshistorie angezeigt.", "admin.billing.history.noBillingHistory": "Hier wird in Zukunft deine Abrechnungshistorie angezeigt.",
"admin.billing.history.onPremUsers": "{num} Benutzer",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} von {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} von {totalRecords}",
"admin.billing.history.paid": "Bezahlt", "admin.billing.history.paid": "Bezahlt",
"admin.billing.history.paymentFailed": "Zahlungsvorgang fehlgeschlagen", "admin.billing.history.paymentFailed": "Zahlungsvorgang fehlgeschlagen",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "Abrechnungshistorie", "admin.billing.history.title": "Abrechnungshistorie",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transaktionen", "admin.billing.history.transactions": "Transaktionen",
"admin.billing.history.usersAndRates": "{fullUsers} Nutzer auf Vollrate, {partialUsers} Nutzer auf Teilrate",
"admin.billing.payment_info.add": "Kreditkarte hinzufügen", "admin.billing.payment_info.add": "Kreditkarte hinzufügen",
"admin.billing.payment_info.billingAddress": "Rechnungsadresse", "admin.billing.payment_info.billingAddress": "Rechnungsadresse",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} endet mit {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} endet mit {digits}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Steuern", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Steuern",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Letzte Rechnung", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Letzte Rechnung",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} Benutzer",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} Benutzer",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Rechnung ansehen", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Rechnung ansehen",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Was sind teilweise verrechnete Gebühren?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Was sind teilweise verrechnete Gebühren?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Benutzer, die nicht für die volle Dauer des Monats freigeschaltet waren, werden mit einem anteiligen Monatsrate berechnet.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Benutzer, die nicht für die volle Dauer des Monats freigeschaltet waren, werden mit einem anteiligen Monatsrate berechnet.",
@@ -1359,7 +1353,6 @@
"admin.license.upload-modal.file": "Datei", "admin.license.upload-modal.file": "Datei",
"admin.license.upload-modal.subtitle": "Lade eine Lizenzschlüssel für die Mattermost Enterprise Edition hoch, um den Server zu aktualisieren. ", "admin.license.upload-modal.subtitle": "Lade eine Lizenzschlüssel für die Mattermost Enterprise Edition hoch, um den Server zu aktualisieren. ",
"admin.license.upload-modal.successfulUpgrade": "Erfolgreiche Aktualisierung!", "admin.license.upload-modal.successfulUpgrade": "Erfolgreiche Aktualisierung!",
"admin.license.upload-modal.successfulUpgradeText": "Du hast den {skuName} Plan für {licensedUsersNum, number} Benutzer aktualisiert. Diese Änderung ist aktiv vom {startsAt} bis zum {expiresAt}. ",
"admin.license.upload-modal.title": "Lizenzschlüssel hochladen", "admin.license.upload-modal.title": "Lizenzschlüssel hochladen",
"admin.license.uploadFile": "Datei hochladen", "admin.license.uploadFile": "Datei hochladen",
"admin.license.warn.renew": "Erneuern", "admin.license.warn.renew": "Erneuern",
@@ -2579,7 +2572,6 @@
"analytics.system.postTypes": "Nachrichten, Dateien und Hashtags", "analytics.system.postTypes": "Nachrichten, Dateien und Hashtags",
"analytics.system.privateGroups": "Private Kanäle", "analytics.system.privateGroups": "Private Kanäle",
"analytics.system.publicChannels": "Öffentliche Kanäle", "analytics.system.publicChannels": "Öffentliche Kanäle",
"analytics.system.seatsPurchased": "Total bezahlte Nutzer",
"analytics.system.skippedIntensiveQueries": "Um die Performance zu maximieren, sind einige Statistiken deaktiviert. Du kannst sie in der <link>config.json reaktivieren</link>.", "analytics.system.skippedIntensiveQueries": "Um die Performance zu maximieren, sind einige Statistiken deaktiviert. Du kannst sie in der <link>config.json reaktivieren</link>.",
"analytics.system.textPosts": "Nur-Text Beiträge", "analytics.system.textPosts": "Nur-Text Beiträge",
"analytics.system.title": "Systemstatistiken", "analytics.system.title": "Systemstatistiken",
@@ -2599,7 +2591,6 @@
"analytics.team.activeUsers": "Aktive Benutzer mit Beiträgen", "analytics.team.activeUsers": "Aktive Benutzer mit Beiträgen",
"analytics.team.newlyCreated": "Neu erstellte Benutzer", "analytics.team.newlyCreated": "Neu erstellte Benutzer",
"analytics.team.noTeams": "Auf diesem Server gibt es keine Teams, für die Statistiken eingesehen werden können.", "analytics.team.noTeams": "Auf diesem Server gibt es keine Teams, für die Statistiken eingesehen werden können.",
"analytics.team.overageUsersSeats": "Dies übersteigt die Zahl der bezahlten Nutzer",
"analytics.team.privateGroups": "Private Kanäle", "analytics.team.privateGroups": "Private Kanäle",
"analytics.team.publicChannels": "Öffentliche Kanäle", "analytics.team.publicChannels": "Öffentliche Kanäle",
"analytics.team.recentUsers": "Zuletzt aktive Benutzer", "analytics.team.recentUsers": "Zuletzt aktive Benutzer",
@@ -4576,7 +4567,6 @@
"pricing_modal.planSummary.professional": "Skalierbare Lösungen für wachsende Teams", "pricing_modal.planSummary.professional": "Skalierbare Lösungen für wachsende Teams",
"pricing_modal.plan_label_trialDays": "{days} TAGE, DIE IM TEST VERBLEIBEN", "pricing_modal.plan_label_trialDays": "{days} TAGE, DIE IM TEST VERBLEIBEN",
"pricing_modal.price.freeForever": "Kostenlos für immer", "pricing_modal.price.freeForever": "Kostenlos für immer",
"pricing_modal.rate.userPerMonth": "USD pro Benutzer/Monat {br}<b>(jährliche Abrechnung)</b>",
"pricing_modal.reviewDeploymentOptions": "Prüfe deine Bereitstellungsoptionen", "pricing_modal.reviewDeploymentOptions": "Prüfe deine Bereitstellungsoptionen",
"pricing_modal.start_trial.disclaimer": "Durch Auswahl von <span>30 Tage lang kostenlos testen,</span> stimme ich dem <linkAgreement>Mattermost Software und Services License Agreement</linkAgreement>, <linkPrivacy>der Datenschutz-Richtlinie</linkPrivacy> und dem Erhalt von Produkt-E-Mails zu.", "pricing_modal.start_trial.disclaimer": "Durch Auswahl von <span>30 Tage lang kostenlos testen,</span> stimme ich dem <linkAgreement>Mattermost Software und Services License Agreement</linkAgreement>, <linkPrivacy>der Datenschutz-Richtlinie</linkPrivacy> und dem Erhalt von Produkt-E-Mails zu.",
"pricing_modal.subtitle": "Wähle einen Plan um loszulegen", "pricing_modal.subtitle": "Wähle einen Plan um loszulegen",
@@ -4714,12 +4704,9 @@
"self_hosted_signup.cta": "Aktualisieren", "self_hosted_signup.cta": "Aktualisieren",
"self_hosted_signup.disclaimer": "Ich habe die <a>Enterprise Edition Abonnementbedingungen gelesen und stimme ihnen zu.</a>", "self_hosted_signup.disclaimer": "Ich habe die <a>Enterprise Edition Abonnementbedingungen gelesen und stimme ihnen zu.</a>",
"self_hosted_signup.error_invalid_number": "Gib eine gültige Anzahl von Plätzen ein", "self_hosted_signup.error_invalid_number": "Gib eine gültige Anzahl von Plätzen ein",
"self_hosted_signup.error_max_seats": " Der Lizenzkauf unterstützt nur Käufe bis zu {num} Benutzern",
"self_hosted_signup.error_min_seats": "Dein Arbeitsbereich hat derzeit {num} Benutzer",
"self_hosted_signup.failed_export.subtitle": "Wir werden die Dinge von unserer Seite aus überprüfen und uns innerhalb von 3 Tagen bei dir melden, sobald deine Lizenz genehmigt ist. In der Zwischenzeit kannst du gerne die kostenlose Version unseres Produkts weiter nutzen.", "self_hosted_signup.failed_export.subtitle": "Wir werden die Dinge von unserer Seite aus überprüfen und uns innerhalb von 3 Tagen bei dir melden, sobald deine Lizenz genehmigt ist. In der Zwischenzeit kannst du gerne die kostenlose Version unseres Produkts weiter nutzen.",
"self_hosted_signup.failed_export.title": "Deine Transaktion wird überprüft", "self_hosted_signup.failed_export.title": "Deine Transaktion wird überprüft",
"self_hosted_signup.license_applied": "Deine {planName} Lizenz wurde jetzt angewendet. {planName} Funktionen sind jetzt verfügbar und einsatzbereit.", "self_hosted_signup.license_applied": "Deine {planName} Lizenz wurde jetzt angewendet. {planName} Funktionen sind jetzt verfügbar und einsatzbereit.",
"self_hosted_signup.line_item_subtotal": "{num} Nutzer × 12 Mo.",
"self_hosted_signup.organization": "Name der Organisation", "self_hosted_signup.organization": "Name der Organisation",
"self_hosted_signup.progress_step.applying_license": "Übertrage deine {planName} Lizenz auf deine Mattermost-Instanz", "self_hosted_signup.progress_step.applying_license": "Übertrage deine {planName} Lizenz auf deine Mattermost-Instanz",
"self_hosted_signup.progress_step.submitting_payment": "Übermittlung von Zahlungsinformationen", "self_hosted_signup.progress_step.submitting_payment": "Übermittlung von Zahlungsinformationen",
@@ -4729,10 +4716,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Wenn du der Meinung bist, dass dies ein Fehler ist, starte den Kauf erneut.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Wenn du der Meinung bist, dass dies ein Fehler ist, starte den Kauf erneut.",
"self_hosted_signup.purchase_in_progress.reset": "Kaufvorgang erneut starten", "self_hosted_signup.purchase_in_progress.reset": "Kaufvorgang erneut starten",
"self_hosted_signup.purchase_in_progress.title": "Kauf in Bearbeitung", "self_hosted_signup.purchase_in_progress.title": "Kauf in Bearbeitung",
"self_hosted_signup.error_min_seats": "Dein Arbeitsbereich hat derzeit {num} Benutzer",
"self_hosted_signup.retry": "Erneut versuchen", "self_hosted_signup.retry": "Erneut versuchen",
"self_hosted_signup.screening_description": "Wir werden die Dinge von unserer Seite aus überprüfen und uns innerhalb von 3 Tagen bei dir melden, sobald deine Lizenz genehmigt ist. In der Zwischenzeit kannst du gerne die kostenlose Version unseres Produkts weiter nutzen.", "self_hosted_signup.screening_description": "Wir werden die Dinge von unserer Seite aus überprüfen und uns innerhalb von 3 Tagen bei dir melden, sobald deine Lizenz genehmigt ist. In der Zwischenzeit kannst du gerne die kostenlose Version unseres Produkts weiter nutzen.",
"self_hosted_signup.screening_title": "Deine Transaktion wird überprüft", "self_hosted_signup.screening_title": "Deine Transaktion wird überprüft",
"self_hosted_signup.seats": "Benutzerplätze",
"self_hosted_signup.signup_consequences": "Du erhältst eine Rechnung von heute. Deine Lizenz wird automatisch angewendet. <a>Sieh, wie die Abrechnung funktioniert.</a>", "self_hosted_signup.signup_consequences": "Du erhältst eine Rechnung von heute. Deine Lizenz wird automatisch angewendet. <a>Sieh, wie die Abrechnung funktioniert.</a>",
"self_hosted_signup.total": "Summe", "self_hosted_signup.total": "Summe",
"setting_item_max.cancel": "Abbrechen", "setting_item_max.cancel": "Abbrechen",

Просмотреть файл

@@ -265,20 +265,20 @@
"admin.billing.history.allPaymentsShowHere": "All of your invoices will be shown here", "admin.billing.history.allPaymentsShowHere": "All of your invoices will be shown here",
"admin.billing.history.date": "Date", "admin.billing.history.date": "Date",
"admin.billing.history.description": "Description", "admin.billing.history.description": "Description",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} metered users, {fullUsers} users at full rate, {partialUsers} users with partial charges", "admin.billing.history.fractionalAndRatedSeats": "{fractionalSeats} metered seats, {fullSeats} seats at full rate, {partialSeats} seats with partial charges",
"admin.billing.history.fractionalUsers": "{fractionalUsers} users", "admin.billing.history.fractionalSeats": "{fractionalUsers} seats",
"admin.billing.history.noBillingHistory": "In the future, this is where your billing history will show.", "admin.billing.history.noBillingHistory": "In the future, this is where your billing history will show.",
"admin.billing.history.onPremUsers": "{num} users", "admin.billing.history.onPremSeats": "{num} seats",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}",
"admin.billing.history.paid": "Paid", "admin.billing.history.paid": "Paid",
"admin.billing.history.paymentFailed": "Payment failed", "admin.billing.history.paymentFailed": "Payment failed",
"admin.billing.history.pending": "Pending", "admin.billing.history.pending": "Pending",
"admin.billing.history.seatsAndRates": "{fullUsers} seats at full rate, {partialUsers} seats with partial charges",
"admin.billing.history.seeHowBillingWorks": "See how billing works", "admin.billing.history.seeHowBillingWorks": "See how billing works",
"admin.billing.history.status": "Status", "admin.billing.history.status": "Status",
"admin.billing.history.title": "Billing History", "admin.billing.history.title": "Billing History",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transactions", "admin.billing.history.transactions": "Transactions",
"admin.billing.history.usersAndRates": "{fullUsers} users at full rate, {partialUsers} users with partial charges",
"admin.billing.payment_info_display.allCardsAccepted": "All major credit cards are accepted.", "admin.billing.payment_info_display.allCardsAccepted": "All major credit cards are accepted.",
"admin.billing.payment_info_display.noPaymentInfo": "There are currently no credit cards on file.", "admin.billing.payment_info_display.noPaymentInfo": "There are currently no credit cards on file.",
"admin.billing.payment_info_display.savedPaymentDetails": "Your saved payment details", "admin.billing.payment_info_display.savedPaymentDetails": "Your saved payment details",
@@ -412,12 +412,12 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.paid": "Paid", "admin.billing.subscriptions.billing_summary.lastInvoice.paid": "Paid",
"admin.billing.subscriptions.billing_summary.lastInvoice.partialCharges": "Partial charges", "admin.billing.subscriptions.billing_summary.lastInvoice.partialCharges": "Partial charges",
"admin.billing.subscriptions.billing_summary.lastInvoice.pending": "Pending", "admin.billing.subscriptions.billing_summary.lastInvoice.pending": "Pending",
"admin.billing.subscriptions.billing_summary.lastInvoice.seatCount": " x {seats} seats",
"admin.billing.subscriptions.billing_summary.lastInvoice.seatCountPartial": "{seats} seats",
"admin.billing.subscriptions.billing_summary.lastInvoice.seeBillingHistory": "See Billing History", "admin.billing.subscriptions.billing_summary.lastInvoice.seeBillingHistory": "See Billing History",
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Last Invoice", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Last Invoice",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} users",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} users",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "View Invoice", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "View Invoice",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "What are partial charges?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "What are partial charges?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Users who have not been enabled for the full duration of the month are charged at a prorated monthly rate.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Users who have not been enabled for the full duration of the month are charged at a prorated monthly rate.",
@@ -1360,7 +1360,7 @@
"admin.license.upload-modal.file": "File", "admin.license.upload-modal.file": "File",
"admin.license.upload-modal.subtitle": "Upload a license key for Mattermost Enterprise Edition to upgrade this server. ", "admin.license.upload-modal.subtitle": "Upload a license key for Mattermost Enterprise Edition to upgrade this server. ",
"admin.license.upload-modal.successfulUpgrade": "Successful Upgrade!", "admin.license.upload-modal.successfulUpgrade": "Successful Upgrade!",
"admin.license.upload-modal.successfulUpgradeText": "You have upgraded to the {skuName} plan for {licensedUsersNum, number} users. This is effective from {startsAt} until {expiresAt}. ", "admin.license.upload-modal.successfulUpgradeText": "You have upgraded to the {skuName} plan for {licensedUsersNum, number} seats. This is effective from {startsAt} until {expiresAt}. ",
"admin.license.upload-modal.title": "Upload a License Key", "admin.license.upload-modal.title": "Upload a License Key",
"admin.license.uploadFile": "Upload File", "admin.license.uploadFile": "Upload File",
"admin.license.warn.renew": "Renew", "admin.license.warn.renew": "Renew",
@@ -2579,7 +2579,7 @@
"analytics.system.postTypes": "Posts, Files and Hashtags", "analytics.system.postTypes": "Posts, Files and Hashtags",
"analytics.system.privateGroups": "Private Channels", "analytics.system.privateGroups": "Private Channels",
"analytics.system.publicChannels": "Public Channels", "analytics.system.publicChannels": "Public Channels",
"analytics.system.seatsPurchased": "Total paid users", "analytics.system.seatsPurchased": "Licensed Seats",
"analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can <link>re-enable them in config.json</link>.", "analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can <link>re-enable them in config.json</link>.",
"analytics.system.textPosts": "Posts with Text-only", "analytics.system.textPosts": "Posts with Text-only",
"analytics.system.title": "System Statistics", "analytics.system.title": "System Statistics",
@@ -2599,7 +2599,7 @@
"analytics.team.activeUsers": "Active Users With Posts", "analytics.team.activeUsers": "Active Users With Posts",
"analytics.team.newlyCreated": "Newly Created Users", "analytics.team.newlyCreated": "Newly Created Users",
"analytics.team.noTeams": "This server has no teams for which to view statistics.", "analytics.team.noTeams": "This server has no teams for which to view statistics.",
"analytics.team.overageUsersSeats": "This exceeds total paid users", "analytics.team.overageUsersSeats": "This exceeds total paid seats",
"analytics.team.privateGroups": "Private Channels", "analytics.team.privateGroups": "Private Channels",
"analytics.team.publicChannels": "Public Channels", "analytics.team.publicChannels": "Public Channels",
"analytics.team.recentUsers": "Recent Active Users", "analytics.team.recentUsers": "Recent Active Users",
@@ -4579,7 +4579,7 @@
"pricing_modal.planSummary.free": "Increased productivity for small teams", "pricing_modal.planSummary.free": "Increased productivity for small teams",
"pricing_modal.planSummary.professional": "Scalable solutions for growing teams", "pricing_modal.planSummary.professional": "Scalable solutions for growing teams",
"pricing_modal.price.freeForever": "Free forever", "pricing_modal.price.freeForever": "Free forever",
"pricing_modal.rate.userPerMonth": "USD per user/month {br}<b>(billed annually)</b>", "pricing_modal.rate.seatPerMonth": "USD per seat/month {br}<b>(billed annually)</b>",
"pricing_modal.reviewDeploymentOptions": "Review deployment options", "pricing_modal.reviewDeploymentOptions": "Review deployment options",
"pricing_modal.start_trial.disclaimer": "By selecting <span>Try free for 30 days,</span> I agree to the <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy>, and receiving product emails.", "pricing_modal.start_trial.disclaimer": "By selecting <span>Try free for 30 days,</span> I agree to the <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy>, and receiving product emails.",
"pricing_modal.subtitle": "Choose a plan to get started", "pricing_modal.subtitle": "Choose a plan to get started",
@@ -4717,12 +4717,12 @@
"self_hosted_signup.cta": "Upgrade", "self_hosted_signup.cta": "Upgrade",
"self_hosted_signup.disclaimer": "I have read and agree to the <a>Enterprise Edition Subscription Terms</a>", "self_hosted_signup.disclaimer": "I have read and agree to the <a>Enterprise Edition Subscription Terms</a>",
"self_hosted_signup.error_invalid_number": "Enter a valid number of seats", "self_hosted_signup.error_invalid_number": "Enter a valid number of seats",
"self_hosted_signup.error_max_seats": " license purchase only supports purchases up to {num} users", "self_hosted_signup.error_max_seats": " license purchase only supports purchases up to {num} seats",
"self_hosted_signup.error_min_seats": "Your workspace currently has {num} users", "self_hosted_signup.error_min_seats": "Your workspace currently has {num} users",
"self_hosted_signup.failed_export.subtitle": "We will check things on our side and get back to you within 3 days once your license is approved. In the meantime, please feel free to continue using the free version of our product.", "self_hosted_signup.failed_export.subtitle": "We will check things on our side and get back to you within 3 days once your license is approved. In the meantime, please feel free to continue using the free version of our product.",
"self_hosted_signup.failed_export.title": "Your transaction is being reviewed", "self_hosted_signup.failed_export.title": "Your transaction is being reviewed",
"self_hosted_signup.license_applied": "Your {planName} license has now been applied. {planName} features are now available and ready to use.", "self_hosted_signup.license_applied": "Your {planName} license has now been applied. {planName} features are now available and ready to use.",
"self_hosted_signup.line_item_subtotal": "{num} users × 12 mo.", "self_hosted_signup.line_item_subtotal": "{num} seats × 12 mo.",
"self_hosted_signup.organization": "Organization Name", "self_hosted_signup.organization": "Organization Name",
"self_hosted_signup.progress_step.applying_license": "Applying your {planName} license to your Mattermost instance", "self_hosted_signup.progress_step.applying_license": "Applying your {planName} license to your Mattermost instance",
"self_hosted_signup.progress_step.submitting_payment": "Submitting payment information", "self_hosted_signup.progress_step.submitting_payment": "Submitting payment information",
@@ -4735,7 +4735,7 @@
"self_hosted_signup.retry": "Try again", "self_hosted_signup.retry": "Try again",
"self_hosted_signup.screening_description": "We will check things on our side and get back to you within 3 days once your license is approved. In the meantime, please feel free to continue using the free version of our product.", "self_hosted_signup.screening_description": "We will check things on our side and get back to you within 3 days once your license is approved. In the meantime, please feel free to continue using the free version of our product.",
"self_hosted_signup.screening_title": "Your transaction is being reviewed", "self_hosted_signup.screening_title": "Your transaction is being reviewed",
"self_hosted_signup.seats": "User seats", "self_hosted_signup.seats": "Seats",
"self_hosted_signup.signup_consequences": "You will be billed today. Your license will be applied automatically. <a>See how billing works.</a>", "self_hosted_signup.signup_consequences": "You will be billed today. Your license will be applied automatically. <a>See how billing works.</a>",
"self_hosted_signup.total": "Total", "self_hosted_signup.total": "Total",
"setting_item_max.cancel": "Cancel", "setting_item_max.cancel": "Cancel",

Просмотреть файл

@@ -264,10 +264,10 @@
"admin.billing.history.allPaymentsShowHere": "All of your invoices will be shown here", "admin.billing.history.allPaymentsShowHere": "All of your invoices will be shown here",
"admin.billing.history.date": "Date", "admin.billing.history.date": "Date",
"admin.billing.history.description": "Description", "admin.billing.history.description": "Description",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} metered users, {fullUsers} users at full rate, {partialUsers} users with partial charges", "admin.billing.history.fractionalAndRatedSeats": "{fractionalSeats} metered seats, {fullSeats} seats at full rate, {partialSeats} seats with partial charges",
"admin.billing.history.fractionalUsers": "{fractionalUsers} users", "admin.billing.history.fractionalSeats": "{fractionalUsers} seats",
"admin.billing.history.noBillingHistory": "In the future, this is where your billing history will show.", "admin.billing.history.noBillingHistory": "In the future, this is where your billing history will show.",
"admin.billing.history.onPremUsers": "{num} users", "admin.billing.history.onPremSeats": "{num} seats",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}",
"admin.billing.history.paid": "Paid", "admin.billing.history.paid": "Paid",
"admin.billing.history.paymentFailed": "Payment failed", "admin.billing.history.paymentFailed": "Payment failed",
@@ -277,7 +277,7 @@
"admin.billing.history.title": "Billing History", "admin.billing.history.title": "Billing History",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transactions", "admin.billing.history.transactions": "Transactions",
"admin.billing.history.usersAndRates": "{fullUsers} users at full rate, {partialUsers} users with partial charges", "admin.billing.history.seatsAndRates": "{fullSeats} seats at full rate, {partialSeats} seats with partial charges",
"admin.billing.payment_info.add": "Add a Credit Card", "admin.billing.payment_info.add": "Add a Credit Card",
"admin.billing.payment_info.billingAddress": "Billing Address", "admin.billing.payment_info.billingAddress": "Billing Address",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} ending in {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} ending in {digits}",
@@ -414,8 +414,8 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Last Invoice", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Last Invoice",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} users", "admin.billing.subscriptions.billing_summary.lastInvoice.seatCount": " x {seats} seats",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} users", "admin.billing.subscriptions.billing_summary.lastInvoice.seatCountPartial": "{seats} seats",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "View Invoice", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "View Invoice",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "What are partial charges?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "What are partial charges?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Users who have not been enabled for the full duration of the month are charged at a prorated monthly rate.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Users who have not been enabled for the full duration of the month are charged at a prorated monthly rate.",
@@ -1356,7 +1356,7 @@
"admin.license.upload-modal.file": "File", "admin.license.upload-modal.file": "File",
"admin.license.upload-modal.subtitle": "Upload a licence key for Mattermost Enterprise Edition to upgrade this server. ", "admin.license.upload-modal.subtitle": "Upload a licence key for Mattermost Enterprise Edition to upgrade this server. ",
"admin.license.upload-modal.successfulUpgrade": "Upgrade successful!", "admin.license.upload-modal.successfulUpgrade": "Upgrade successful!",
"admin.license.upload-modal.successfulUpgradeText": "You have upgraded to the {skuName} plan for {licensedUsersNum, number} users. This is effective from {startsAt} until {expiresAt}. ", "admin.license.upload-modal.successfulUpgradeText": "You have upgraded to the {skuName} plan for {licensedUsersNum, number} seats. This is effective from {startsAt} until {expiresAt}. ",
"admin.license.upload-modal.title": "Upload a Licence Key", "admin.license.upload-modal.title": "Upload a Licence Key",
"admin.license.uploadFile": "Upload File", "admin.license.uploadFile": "Upload File",
"admin.license.warn.renew": "Renew", "admin.license.warn.renew": "Renew",
@@ -2571,7 +2571,7 @@
"analytics.system.postTypes": "Posts, Files and Hashtags", "analytics.system.postTypes": "Posts, Files and Hashtags",
"analytics.system.privateGroups": "Private Channels", "analytics.system.privateGroups": "Private Channels",
"analytics.system.publicChannels": "Public Channels", "analytics.system.publicChannels": "Public Channels",
"analytics.system.seatsPurchased": "Total paid users", "analytics.system.seatsPurchased": "Licensed Seats",
"analytics.system.skippedIntensiveQueries": "To maximise performance, some statistics are disabled. You can <link>re-enable them in config.json</link>.", "analytics.system.skippedIntensiveQueries": "To maximise performance, some statistics are disabled. You can <link>re-enable them in config.json</link>.",
"analytics.system.textPosts": "Posts with Text-only", "analytics.system.textPosts": "Posts with Text-only",
"analytics.system.title": "System Statistics", "analytics.system.title": "System Statistics",
@@ -2591,7 +2591,7 @@
"analytics.team.activeUsers": "Active Users With Posts", "analytics.team.activeUsers": "Active Users With Posts",
"analytics.team.newlyCreated": "Newly Created Users", "analytics.team.newlyCreated": "Newly Created Users",
"analytics.team.noTeams": "This server has no teams for which to view statistics.", "analytics.team.noTeams": "This server has no teams for which to view statistics.",
"analytics.team.overageUsersSeats": "This exceeds total paid users", "analytics.team.overageUsersSeats": "This exceeds total paid seats",
"analytics.team.privateGroups": "Private Channels", "analytics.team.privateGroups": "Private Channels",
"analytics.team.publicChannels": "Public Channels", "analytics.team.publicChannels": "Public Channels",
"analytics.team.recentUsers": "Recent Active Users", "analytics.team.recentUsers": "Recent Active Users",
@@ -4537,7 +4537,7 @@
"pricing_modal.planSummary.professional": "Scalable solutions for growing teams", "pricing_modal.planSummary.professional": "Scalable solutions for growing teams",
"pricing_modal.plan_label_trialDays": "{days} DAYS LEFT ON TRIAL", "pricing_modal.plan_label_trialDays": "{days} DAYS LEFT ON TRIAL",
"pricing_modal.price.freeForever": "Free forever", "pricing_modal.price.freeForever": "Free forever",
"pricing_modal.rate.userPerMonth": "USD per user/month {br}<b>(billed annually)</b>", "pricing_modal.rate.seatPerMonth": "USD per seat/month {br}<b>(billed annually)</b>",
"pricing_modal.reviewDeploymentOptions": "Review deployment options", "pricing_modal.reviewDeploymentOptions": "Review deployment options",
"pricing_modal.start_trial.disclaimer": "By selecting <span>Try free for 30 days,</span> I agree to the <linkAgreement>Mattermost Software and Services Licence Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> and receiving product emails.", "pricing_modal.start_trial.disclaimer": "By selecting <span>Try free for 30 days,</span> I agree to the <linkAgreement>Mattermost Software and Services Licence Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> and receiving product emails.",
"pricing_modal.subtitle": "Choose a plan to get started", "pricing_modal.subtitle": "Choose a plan to get started",
@@ -4675,12 +4675,12 @@
"self_hosted_signup.cta": "Upgrade", "self_hosted_signup.cta": "Upgrade",
"self_hosted_signup.disclaimer": "I have read and agree to the <a>Enterprise Edition Subscription Terms</a>", "self_hosted_signup.disclaimer": "I have read and agree to the <a>Enterprise Edition Subscription Terms</a>",
"self_hosted_signup.error_invalid_number": "Enter a valid number of seats", "self_hosted_signup.error_invalid_number": "Enter a valid number of seats",
"self_hosted_signup.error_max_seats": " licence purchase only supports purchases up to {num} users", "self_hosted_signup.error_max_seats": " licence purchase only supports purchases up to {num} seats",
"self_hosted_signup.error_min_seats": "Your workspace currently has {num} users", "self_hosted_signup.error_min_seats": "Your workspace currently has {num} users",
"self_hosted_signup.failed_export.subtitle": "You will receive an email within 3 days to confirm the approval of your licence. In the meantime, please feel free to continue using the free version of our product.", "self_hosted_signup.failed_export.subtitle": "You will receive an email within 3 days to confirm the approval of your licence. In the meantime, please feel free to continue using the free version of our product.",
"self_hosted_signup.failed_export.title": "Your transaction is being reviewed", "self_hosted_signup.failed_export.title": "Your transaction is being reviewed",
"self_hosted_signup.license_applied": "Your {planName} licence has now been applied. {planName} features are now available and ready to use.", "self_hosted_signup.license_applied": "Your {planName} licence has now been applied. {planName} features are now available and ready to use.",
"self_hosted_signup.line_item_subtotal": "{num} users × 12 months.", "self_hosted_signup.line_item_subtotal": "{num} seats × 12 months.",
"self_hosted_signup.organization": "Organisation Name", "self_hosted_signup.organization": "Organisation Name",
"self_hosted_signup.progress_step.applying_license": "Applying your {planName} licence to your Mattermost instance", "self_hosted_signup.progress_step.applying_license": "Applying your {planName} licence to your Mattermost instance",
"self_hosted_signup.progress_step.submitting_payment": "Submitting payment information", "self_hosted_signup.progress_step.submitting_payment": "Submitting payment information",
@@ -4693,7 +4693,7 @@
"self_hosted_signup.retry": "Try again", "self_hosted_signup.retry": "Try again",
"self_hosted_signup.screening_description": "You will receive an email within 3 days to confirm the approval of your licence. In the meantime, please feel free to continue using the free version of our product.", "self_hosted_signup.screening_description": "You will receive an email within 3 days to confirm the approval of your licence. In the meantime, please feel free to continue using the free version of our product.",
"self_hosted_signup.screening_title": "Your transaction is being reviewed", "self_hosted_signup.screening_title": "Your transaction is being reviewed",
"self_hosted_signup.seats": "User seats", "self_hosted_signup.seats": "Seats",
"self_hosted_signup.signup_consequences": "You will be billed today. Your licence will be applied automatically. <a>See how billing works.</a>", "self_hosted_signup.signup_consequences": "You will be billed today. Your licence will be applied automatically. <a>See how billing works.</a>",
"self_hosted_signup.total": "Total", "self_hosted_signup.total": "Total",
"setting_item_max.cancel": "Cancel", "setting_item_max.cancel": "Cancel",

Просмотреть файл

@@ -258,8 +258,6 @@
"admin.billing.history.allPaymentsShowHere": "Todos sus pagos mensuales se mostrarán aquí", "admin.billing.history.allPaymentsShowHere": "Todos sus pagos mensuales se mostrarán aquí",
"admin.billing.history.date": "Fecha", "admin.billing.history.date": "Fecha",
"admin.billing.history.description": "Descripción", "admin.billing.history.description": "Descripción",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} usuarios medidos, {fullUsers} usuarios con tarifa completa, {partialUsers} usuarios con tarifa parcial",
"admin.billing.history.fractionalUsers": "{fractionalUsers} usuarios",
"admin.billing.history.noBillingHistory": "En el futuro, aquí es donde se mostrará su historial de facturación.", "admin.billing.history.noBillingHistory": "En el futuro, aquí es donde se mostrará su historial de facturación.",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}",
"admin.billing.history.paid": "Pagado", "admin.billing.history.paid": "Pagado",
@@ -270,7 +268,6 @@
"admin.billing.history.title": "Historial de facturación", "admin.billing.history.title": "Historial de facturación",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transacciones", "admin.billing.history.transactions": "Transacciones",
"admin.billing.history.usersAndRates": "{fullUsers} usuarios a tarifa completa, {partialUsers} usuarios con cargos parciales",
"admin.billing.payment_info.add": "Agregar tarjeta de crédito", "admin.billing.payment_info.add": "Agregar tarjeta de crédito",
"admin.billing.payment_info.billingAddress": "Dirección de Facturación", "admin.billing.payment_info.billingAddress": "Dirección de Facturación",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} terminada en {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} terminada en {digits}",
@@ -386,8 +383,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Impuestos", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Impuestos",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Última factura", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Última factura",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} usuarios",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} usuarios",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "¿Qué son los cargos parciales?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "¿Qué son los cargos parciales?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Los usuarios que no se hayan habilitado durante todo el mes se les cobrará una tarifa mensual prorrateada.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Los usuarios que no se hayan habilitado durante todo el mes se les cobrará una tarifa mensual prorrateada.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "En el futuro, aquí es donde se mostrará su resumen de factura más reciente.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "En el futuro, aquí es donde se mostrará su resumen de factura más reciente.",
@@ -1304,7 +1299,6 @@
"admin.license.upload-modal.file": "Archivo", "admin.license.upload-modal.file": "Archivo",
"admin.license.upload-modal.subtitle": "Cargar una clave de licencia para Mattermost Enterprise Edition para actualizar este servidor. ", "admin.license.upload-modal.subtitle": "Cargar una clave de licencia para Mattermost Enterprise Edition para actualizar este servidor. ",
"admin.license.upload-modal.successfulUpgrade": "¡Actualización satisfactoria!", "admin.license.upload-modal.successfulUpgrade": "¡Actualización satisfactoria!",
"admin.license.upload-modal.successfulUpgradeText": "Has actualizado al plan {skuName} para los usuarios {licensedUsersNum, number}. Esto es efectivo a partir de {startsAt} y hasta {expiresAt}. ",
"admin.license.upload-modal.title": "Cargar Clave de Licencia", "admin.license.upload-modal.title": "Cargar Clave de Licencia",
"admin.license.uploadFile": "Cargar Archivo", "admin.license.uploadFile": "Cargar Archivo",
"admin.license.warn.renew": "Renovar", "admin.license.warn.renew": "Renovar",
@@ -4173,7 +4167,6 @@
"pricing_modal.planSummary.enterprise": "Administración, seguridad y cumplimiento para grandes equipos", "pricing_modal.planSummary.enterprise": "Administración, seguridad y cumplimiento para grandes equipos",
"pricing_modal.plan_label_trialDays": "{days} DÍAS RESTANTES DE LA PRUEBA", "pricing_modal.plan_label_trialDays": "{days} DÍAS RESTANTES DE LA PRUEBA",
"pricing_modal.price.freeForever": "Libre por siempre", "pricing_modal.price.freeForever": "Libre por siempre",
"pricing_modal.rate.userPerMonth": "/usuario/mes",
"pricing_modal.subtitle": "Elige un plan para empezar", "pricing_modal.subtitle": "Elige un plan para empezar",
"promote_to_user_modal.desc": "Esta acción promueve al huésped {username} a miembro. Esto permitirá que el usuario se pueda unir a canales públicos y pueda interactuar con usuarios fuera de los canales de los cuales es miembro actualmente. ¿Está seguro que desea promover al huésped {username} a miembro?", "promote_to_user_modal.desc": "Esta acción promueve al huésped {username} a miembro. Esto permitirá que el usuario se pueda unir a canales públicos y pueda interactuar con usuarios fuera de los canales de los cuales es miembro actualmente. ¿Está seguro que desea promover al huésped {username} a miembro?",
"promote_to_user_modal.promote": "Promover", "promote_to_user_modal.promote": "Promover",

Просмотреть файл

@@ -251,9 +251,7 @@
"admin.billing.history.allPaymentsShowHere": "همه پرداخت‌های ماهانه شما در اینجا نشان داده می‌شود", "admin.billing.history.allPaymentsShowHere": "همه پرداخت‌های ماهانه شما در اینجا نشان داده می‌شود",
"admin.billing.history.date": "تاریخ", "admin.billing.history.date": "تاریخ",
"admin.billing.history.description": "شرح", "admin.billing.history.description": "شرح",
"admin.billing.history.fractionalUsers": "کاربران {fractionalUsers}",
"admin.billing.history.noBillingHistory": "در آینده، این جایی است که سابقه صورتحساب شما نشان داده خواهد شد.", "admin.billing.history.noBillingHistory": "در آینده، این جایی است که سابقه صورتحساب شما نشان داده خواهد شد.",
"admin.billing.history.onPremUsers": "{num} کاربر",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} از {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} از {totalRecords}",
"admin.billing.history.paid": "پرداخت شده", "admin.billing.history.paid": "پرداخت شده",
"admin.billing.history.paymentFailed": "پرداخت ناموفق", "admin.billing.history.paymentFailed": "پرداخت ناموفق",
@@ -363,8 +361,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "مالیات", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "مالیات",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "آخرین صورت‌حساب", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "آخرین صورت‌حساب",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "جمع", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "جمع",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " × {users} کاربر",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} کاربر",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "نمایش فاکتور", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "نمایش فاکتور",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "در آینده، این جایی است که آخرین خلاصه صورتحساب شما نشان داده خواهد شد.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "در آینده، این جایی است که آخرین خلاصه صورتحساب شما نشان داده خواهد شد.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.link": "ببینید صورتحساب چگونه کار می کند", "admin.billing.subscriptions.billing_summary.noBillingHistory.link": "ببینید صورتحساب چگونه کار می کند",
@@ -4086,7 +4082,6 @@
"self_hosted_signup.organization": "نام سازمان", "self_hosted_signup.organization": "نام سازمان",
"self_hosted_signup.purchase_in_progress.reset": "شروع دوباره خرید", "self_hosted_signup.purchase_in_progress.reset": "شروع دوباره خرید",
"self_hosted_signup.retry": "تلاش دوباره", "self_hosted_signup.retry": "تلاش دوباره",
"self_hosted_signup.seats": "نشست‌های کاربران",
"self_hosted_signup.total": "جمع", "self_hosted_signup.total": "جمع",
"setting_item_max.cancel": "انصراف", "setting_item_max.cancel": "انصراف",
"setting_item_min.edit": "ویرایش کنید", "setting_item_min.edit": "ویرایش کنید",

Просмотреть файл

@@ -257,10 +257,7 @@
"admin.billing.history.allPaymentsShowHere": "Tous vos paiements mensuels apparaîtront ici", "admin.billing.history.allPaymentsShowHere": "Tous vos paiements mensuels apparaîtront ici",
"admin.billing.history.date": "Date", "admin.billing.history.date": "Date",
"admin.billing.history.description": "Description", "admin.billing.history.description": "Description",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} utilisateurs mesurés, {fullUsers} utilisateurs à plein tarif, {partialUsers} utilisateurs avec des frais partiels",
"admin.billing.history.fractionalUsers": "{fractionalUsers} utilisateurs",
"admin.billing.history.noBillingHistory": "À l'avenir, c'est ici que votre historique de facturation apparaîtra.", "admin.billing.history.noBillingHistory": "À l'avenir, c'est ici que votre historique de facturation apparaîtra.",
"admin.billing.history.onPremUsers": "{num} utilisateurs",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}",
"admin.billing.history.paid": "Payé", "admin.billing.history.paid": "Payé",
"admin.billing.history.paymentFailed": "Échec du paiement", "admin.billing.history.paymentFailed": "Échec du paiement",
@@ -270,7 +267,6 @@
"admin.billing.history.title": "Historique de facturation", "admin.billing.history.title": "Historique de facturation",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transactions", "admin.billing.history.transactions": "Transactions",
"admin.billing.history.usersAndRates": "{fullUsers} utilisateurs à tarif plein, {partielsUsers} utilisateurs à tarif réduit",
"admin.billing.payment_info.add": "Ajouter une carte de crédit", "admin.billing.payment_info.add": "Ajouter une carte de crédit",
"admin.billing.payment_info.billingAddress": "Adresse de facturation", "admin.billing.payment_info.billingAddress": "Adresse de facturation",
"admin.billing.payment_info.cardBrandAndDigits": "{marque} se terminant par {chiffres}", "admin.billing.payment_info.cardBrandAndDigits": "{marque} se terminant par {chiffres}",
@@ -391,8 +387,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxes",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Dernière facture", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Dernière facture",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} utilisateurs",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} utilisateurs",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Voir la facture", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Voir la facture",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Qu'est-ce qu'un paiement partiel ?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Qu'est-ce qu'un paiement partiel ?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Les utilisateurs qui n'ont pas été activés durant toute la durée du mois sont facturés proportionnellement au taux mensuel.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Les utilisateurs qui n'ont pas été activés durant toute la durée du mois sont facturés proportionnellement au taux mensuel.",
@@ -1285,7 +1279,6 @@
"admin.license.upload-modal.file": "Fichier", "admin.license.upload-modal.file": "Fichier",
"admin.license.upload-modal.subtitle": "Téléchargez une clé de licence pour Mattermost Enterprise Edition pour mettre à niveau ce serveur. ", "admin.license.upload-modal.subtitle": "Téléchargez une clé de licence pour Mattermost Enterprise Edition pour mettre à niveau ce serveur. ",
"admin.license.upload-modal.successfulUpgrade": "Mise à niveau réussie !", "admin.license.upload-modal.successfulUpgrade": "Mise à niveau réussie !",
"admin.license.upload-modal.successfulUpgradeText": "Vous avez mis à niveau vers le plan {skuName} pour {licensedUsersNum, number} utilisateurs. Ceci est valable du {startsAt} jusqu'au {expiresAt}. ",
"admin.license.upload-modal.title": "Télécharger une clé de licence", "admin.license.upload-modal.title": "Télécharger une clé de licence",
"admin.license.uploadFile": "Télécharger un fichier", "admin.license.uploadFile": "Télécharger un fichier",
"admin.license.warn.renew": "Renouveller", "admin.license.warn.renew": "Renouveller",

Просмотреть файл

@@ -250,8 +250,6 @@
"admin.billing.history.allPaymentsShowHere": "Minden havi befizetése itt jelenik meg", "admin.billing.history.allPaymentsShowHere": "Minden havi befizetése itt jelenik meg",
"admin.billing.history.date": "Dátum", "admin.billing.history.date": "Dátum",
"admin.billing.history.description": "Leírás", "admin.billing.history.description": "Leírás",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} mért felhasználó, {fullUsers} felhasználó teljes díjszabással, {partialUsers} felhasználó részleges díjszabással",
"admin.billing.history.fractionalUsers": "{fractionalUsers} felhasználó",
"admin.billing.history.noBillingHistory": "A jövőben itt fognak megjelenni a számlázási előzményei.", "admin.billing.history.noBillingHistory": "A jövőben itt fognak megjelenni a számlázási előzményei.",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} / {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} / {totalRecords}",
"admin.billing.history.paid": "Fizetett", "admin.billing.history.paid": "Fizetett",
@@ -262,7 +260,6 @@
"admin.billing.history.title": "Számlázási előzmények", "admin.billing.history.title": "Számlázási előzmények",
"admin.billing.history.total": "Összesen", "admin.billing.history.total": "Összesen",
"admin.billing.history.transactions": "Tranzakciók", "admin.billing.history.transactions": "Tranzakciók",
"admin.billing.history.usersAndRates": "{fullUsers} felhasználó teljes áron, {partialUsers} felhasználó részleges díjakkal",
"admin.billing.payment_info.add": "Hitelkártya hozzáadása", "admin.billing.payment_info.add": "Hitelkártya hozzáadása",
"admin.billing.payment_info.billingAddress": "Számlázási cím", "admin.billing.payment_info.billingAddress": "Számlázási cím",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} {digits} végződéssel", "admin.billing.payment_info.cardBrandAndDigits": "{brand} {digits} végződéssel",
@@ -374,8 +371,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Adók", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Adók",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Utolsó számla", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Utolsó számla",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Végösszeg", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Végösszeg",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} felhasználó",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} felhasználó",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Mik azok a részleges díjak?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Mik azok a részleges díjak?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Azoknak a felhasználóknak, akiket nem a hónap teljes időtartama alatt engedélyeztek, arányos havi díjat számítunk fel.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Azoknak a felhasználóknak, akiket nem a hónap teljes időtartama alatt engedélyeztek, arányos havi díjat számítunk fel.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "A jövőben itt fog megjelenni a legutóbbi számlázási összefoglaló.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "A jövőben itt fog megjelenni a legutóbbi számlázási összefoglaló.",
@@ -1287,7 +1282,6 @@
"admin.license.upload-modal.file": "Fájl", "admin.license.upload-modal.file": "Fájl",
"admin.license.upload-modal.subtitle": "Töltse fel a Mattermost Enterprise Edition licenckulcsát a kiszolgáló frissítéséhez. ", "admin.license.upload-modal.subtitle": "Töltse fel a Mattermost Enterprise Edition licenckulcsát a kiszolgáló frissítéséhez. ",
"admin.license.upload-modal.successfulUpgrade": "Sikeres frissítés!", "admin.license.upload-modal.successfulUpgrade": "Sikeres frissítés!",
"admin.license.upload-modal.successfulUpgradeText": "Ön a {licensedUsersNum, number} felhasználóra szóló {skuName} csomagra frissített. Az érvényességi idő {startsAt}-től {expiresAt}-ig tart. ",
"admin.license.upload-modal.title": "Licensz fájl feltöltése", "admin.license.upload-modal.title": "Licensz fájl feltöltése",
"admin.license.uploadFile": "Fájl feltöltése", "admin.license.uploadFile": "Fájl feltöltése",
"admin.license.warn.renew": "Megújítás", "admin.license.warn.renew": "Megújítás",
@@ -4235,7 +4229,6 @@
"pricing_modal.planSummary.professional": "Skálázható megoldások növekvő csapatok számára", "pricing_modal.planSummary.professional": "Skálázható megoldások növekvő csapatok számára",
"pricing_modal.plan_label_trialDays": "{days} NAP VAN HÁTRA A PRÓBAIDŐSZAKBÓL", "pricing_modal.plan_label_trialDays": "{days} NAP VAN HÁTRA A PRÓBAIDŐSZAKBÓL",
"pricing_modal.price.freeForever": "Örökké ingyenes", "pricing_modal.price.freeForever": "Örökké ingyenes",
"pricing_modal.rate.userPerMonth": "/felhasználó/hónap",
"pricing_modal.reviewDeploymentOptions": "A telepítési lehetőségek áttekintése", "pricing_modal.reviewDeploymentOptions": "A telepítési lehetőségek áttekintése",
"pricing_modal.subtitle": "Válasszon egy csomagot az induláshoz", "pricing_modal.subtitle": "Válasszon egy csomagot az induláshoz",
"pricing_modal.title": "Válasszon csomagot", "pricing_modal.title": "Válasszon csomagot",

Просмотреть файл

@@ -249,8 +249,6 @@
"admin.billing.history.allPaymentsShowHere": "Qui vengono mostrati tutti i pagamenti mensili", "admin.billing.history.allPaymentsShowHere": "Qui vengono mostrati tutti i pagamenti mensili",
"admin.billing.history.date": "Data", "admin.billing.history.date": "Data",
"admin.billing.history.description": "Descrizione", "admin.billing.history.description": "Descrizione",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} utenti misurati, {fullUsers} utenti a tariffa piena, {partialUsers} utenti con addebiti parziali",
"admin.billing.history.fractionalUsers": "{fractionalUsers} utenti",
"admin.billing.history.noBillingHistory": "Prossimamente in questa sezione verrà mostrato lo storico delle fatturazioni.", "admin.billing.history.noBillingHistory": "Prossimamente in questa sezione verrà mostrato lo storico delle fatturazioni.",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} di {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} di {totalRecords}",
"admin.billing.history.paid": "Pagato", "admin.billing.history.paid": "Pagato",
@@ -261,7 +259,6 @@
"admin.billing.history.title": "Storico delle fatture", "admin.billing.history.title": "Storico delle fatture",
"admin.billing.history.total": "Totale", "admin.billing.history.total": "Totale",
"admin.billing.history.transactions": "Transazioni", "admin.billing.history.transactions": "Transazioni",
"admin.billing.history.usersAndRates": "{fullUsers} utenti a tariffa piena, {partialUsers} utenti con addebiti parziali",
"admin.billing.payment_info.add": "Aggiungi una carta di credito", "admin.billing.payment_info.add": "Aggiungi una carta di credito",
"admin.billing.payment_info.billingAddress": "Indirizzo di pagamento", "admin.billing.payment_info.billingAddress": "Indirizzo di pagamento",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} finisce in {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} finisce in {digits}",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "すべての請求書がここに表示されます", "admin.billing.history.allPaymentsShowHere": "すべての請求書がここに表示されます",
"admin.billing.history.date": "日付", "admin.billing.history.date": "日付",
"admin.billing.history.description": "説明", "admin.billing.history.description": "説明",
"admin.billing.history.fractionalAndRatedUsers": "従量制ユーザー: {fractionalUsers}名、正規料金のユーザー: {fullUsers}名、部分料金のユーザー: {partialUsers}名",
"admin.billing.history.fractionalUsers": "{fractionalUsers}ユーザー",
"admin.billing.history.noBillingHistory": "今後、ここに請求履歴が表示されます。", "admin.billing.history.noBillingHistory": "今後、ここに請求履歴が表示されます。",
"admin.billing.history.onPremUsers": "{num} ユーザー",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} of {totalRecords}",
"admin.billing.history.paid": "支払い済", "admin.billing.history.paid": "支払い済",
"admin.billing.history.paymentFailed": "支払い失敗", "admin.billing.history.paymentFailed": "支払い失敗",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "請求履歴", "admin.billing.history.title": "請求履歴",
"admin.billing.history.total": "合計", "admin.billing.history.total": "合計",
"admin.billing.history.transactions": "処理", "admin.billing.history.transactions": "処理",
"admin.billing.history.usersAndRates": "{fullUsers} ユーザーは全額課金、{partialUsers} ユーザーは一部課金",
"admin.billing.payment_info.add": "クレジットカード情報を追加する", "admin.billing.payment_info.add": "クレジットカード情報を追加する",
"admin.billing.payment_info.billingAddress": "請求先住所", "admin.billing.payment_info.billingAddress": "請求先住所",
"admin.billing.payment_info.cardBrandAndDigits": "末尾が {digits} の {brand}", "admin.billing.payment_info.cardBrandAndDigits": "末尾が {digits} の {brand}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "税", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "税",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "最新の請求書", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "最新の請求書",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "総計", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "総計",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} ユーザー",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} ユーザー",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "請求書を見る", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "請求書を見る",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "一部課金とは?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "一部課金とは?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "月の全期間において有効でなかったユーザーは、日割り計算で課金されます。", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "月の全期間において有効でなかったユーザーは、日割り計算で課金されます。",
@@ -1358,7 +1352,6 @@
"admin.license.upload-modal.file": "ファイル", "admin.license.upload-modal.file": "ファイル",
"admin.license.upload-modal.subtitle": "このサーバーをアップグレードするために、Mattermost Enterprise Editionのライセンスキーをアップロードしてください。 ", "admin.license.upload-modal.subtitle": "このサーバーをアップグレードするために、Mattermost Enterprise Editionのライセンスキーをアップロードしてください。 ",
"admin.license.upload-modal.successfulUpgrade": "アップグレードが成功しました!", "admin.license.upload-modal.successfulUpgrade": "アップグレードが成功しました!",
"admin.license.upload-modal.successfulUpgradeText": "{licensedUsersNum, number} ユーザー向けの {skuName} プランにアップグレードされました。このプランは {startsAt} から {expiresAt} まで有効です。 ",
"admin.license.upload-modal.title": "ライセンスキーのアップロード", "admin.license.upload-modal.title": "ライセンスキーのアップロード",
"admin.license.uploadFile": "ファイルをアップロードする", "admin.license.uploadFile": "ファイルをアップロードする",
"admin.license.warn.renew": "更新", "admin.license.warn.renew": "更新",
@@ -2575,7 +2568,6 @@
"analytics.system.postTypes": "投稿、ファイル、ハッシュタグ", "analytics.system.postTypes": "投稿、ファイル、ハッシュタグ",
"analytics.system.privateGroups": "非公開チャンネル", "analytics.system.privateGroups": "非公開チャンネル",
"analytics.system.publicChannels": "公開チャンネル", "analytics.system.publicChannels": "公開チャンネル",
"analytics.system.seatsPurchased": "有償ユーザー数",
"analytics.system.skippedIntensiveQueries": "パフォーマンスを最大化するため無効化された統計情報があります。 config.jsonから、<link>それらを再度有効にすること</link>ができます。", "analytics.system.skippedIntensiveQueries": "パフォーマンスを最大化するため無効化された統計情報があります。 config.jsonから、<link>それらを再度有効にすること</link>ができます。",
"analytics.system.textPosts": "テキストのみの投稿数", "analytics.system.textPosts": "テキストのみの投稿数",
"analytics.system.title": "システムの使用統計", "analytics.system.title": "システムの使用統計",
@@ -2595,7 +2587,6 @@
"analytics.team.activeUsers": "投稿実績のあるアクティブユーザー", "analytics.team.activeUsers": "投稿実績のあるアクティブユーザー",
"analytics.team.newlyCreated": "新規作成ユーザー数", "analytics.team.newlyCreated": "新規作成ユーザー数",
"analytics.team.noTeams": "このサーバーには統計情報を閲覧可能なチームが存在しません。", "analytics.team.noTeams": "このサーバーには統計情報を閲覧可能なチームが存在しません。",
"analytics.team.overageUsersSeats": "有償ユーザー数を超えています",
"analytics.team.privateGroups": "非公開チャンネル", "analytics.team.privateGroups": "非公開チャンネル",
"analytics.team.publicChannels": "公開チャンネル", "analytics.team.publicChannels": "公開チャンネル",
"analytics.team.recentUsers": "最近のアクティブユーザー数", "analytics.team.recentUsers": "最近のアクティブユーザー数",
@@ -4562,7 +4553,6 @@
"pricing_modal.planSummary.professional": "成長するチームのためのスケーラブルなソリューション", "pricing_modal.planSummary.professional": "成長するチームのためのスケーラブルなソリューション",
"pricing_modal.plan_label_trialDays": "トライアル残り日数 {days}", "pricing_modal.plan_label_trialDays": "トライアル残り日数 {days}",
"pricing_modal.price.freeForever": "永久無料", "pricing_modal.price.freeForever": "永久無料",
"pricing_modal.rate.userPerMonth": "USD ユーザー/月 {br}<b>(年間請求)</b>",
"pricing_modal.reviewDeploymentOptions": "デプロイオプションを確認する", "pricing_modal.reviewDeploymentOptions": "デプロイオプションを確認する",
"pricing_modal.start_trial.disclaimer": "<span>30日間のトライアルを開始する</span>を選択すると、<linkAgreement>Mattermost Software and Services License Agreement</linkAgreement> と <linkPrivacy>プライバシーポリシー</linkPrivacy> に同意したことになり、製品に関する電子メールを受信するようになります。", "pricing_modal.start_trial.disclaimer": "<span>30日間のトライアルを開始する</span>を選択すると、<linkAgreement>Mattermost Software and Services License Agreement</linkAgreement> と <linkPrivacy>プライバシーポリシー</linkPrivacy> に同意したことになり、製品に関する電子メールを受信するようになります。",
"pricing_modal.subtitle": "プランを選んで開始", "pricing_modal.subtitle": "プランを選んで開始",
@@ -4700,12 +4690,9 @@
"self_hosted_signup.cta": "アップグレード", "self_hosted_signup.cta": "アップグレード",
"self_hosted_signup.disclaimer": "<a>Enterprise Edition Subscription Terms</a>を確認し、同意しました", "self_hosted_signup.disclaimer": "<a>Enterprise Edition Subscription Terms</a>を確認し、同意しました",
"self_hosted_signup.error_invalid_number": "有効なシート数を入力してください", "self_hosted_signup.error_invalid_number": "有効なシート数を入力してください",
"self_hosted_signup.error_max_seats": " ライセンス購入は、{num} ユーザーまでの購入のみに対応しています",
"self_hosted_signup.error_min_seats": "ワークスペースの現在のユーザー数は {num} ユーザーです",
"self_hosted_signup.failed_export.subtitle": "あなたのライセンスが承認され次第、弊社側で確認を行い、3日以内に返信いたします。それまでの間は、Free版の製品を引き続きご利用ください。", "self_hosted_signup.failed_export.subtitle": "あなたのライセンスが承認され次第、弊社側で確認を行い、3日以内に返信いたします。それまでの間は、Free版の製品を引き続きご利用ください。",
"self_hosted_signup.failed_export.title": "取引きは審査中です", "self_hosted_signup.failed_export.title": "取引きは審査中です",
"self_hosted_signup.license_applied": "{planName} ライセンスが適用されました。{planName} の機能が利用可能になり、今すぐ使用することができます。", "self_hosted_signup.license_applied": "{planName} ライセンスが適用されました。{planName} の機能が利用可能になり、今すぐ使用することができます。",
"self_hosted_signup.line_item_subtotal": "{num} ユーザー x 12ヶ月。",
"self_hosted_signup.organization": "組織名", "self_hosted_signup.organization": "組織名",
"self_hosted_signup.progress_step.applying_license": "Mattermostインスタンスに {planName} ライセンスを適用しています", "self_hosted_signup.progress_step.applying_license": "Mattermostインスタンスに {planName} ライセンスを適用しています",
"self_hosted_signup.progress_step.submitting_payment": "支払い情報を提出する", "self_hosted_signup.progress_step.submitting_payment": "支払い情報を提出する",
@@ -4715,10 +4702,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "間違いがある場合、購入をやり直してください。", "self_hosted_signup.purchase_in_progress.by_self_restart": "間違いがある場合、購入をやり直してください。",
"self_hosted_signup.purchase_in_progress.reset": "購入をやり直す", "self_hosted_signup.purchase_in_progress.reset": "購入をやり直す",
"self_hosted_signup.purchase_in_progress.title": "進行中の購入", "self_hosted_signup.purchase_in_progress.title": "進行中の購入",
"self_hosted_signup.error_min_seats": "ワークスペースの現在のユーザー数は {num} ユーザーです",
"self_hosted_signup.retry": "際実行", "self_hosted_signup.retry": "際実行",
"self_hosted_signup.screening_description": "あなたのライセンスが承認され次第、弊社側で確認を行い、3日以内に返信いたします。それまでの間は、Free版の製品を引き続きご利用ください。", "self_hosted_signup.screening_description": "あなたのライセンスが承認され次第、弊社側で確認を行い、3日以内に返信いたします。それまでの間は、Free版の製品を引き続きご利用ください。",
"self_hosted_signup.screening_title": "取引きは審査中です", "self_hosted_signup.screening_title": "取引きは審査中です",
"self_hosted_signup.seats": "ユーザーシート",
"self_hosted_signup.signup_consequences": "本日課金されます。あなたのライセンスは自動で適用されます。<a>課金の仕組みについてはこちらを参照してください。</a>", "self_hosted_signup.signup_consequences": "本日課金されます。あなたのライセンスは自動で適用されます。<a>課金の仕組みについてはこちらを参照してください。</a>",
"self_hosted_signup.total": "合計", "self_hosted_signup.total": "合計",
"setting_item_max.cancel": "キャンセル", "setting_item_max.cancel": "キャンセル",

Просмотреть файл

@@ -257,10 +257,7 @@
"admin.billing.history.allPaymentsShowHere": "모든 월별 결제 금액이 여기에 표시됩니다", "admin.billing.history.allPaymentsShowHere": "모든 월별 결제 금액이 여기에 표시됩니다",
"admin.billing.history.date": "날짜", "admin.billing.history.date": "날짜",
"admin.billing.history.description": "설명", "admin.billing.history.description": "설명",
"admin.billing.history.fractionalAndRatedUsers": "종량제 사용자: {fractionalUsers}명, 정규 요금 사용자: {fullUsers}명, 부분 요금 사용자: {partialUsers}명",
"admin.billing.history.fractionalUsers": "{fractionalUsers} 사용자",
"admin.billing.history.noBillingHistory": "앞으로, 이곳에 결제내역이 표시됩니다.", "admin.billing.history.noBillingHistory": "앞으로, 이곳에 결제내역이 표시됩니다.",
"admin.billing.history.onPremUsers": "{num}명의 사용자",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} 의 {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} 의 {totalRecords}",
"admin.billing.history.paid": "구매 완료", "admin.billing.history.paid": "구매 완료",
"admin.billing.history.paymentFailed": "결제 실패", "admin.billing.history.paymentFailed": "결제 실패",
@@ -270,7 +267,6 @@
"admin.billing.history.title": "결제 내역", "admin.billing.history.title": "결제 내역",
"admin.billing.history.total": "합계", "admin.billing.history.total": "합계",
"admin.billing.history.transactions": "거래 내역", "admin.billing.history.transactions": "거래 내역",
"admin.billing.history.usersAndRates": "전체 요금의 사용자 {fullUsers}명, 부분 요금의 사용자 {partialUsers}명",
"admin.billing.payment_info.add": "신용 카드 추가", "admin.billing.payment_info.add": "신용 카드 추가",
"admin.billing.payment_info.billingAddress": "청구 주소", "admin.billing.payment_info.billingAddress": "청구 주소",
"admin.billing.payment_info.cardBrandAndDigits": "{digits}로 끝나는 {brand}카드", "admin.billing.payment_info.cardBrandAndDigits": "{digits}로 끝나는 {brand}카드",
@@ -383,8 +379,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "세금", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "세금",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "마지막 인보이스", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "마지막 인보이스",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "합계", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "합계",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} 사용자",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} 사용자",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "청구서 보기", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "청구서 보기",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "부분 청구 란 무엇입니까?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "부분 청구 란 무엇입니까?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "해당 월의 전체 기간 동안 활성화되지 않은 사용자에게는 매월 비율에 따라 요금이 청구됩니다.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "해당 월의 전체 기간 동안 활성화되지 않은 사용자에게는 매월 비율에 따라 요금이 청구됩니다.",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "Een overzicht van al je facturen zal hier worden weergegeven", "admin.billing.history.allPaymentsShowHere": "Een overzicht van al je facturen zal hier worden weergegeven",
"admin.billing.history.date": "Datum", "admin.billing.history.date": "Datum",
"admin.billing.history.description": "Omschrijving", "admin.billing.history.description": "Omschrijving",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} gebruikers met beperkt gebruik, {fullUsers} gebruikers tegen vol tarief, {partialUsers} gebruikers met gedeeltelijke kosten",
"admin.billing.history.fractionalUsers": "{fractionalUsers} gebruikers",
"admin.billing.history.noBillingHistory": "In de toekomst zal hier je facturatiegeschiedenis getoond worden.", "admin.billing.history.noBillingHistory": "In de toekomst zal hier je facturatiegeschiedenis getoond worden.",
"admin.billing.history.onPremUsers": "{num} gebruikers",
"admin.billing.history.pageInfo": "{startRecord}-{endRecord} van {totalRecords}", "admin.billing.history.pageInfo": "{startRecord}-{endRecord} van {totalRecords}",
"admin.billing.history.paid": "Betaald", "admin.billing.history.paid": "Betaald",
"admin.billing.history.paymentFailed": "Betaling is mislukt", "admin.billing.history.paymentFailed": "Betaling is mislukt",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "Facturatiegeschiedenis", "admin.billing.history.title": "Facturatiegeschiedenis",
"admin.billing.history.total": "Totaal", "admin.billing.history.total": "Totaal",
"admin.billing.history.transactions": "Transacties", "admin.billing.history.transactions": "Transacties",
"admin.billing.history.usersAndRates": "{fullUsers} gebruikers aan een volledig tarief, {partialUsers} gebruikers met verminderd tarief",
"admin.billing.payment_info.add": "Voeg een kredietkaart toe", "admin.billing.payment_info.add": "Voeg een kredietkaart toe",
"admin.billing.payment_info.billingAddress": "Facturatieadres", "admin.billing.payment_info.billingAddress": "Facturatieadres",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} eindigend op {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} eindigend op {digits}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Belasting", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Belasting",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Laatste factuur", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Laatste factuur",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Totaal", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Totaal",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} gebruikers",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} gebruikers",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Factuur bekijken", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Factuur bekijken",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Wat zijn gedeeltelijke kosten?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Wat zijn gedeeltelijke kosten?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Gebruikers die niet voor de volledige duur van de maand zijn ingeschakeld, worden maandelijks een evenredig bedrag in rekening gebracht.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Gebruikers die niet voor de volledige duur van de maand zijn ingeschakeld, worden maandelijks een evenredig bedrag in rekening gebracht.",
@@ -1358,7 +1352,6 @@
"admin.license.upload-modal.file": "Bestand", "admin.license.upload-modal.file": "Bestand",
"admin.license.upload-modal.subtitle": "Upload een licentiesleutel voor Mattermost Enterprise Edition om deze server te upgraden. ", "admin.license.upload-modal.subtitle": "Upload een licentiesleutel voor Mattermost Enterprise Edition om deze server te upgraden. ",
"admin.license.upload-modal.successfulUpgrade": "Upgrade geslaagd!", "admin.license.upload-modal.successfulUpgrade": "Upgrade geslaagd!",
"admin.license.upload-modal.successfulUpgradeText": "Je hebt een upgrade naar het {skuName} plan voor {licensedUsersNum, number} gebruikers. Dit is van kracht vanaf {startsAt} tot {expiresAt}. ",
"admin.license.upload-modal.title": "Licentiesleutel uploaden", "admin.license.upload-modal.title": "Licentiesleutel uploaden",
"admin.license.uploadFile": "Bestand uploaden", "admin.license.uploadFile": "Bestand uploaden",
"admin.license.warn.renew": "Vernieuwen", "admin.license.warn.renew": "Vernieuwen",
@@ -2573,7 +2566,6 @@
"analytics.system.postTypes": "Berichten, bestanden en hashtags", "analytics.system.postTypes": "Berichten, bestanden en hashtags",
"analytics.system.privateGroups": "Privé-kanalen", "analytics.system.privateGroups": "Privé-kanalen",
"analytics.system.publicChannels": "Publieke kanalen", "analytics.system.publicChannels": "Publieke kanalen",
"analytics.system.seatsPurchased": "Totaal aantal betaalde gebruikers",
"analytics.system.skippedIntensiveQueries": "Om de prestaties te maximaliseren, zijn sommige statistieken uitgeschakeld. Je kan deze <link>opnieuw inschakelen in config.json</link> .", "analytics.system.skippedIntensiveQueries": "Om de prestaties te maximaliseren, zijn sommige statistieken uitgeschakeld. Je kan deze <link>opnieuw inschakelen in config.json</link> .",
"analytics.system.textPosts": "Berichten met enkel tekst", "analytics.system.textPosts": "Berichten met enkel tekst",
"analytics.system.title": "Systeem-statistieken", "analytics.system.title": "Systeem-statistieken",
@@ -2593,7 +2585,6 @@
"analytics.team.activeUsers": "Actieve gebruikers met berichten", "analytics.team.activeUsers": "Actieve gebruikers met berichten",
"analytics.team.newlyCreated": "Nieuw gemaakte gebruikers", "analytics.team.newlyCreated": "Nieuw gemaakte gebruikers",
"analytics.team.noTeams": "Deze server heeft geen teams om statistische gegevens te bekijken.", "analytics.team.noTeams": "Deze server heeft geen teams om statistische gegevens te bekijken.",
"analytics.team.overageUsersSeats": "Dit overtreft het totale aantal betaalde gebruikers",
"analytics.team.privateGroups": "Privé-kanalen", "analytics.team.privateGroups": "Privé-kanalen",
"analytics.team.publicChannels": "Publieke kanalen", "analytics.team.publicChannels": "Publieke kanalen",
"analytics.team.recentUsers": "Recent actieve gebruikers", "analytics.team.recentUsers": "Recent actieve gebruikers",
@@ -4559,7 +4550,6 @@
"pricing_modal.planSummary.professional": "Schaalbare oplossingen voor groeiende teams", "pricing_modal.planSummary.professional": "Schaalbare oplossingen voor groeiende teams",
"pricing_modal.plan_label_trialDays": "{days} DAGEN OVER VAN PROEFPERIODE", "pricing_modal.plan_label_trialDays": "{days} DAGEN OVER VAN PROEFPERIODE",
"pricing_modal.price.freeForever": "Voor altijd gratis", "pricing_modal.price.freeForever": "Voor altijd gratis",
"pricing_modal.rate.userPerMonth": "USD per gebruiker/maand{br}<b>(Jaarlijks gefactureerd)</b>",
"pricing_modal.reviewDeploymentOptions": "Bekijk de installatiemogelijkheden", "pricing_modal.reviewDeploymentOptions": "Bekijk de installatiemogelijkheden",
"pricing_modal.start_trial.disclaimer": "Door <span>Gratis 30 dagen proberen,</span> te selecteren ga ik akkoord met de <a>Mattermost Software Evaluatie Overeenkomst, Privacy Beleid,</a> en het ontvangen van product emails.", "pricing_modal.start_trial.disclaimer": "Door <span>Gratis 30 dagen proberen,</span> te selecteren ga ik akkoord met de <a>Mattermost Software Evaluatie Overeenkomst, Privacy Beleid,</a> en het ontvangen van product emails.",
"pricing_modal.subtitle": "Kies een plan om te beginnen", "pricing_modal.subtitle": "Kies een plan om te beginnen",
@@ -4697,12 +4687,9 @@
"self_hosted_signup.cta": "Upgraden", "self_hosted_signup.cta": "Upgraden",
"self_hosted_signup.disclaimer": "Ik heb de <a>abonnementsvoorwaarden voorEnterprise Edition</a> gelezen en ga ermee akkoord", "self_hosted_signup.disclaimer": "Ik heb de <a>abonnementsvoorwaarden voorEnterprise Edition</a> gelezen en ga ermee akkoord",
"self_hosted_signup.error_invalid_number": "Voer een geldig aantal zetels in", "self_hosted_signup.error_invalid_number": "Voer een geldig aantal zetels in",
"self_hosted_signup.error_max_seats": " licentieaankoop ondersteunt alleen aankopen tot {num} gebruikers",
"self_hosted_signup.error_min_seats": "Jouw werkruimte heeft momenteel {num} gebruikers",
"self_hosted_signup.failed_export.subtitle": "Wij controleren de zaken aan onze kant en nemen binnen 3 dagen contact met jou op zodra jouuw licentie is goedgekeurd. In de tussentijd kan je gerust de gratis versie van ons product blijven gebruiken.", "self_hosted_signup.failed_export.subtitle": "Wij controleren de zaken aan onze kant en nemen binnen 3 dagen contact met jou op zodra jouuw licentie is goedgekeurd. In de tussentijd kan je gerust de gratis versie van ons product blijven gebruiken.",
"self_hosted_signup.failed_export.title": "Jouw transactie wordt bekeken", "self_hosted_signup.failed_export.title": "Jouw transactie wordt bekeken",
"self_hosted_signup.license_applied": "Jouw {planName} licentie is nu toegepast. {planName} functies zijn nu beschikbaar en klaar voor gebruik.", "self_hosted_signup.license_applied": "Jouw {planName} licentie is nu toegepast. {planName} functies zijn nu beschikbaar en klaar voor gebruik.",
"self_hosted_signup.line_item_subtotal": "{num} gebruikers × 12 maanden.",
"self_hosted_signup.organization": "Naam organisatie", "self_hosted_signup.organization": "Naam organisatie",
"self_hosted_signup.progress_step.applying_license": "Jouw {planName} licentie toepassen op jouw Mattermost instantie", "self_hosted_signup.progress_step.applying_license": "Jouw {planName} licentie toepassen op jouw Mattermost instantie",
"self_hosted_signup.progress_step.submitting_payment": "Betalingsinformatie indienen", "self_hosted_signup.progress_step.submitting_payment": "Betalingsinformatie indienen",
@@ -4712,10 +4699,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Als je denkt dat dit een vergissing is, start jouw aankoop opnieuw.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Als je denkt dat dit een vergissing is, start jouw aankoop opnieuw.",
"self_hosted_signup.purchase_in_progress.reset": "Aankoop opnieuw starten", "self_hosted_signup.purchase_in_progress.reset": "Aankoop opnieuw starten",
"self_hosted_signup.purchase_in_progress.title": "Aankoop in uitvoering", "self_hosted_signup.purchase_in_progress.title": "Aankoop in uitvoering",
"self_hosted_signup.error_min_seats": "Jouw werkruimte heeft momenteel {num} gebruikers",
"self_hosted_signup.retry": "Probeer opnieuw", "self_hosted_signup.retry": "Probeer opnieuw",
"self_hosted_signup.screening_description": "Wij controleren de zaken aan onze kant en nemen binnen 3 dagen contact met jou op zodra jouuw licentie is goedgekeurd. In de tussentijd kan je gerust de gratis versie van ons product blijven gebruiken.", "self_hosted_signup.screening_description": "Wij controleren de zaken aan onze kant en nemen binnen 3 dagen contact met jou op zodra jouuw licentie is goedgekeurd. In de tussentijd kan je gerust de gratis versie van ons product blijven gebruiken.",
"self_hosted_signup.screening_title": "Jouw transactie wordt bekeken", "self_hosted_signup.screening_title": "Jouw transactie wordt bekeken",
"self_hosted_signup.seats": "Gebruikersstoelen",
"self_hosted_signup.signup_consequences": "Je wordt gefactureerd op *today*. Jouw licentie wordt automatisch toegepast. <a>Zie hoe facturering werkt.</a>", "self_hosted_signup.signup_consequences": "Je wordt gefactureerd op *today*. Jouw licentie wordt automatisch toegepast. <a>Zie hoe facturering werkt.</a>",
"self_hosted_signup.total": "Totaal", "self_hosted_signup.total": "Totaal",
"setting_item_max.cancel": "Annuleren", "setting_item_max.cancel": "Annuleren",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "Wszystkie Twoje faktury będą widoczne tutaj", "admin.billing.history.allPaymentsShowHere": "Wszystkie Twoje faktury będą widoczne tutaj",
"admin.billing.history.date": "Data", "admin.billing.history.date": "Data",
"admin.billing.history.description": "Opis", "admin.billing.history.description": "Opis",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} użytkownicy z opłatą licznikową, {fullUsers} użytkownicy z pełną stawką, {partialUsers} użytkownicy z opłatą częściową",
"admin.billing.history.fractionalUsers": "Użytkownicy {fractionalUsers}",
"admin.billing.history.noBillingHistory": "W przyszłości w tym miejscu będzie widoczna historia Twoich rozliczeń.", "admin.billing.history.noBillingHistory": "W przyszłości w tym miejscu będzie widoczna historia Twoich rozliczeń.",
"admin.billing.history.onPremUsers": "{num} użytkowników",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} z {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} z {totalRecords}",
"admin.billing.history.paid": "Płatne", "admin.billing.history.paid": "Płatne",
"admin.billing.history.paymentFailed": "Płatność nie powiodła się", "admin.billing.history.paymentFailed": "Płatność nie powiodła się",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "Historia rozliczeń", "admin.billing.history.title": "Historia rozliczeń",
"admin.billing.history.total": "Ogółem", "admin.billing.history.total": "Ogółem",
"admin.billing.history.transactions": "Transakcje", "admin.billing.history.transactions": "Transakcje",
"admin.billing.history.usersAndRates": "{fullUsers} użytkownicy z pełną stawką, {partialUsers} użytkownicy z częściową opłatą",
"admin.billing.payment_info.add": "Dodaj kartę kredytową", "admin.billing.payment_info.add": "Dodaj kartę kredytową",
"admin.billing.payment_info.billingAddress": "Adres rozliczeniowy", "admin.billing.payment_info.billingAddress": "Adres rozliczeniowy",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} kończący na {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} kończący na {digits}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Podatki", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Podatki",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Ostatnia faktura", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Ostatnia faktura",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Ogółem", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Ogółem",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} użytkowników",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} użytkowników",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Zobacz fakturę", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Zobacz fakturę",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Co to są opłaty częściowe?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Co to są opłaty częściowe?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Użytkownicy, którzy nie byli aktywni przez cały okres miesiąca, są obciążani proporcjonalną stawką miesięczną.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Użytkownicy, którzy nie byli aktywni przez cały okres miesiąca, są obciążani proporcjonalną stawką miesięczną.",
@@ -1359,7 +1353,6 @@
"admin.license.upload-modal.file": "Plik", "admin.license.upload-modal.file": "Plik",
"admin.license.upload-modal.subtitle": "Prześlij klucz licencyjny dla Mattermost Enterprise Edition, aby uaktualnić ten serwer. ", "admin.license.upload-modal.subtitle": "Prześlij klucz licencyjny dla Mattermost Enterprise Edition, aby uaktualnić ten serwer. ",
"admin.license.upload-modal.successfulUpgrade": "Udana aktualizacja!", "admin.license.upload-modal.successfulUpgrade": "Udana aktualizacja!",
"admin.license.upload-modal.successfulUpgradeText": "Dokonałeś aktualizacji do planu {skuName} dla użytkowników {licensedUsersNum, number}. Obowiązuje to od {startsAt} do {expiresAt}. ",
"admin.license.upload-modal.title": "Prześlij klucz licencyjny", "admin.license.upload-modal.title": "Prześlij klucz licencyjny",
"admin.license.uploadFile": "Prześlij plik", "admin.license.uploadFile": "Prześlij plik",
"admin.license.warn.renew": "Ponów", "admin.license.warn.renew": "Ponów",
@@ -2579,7 +2572,6 @@
"analytics.system.postTypes": "Wiadomości, Pliki i Hashtagi", "analytics.system.postTypes": "Wiadomości, Pliki i Hashtagi",
"analytics.system.privateGroups": "Kanały prywatne", "analytics.system.privateGroups": "Kanały prywatne",
"analytics.system.publicChannels": "Kanały publiczne", "analytics.system.publicChannels": "Kanały publiczne",
"analytics.system.seatsPurchased": "Całkowita liczba użytkowników płatnych",
"analytics.system.skippedIntensiveQueries": "Aby zmaksymalizować wydajność, niektóre statystyki są wyłączone. Możesz <link>ponownie je włączyć w config.json</link>.", "analytics.system.skippedIntensiveQueries": "Aby zmaksymalizować wydajność, niektóre statystyki są wyłączone. Możesz <link>ponownie je włączyć w config.json</link>.",
"analytics.system.textPosts": "Wiadomości z samym tekstem", "analytics.system.textPosts": "Wiadomości z samym tekstem",
"analytics.system.title": "Statystyki systemu", "analytics.system.title": "Statystyki systemu",
@@ -2599,7 +2591,6 @@
"analytics.team.activeUsers": "Aktywni użytkownicy z wiadomościami", "analytics.team.activeUsers": "Aktywni użytkownicy z wiadomościami",
"analytics.team.newlyCreated": "Nowi użytkownicy", "analytics.team.newlyCreated": "Nowi użytkownicy",
"analytics.team.noTeams": "Nie ma na tym serwerze zespołów dla których można zobaczyć statystyki.", "analytics.team.noTeams": "Nie ma na tym serwerze zespołów dla których można zobaczyć statystyki.",
"analytics.team.overageUsersSeats": "To przekracza łączną liczbę płatnych użytkowników",
"analytics.team.privateGroups": "Kanały prywatne", "analytics.team.privateGroups": "Kanały prywatne",
"analytics.team.publicChannels": "Kanały publiczne", "analytics.team.publicChannels": "Kanały publiczne",
"analytics.team.recentUsers": "Ostatnio Aktywni Użytkownicy", "analytics.team.recentUsers": "Ostatnio Aktywni Użytkownicy",
@@ -4576,7 +4567,6 @@
"pricing_modal.planSummary.professional": "Skalowalne rozwiązania dla rozwijających się zespołów", "pricing_modal.planSummary.professional": "Skalowalne rozwiązania dla rozwijających się zespołów",
"pricing_modal.plan_label_trialDays": "{days} POZOSTAŁO DNI TESTOWYCH", "pricing_modal.plan_label_trialDays": "{days} POZOSTAŁO DNI TESTOWYCH",
"pricing_modal.price.freeForever": "Bezpłatny na zawsze", "pricing_modal.price.freeForever": "Bezpłatny na zawsze",
"pricing_modal.rate.userPerMonth": "USD za użytkownika/miesiąc {br}<b>(rozliczane rocznie)</b>",
"pricing_modal.reviewDeploymentOptions": "Zapoznaj się z opcjami rozmieszczania", "pricing_modal.reviewDeploymentOptions": "Zapoznaj się z opcjami rozmieszczania",
"pricing_modal.start_trial.disclaimer": "Wybierając opcję <span>Wypróbuj przez 30 dni,</span> wyrażam zgodę na <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> oraz na otrzymywanie wiadomości e-mail dotyczących produktu.", "pricing_modal.start_trial.disclaimer": "Wybierając opcję <span>Wypróbuj przez 30 dni,</span> wyrażam zgodę na <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> oraz na otrzymywanie wiadomości e-mail dotyczących produktu.",
"pricing_modal.subtitle": "Wybierz plan, aby rozpocząć pracę", "pricing_modal.subtitle": "Wybierz plan, aby rozpocząć pracę",
@@ -4714,12 +4704,9 @@
"self_hosted_signup.cta": "Aktualizuj", "self_hosted_signup.cta": "Aktualizuj",
"self_hosted_signup.disclaimer": "Zapoznałem się i akceptuję <a>warunki subskrypcji Enterprise Edition.</a>", "self_hosted_signup.disclaimer": "Zapoznałem się i akceptuję <a>warunki subskrypcji Enterprise Edition.</a>",
"self_hosted_signup.error_invalid_number": "Wprowadź prawidłową liczbę miejsc", "self_hosted_signup.error_invalid_number": "Wprowadź prawidłową liczbę miejsc",
"self_hosted_signup.error_max_seats": " zakup licencji obsługuje tylko zakupy do {num} użytkowników",
"self_hosted_signup.error_min_seats": "W Twojej przestrzeni roboczej znajduje się obecnie {num} użytkowników",
"self_hosted_signup.failed_export.subtitle": "Sprawdzimy wszystko po naszej stronie i skontaktujemy się z Tobą w ciągu 3 dni po zatwierdzeniu licencji. W międzyczasie prosimy o dalsze korzystanie z darmowej wersji naszego produktu.", "self_hosted_signup.failed_export.subtitle": "Sprawdzimy wszystko po naszej stronie i skontaktujemy się z Tobą w ciągu 3 dni po zatwierdzeniu licencji. W międzyczasie prosimy o dalsze korzystanie z darmowej wersji naszego produktu.",
"self_hosted_signup.failed_export.title": "Twoja transakcja jest sprawdzana", "self_hosted_signup.failed_export.title": "Twoja transakcja jest sprawdzana",
"self_hosted_signup.license_applied": "Twoja licencja {planName} została zastosowana. Funkcje {planName} są teraz dostępne i gotowe do użycia.", "self_hosted_signup.license_applied": "Twoja licencja {planName} została zastosowana. Funkcje {planName} są teraz dostępne i gotowe do użycia.",
"self_hosted_signup.line_item_subtotal": "{num} użytkownicy × 12-cy.",
"self_hosted_signup.organization": "Nazwa organizacji", "self_hosted_signup.organization": "Nazwa organizacji",
"self_hosted_signup.progress_step.applying_license": "Zastosowanie licencji {planName} do instancji Mattermost", "self_hosted_signup.progress_step.applying_license": "Zastosowanie licencji {planName} do instancji Mattermost",
"self_hosted_signup.progress_step.submitting_payment": "Przekazanie informacji o płatności", "self_hosted_signup.progress_step.submitting_payment": "Przekazanie informacji o płatności",
@@ -4729,10 +4716,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Jeśli uważasz, że to błąd, zrestartuj swój zakup.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Jeśli uważasz, że to błąd, zrestartuj swój zakup.",
"self_hosted_signup.purchase_in_progress.reset": "Ponowne uruchomienie zakupu", "self_hosted_signup.purchase_in_progress.reset": "Ponowne uruchomienie zakupu",
"self_hosted_signup.purchase_in_progress.title": "Zakupy w toku", "self_hosted_signup.purchase_in_progress.title": "Zakupy w toku",
"self_hosted_signup.error_min_seats": "W Twojej przestrzeni roboczej znajduje się obecnie {num} użytkowników",
"self_hosted_signup.retry": "Spróbuj ponownie", "self_hosted_signup.retry": "Spróbuj ponownie",
"self_hosted_signup.screening_description": "Sprawdzimy wszystko po naszej stronie i skontaktujemy się z Tobą w ciągu 3 dni po zatwierdzeniu licencji. W międzyczasie prosimy o dalsze korzystanie z darmowej wersji naszego produktu.", "self_hosted_signup.screening_description": "Sprawdzimy wszystko po naszej stronie i skontaktujemy się z Tobą w ciągu 3 dni po zatwierdzeniu licencji. W międzyczasie prosimy o dalsze korzystanie z darmowej wersji naszego produktu.",
"self_hosted_signup.screening_title": "Twoja transakcja jest sprawdzana", "self_hosted_signup.screening_title": "Twoja transakcja jest sprawdzana",
"self_hosted_signup.seats": "Miejsca dla użytkowników",
"self_hosted_signup.signup_consequences": "Zostaniesz rozliczony dzisiaj. Twoja licencja zostanie zastosowana automatycznie. <a>Zobacz jak działa rozliczenie.</a>", "self_hosted_signup.signup_consequences": "Zostaniesz rozliczony dzisiaj. Twoja licencja zostanie zastosowana automatycznie. <a>Zobacz jak działa rozliczenie.</a>",
"self_hosted_signup.total": "Ogółem", "self_hosted_signup.total": "Ogółem",
"setting_item_max.cancel": "Anuluj", "setting_item_max.cancel": "Anuluj",

Просмотреть файл

@@ -246,8 +246,6 @@
"admin.billing.history.allPaymentsShowHere": "Todos os seus pagamentos mensais serão exibidos aqui", "admin.billing.history.allPaymentsShowHere": "Todos os seus pagamentos mensais serão exibidos aqui",
"admin.billing.history.date": "Data", "admin.billing.history.date": "Data",
"admin.billing.history.description": "Descrição", "admin.billing.history.description": "Descrição",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} usuários medidos, {fullUsers} usuários com taxa total, {partialUsers} usuários com cobranças parciais",
"admin.billing.history.fractionalUsers": "{fractionalUsers} usuários",
"admin.billing.history.noBillingHistory": "No futuro, é aqui que seu histórico de faturamento será exibido.", "admin.billing.history.noBillingHistory": "No futuro, é aqui que seu histórico de faturamento será exibido.",
"admin.billing.history.onPremUsers": "{num} usuários", "admin.billing.history.onPremUsers": "{num} usuários",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} de {totalRecords}",
@@ -259,7 +257,6 @@
"admin.billing.history.title": "Histórico de Pagamento", "admin.billing.history.title": "Histórico de Pagamento",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Transações", "admin.billing.history.transactions": "Transações",
"admin.billing.history.usersAndRates": "{fullUsers} usuários com taxa total, {partialUsers} usuários com taxas parciais",
"admin.billing.payment_info.add": "Adicionar um Cartão de Crédito", "admin.billing.payment_info.add": "Adicionar um Cartão de Crédito",
"admin.billing.payment_info.billingAddress": "Endereço de Cobrança", "admin.billing.payment_info.billingAddress": "Endereço de Cobrança",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} terminando em {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} terminando em {digits}",
@@ -312,8 +309,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxas", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxas",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Última Fatura", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Última Fatura",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} usuários",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} usuários",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "O que são cobranças parciais?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "O que são cobranças parciais?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Os usuários que não foram ativados durante todo o mês são cobrados a uma taxa mensal rateada.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Os usuários que não foram ativados durante todo o mês são cobrados a uma taxa mensal rateada.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "No futuro, é aqui que o resumo de sua fatura mais recente será exibido.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "No futuro, é aqui que o resumo de sua fatura mais recente será exibido.",

Просмотреть файл

@@ -239,7 +239,6 @@
"admin.billing.history.title": "Istoricul facturării", "admin.billing.history.title": "Istoricul facturării",
"admin.billing.history.total": "Total", "admin.billing.history.total": "Total",
"admin.billing.history.transactions": "Tranzacții", "admin.billing.history.transactions": "Tranzacții",
"admin.billing.history.usersAndRates": "{fullUsers} utilizatori la tarif complet, {partialUsers} utilizatori cu taxe parțiale",
"admin.billing.payment_info.add": "Adăugați un card de credit", "admin.billing.payment_info.add": "Adăugați un card de credit",
"admin.billing.payment_info.billingAddress": "Adresa De Facturare", "admin.billing.payment_info.billingAddress": "Adresa De Facturare",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} care se termină cu {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} care se termină cu {digits}",
@@ -307,8 +306,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxe", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Taxe",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Ultima factură", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Ultima factură",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Total",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} utilizatori",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} utilizatori",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Ce sunt taxele parțiale?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Ce sunt taxele parțiale?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Utilizatorii care nu au fost activați pe toată durata lunii sunt taxați la o rată lunară proporțională.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Utilizatorii care nu au fost activați pe toată durata lunii sunt taxați la o rată lunară proporțională.",
"admin.billing.subscriptions.billing_summary.noBillingHistory.description": "În viitor, aici va apărea cel mai recent rezumat al facturii.", "admin.billing.subscriptions.billing_summary.noBillingHistory.description": "În viitor, aici va apărea cel mai recent rezumat al facturii.",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "Здесь будут отображаться все ваши счета-фактуры", "admin.billing.history.allPaymentsShowHere": "Здесь будут отображаться все ваши счета-фактуры",
"admin.billing.history.date": "Дата", "admin.billing.history.date": "Дата",
"admin.billing.history.description": "Описание", "admin.billing.history.description": "Описание",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} подсчитанных пользователей, {fullUsers} пользователей с полной ставкой, {partialUsers} пользователей с частичной оплатой",
"admin.billing.history.fractionalUsers": "{fractionalUsers} пользователей",
"admin.billing.history.noBillingHistory": "В будущем здесь будет отображаться история ваших счетов.", "admin.billing.history.noBillingHistory": "В будущем здесь будет отображаться история ваших счетов.",
"admin.billing.history.onPremUsers": "{num} пользователи",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} из {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} из {totalRecords}",
"admin.billing.history.paid": "Оплачен", "admin.billing.history.paid": "Оплачен",
"admin.billing.history.paymentFailed": "Платеж не прошел", "admin.billing.history.paymentFailed": "Платеж не прошел",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "История счетов", "admin.billing.history.title": "История счетов",
"admin.billing.history.total": "Всего", "admin.billing.history.total": "Всего",
"admin.billing.history.transactions": "Транзакции", "admin.billing.history.transactions": "Транзакции",
"admin.billing.history.usersAndRates": "{fullUsers} пользователи на полную ставку, {partialUsers} пользователи с частичной оплатой",
"admin.billing.payment_info.add": "Добавить кредитную карту", "admin.billing.payment_info.add": "Добавить кредитную карту",
"admin.billing.payment_info.billingAddress": "Адрес для выставления счета", "admin.billing.payment_info.billingAddress": "Адрес для выставления счета",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} истекает {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} истекает {digits}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Налоги", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Налоги",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Последний счёт", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Последний счёт",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Всего", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Всего",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} пользователей",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} пользователей",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Просмотреть счет-фактуру", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Просмотреть счет-фактуру",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Что такое частичные оплаты?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Что такое частичные оплаты?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Пользователи, которые не были подключены в течение всего месяца, оплачиваются пропорционально по месячному тарифу.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Пользователи, которые не были подключены в течение всего месяца, оплачиваются пропорционально по месячному тарифу.",
@@ -1358,7 +1352,6 @@
"admin.license.upload-modal.file": "Файл", "admin.license.upload-modal.file": "Файл",
"admin.license.upload-modal.subtitle": "Загрузите лицензионный ключ для Mattermost Enterprise Edition, чтобы обновить этот сервер. ", "admin.license.upload-modal.subtitle": "Загрузите лицензионный ключ для Mattermost Enterprise Edition, чтобы обновить этот сервер. ",
"admin.license.upload-modal.successfulUpgrade": "Обновление прошло успешно!", "admin.license.upload-modal.successfulUpgrade": "Обновление прошло успешно!",
"admin.license.upload-modal.successfulUpgradeText": "Вы перешли на план {skuName} для {licensedUsersNum, number} пользователей. План действует с {startsAt} до {expiresAt}. ",
"admin.license.upload-modal.title": "Загрузить лицензионный ключ", "admin.license.upload-modal.title": "Загрузить лицензионный ключ",
"admin.license.uploadFile": "Загрузить файл", "admin.license.uploadFile": "Загрузить файл",
"admin.license.warn.renew": "Продлить", "admin.license.warn.renew": "Продлить",
@@ -2575,7 +2568,6 @@
"analytics.system.postTypes": "Сообщения, файлы и хештэги", "analytics.system.postTypes": "Сообщения, файлы и хештэги",
"analytics.system.privateGroups": "Приватные каналы", "analytics.system.privateGroups": "Приватные каналы",
"analytics.system.publicChannels": "Публичные каналы", "analytics.system.publicChannels": "Публичные каналы",
"analytics.system.seatsPurchased": "Всего платных пользователей",
"analytics.system.skippedIntensiveQueries": "Для обеспечения максимальной производительности некоторые статистические данные отключены. Вы можете <link>повторно включить их в config.json</link>.", "analytics.system.skippedIntensiveQueries": "Для обеспечения максимальной производительности некоторые статистические данные отключены. Вы можете <link>повторно включить их в config.json</link>.",
"analytics.system.textPosts": "Только текстовые сообщения", "analytics.system.textPosts": "Только текстовые сообщения",
"analytics.system.title": "Статистика системы", "analytics.system.title": "Статистика системы",
@@ -2595,7 +2587,6 @@
"analytics.team.activeUsers": "Активные пользователи с сообщениями", "analytics.team.activeUsers": "Активные пользователи с сообщениями",
"analytics.team.newlyCreated": "Новые пользователи", "analytics.team.newlyCreated": "Новые пользователи",
"analytics.team.noTeams": "На этом сервере нет команд для которых можно просмотреть статистику.", "analytics.team.noTeams": "На этом сервере нет команд для которых можно просмотреть статистику.",
"analytics.team.overageUsersSeats": "Это превышает общее количество платных пользователей",
"analytics.team.privateGroups": "Приватные каналы", "analytics.team.privateGroups": "Приватные каналы",
"analytics.team.publicChannels": "Публичные каналы", "analytics.team.publicChannels": "Публичные каналы",
"analytics.team.recentUsers": "Недавние активные пользователи", "analytics.team.recentUsers": "Недавние активные пользователи",
@@ -4561,7 +4552,6 @@
"pricing_modal.planSummary.professional": "Масштабируемые решения для растущих команд", "pricing_modal.planSummary.professional": "Масштабируемые решения для растущих команд",
"pricing_modal.plan_label_trialDays": "ОСТАЛОСЬ {days} ДНЕЙ НА ПРОБНУЮ ВЕРСИЮ", "pricing_modal.plan_label_trialDays": "ОСТАЛОСЬ {days} ДНЕЙ НА ПРОБНУЮ ВЕРСИЮ",
"pricing_modal.price.freeForever": "Бесплатно навсегда", "pricing_modal.price.freeForever": "Бесплатно навсегда",
"pricing_modal.rate.userPerMonth": "USD за пользователя/месяц {br}<b>(счет ежегодно)</b>",
"pricing_modal.reviewDeploymentOptions": "Обзор вариантов развертывания", "pricing_modal.reviewDeploymentOptions": "Обзор вариантов развертывания",
"pricing_modal.start_trial.disclaimer": "Выбирая <span>Попробовать бесплатно в течение 30 дней,</span> я соглашаюсь с лицензионным соглашением <linkAgreement>на программное обеспечение и услуги Mattermost</linkAgreement>, <linkPrivacy>политикой конфиденциальности</linkPrivacy>, а также с получением электронных сообщений о продукте.", "pricing_modal.start_trial.disclaimer": "Выбирая <span>Попробовать бесплатно в течение 30 дней,</span> я соглашаюсь с лицензионным соглашением <linkAgreement>на программное обеспечение и услуги Mattermost</linkAgreement>, <linkPrivacy>политикой конфиденциальности</linkPrivacy>, а также с получением электронных сообщений о продукте.",
"pricing_modal.subtitle": "Выберите план, чтобы начать работу", "pricing_modal.subtitle": "Выберите план, чтобы начать работу",
@@ -4699,12 +4689,9 @@
"self_hosted_signup.cta": "Обновить", "self_hosted_signup.cta": "Обновить",
"self_hosted_signup.disclaimer": "Я прочитал и согласен с условиями подписки на <a>Enterprise Edition.</a>", "self_hosted_signup.disclaimer": "Я прочитал и согласен с условиями подписки на <a>Enterprise Edition.</a>",
"self_hosted_signup.error_invalid_number": "Введите действительное количество рабочих мест", "self_hosted_signup.error_invalid_number": "Введите действительное количество рабочих мест",
"self_hosted_signup.error_max_seats": " приобретение лицензий поддерживает покупку только до {num} пользователей",
"self_hosted_signup.error_min_seats": "В вашем рабочем пространстве в настоящее время {num} пользователей",
"self_hosted_signup.failed_export.subtitle": "Мы проверим ситуацию на нашей стороне и свяжемся с вами в течение 3 дней, когда ваша лицензия будет одобрена. Тем временем, пожалуйста, продолжайте пользоваться бесплатной версией нашего продукта.", "self_hosted_signup.failed_export.subtitle": "Мы проверим ситуацию на нашей стороне и свяжемся с вами в течение 3 дней, когда ваша лицензия будет одобрена. Тем временем, пожалуйста, продолжайте пользоваться бесплатной версией нашего продукта.",
"self_hosted_signup.failed_export.title": "Ваша транзакция находится на рассмотрении", "self_hosted_signup.failed_export.title": "Ваша транзакция находится на рассмотрении",
"self_hosted_signup.license_applied": "Ваша лицензия {planName} была применена. Функции {planName} теперь доступны и готовы к использованию.", "self_hosted_signup.license_applied": "Ваша лицензия {planName} была применена. Функции {planName} теперь доступны и готовы к использованию.",
"self_hosted_signup.line_item_subtotal": "{num} пользователи × 12 мес.",
"self_hosted_signup.organization": "Название организации", "self_hosted_signup.organization": "Название организации",
"self_hosted_signup.progress_step.applying_license": "Применение лицензии {planName} к экземпляру Mattermost", "self_hosted_signup.progress_step.applying_license": "Применение лицензии {planName} к экземпляру Mattermost",
"self_hosted_signup.progress_step.submitting_payment": "Предоставление платежной информации", "self_hosted_signup.progress_step.submitting_payment": "Предоставление платежной информации",
@@ -4714,10 +4701,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Если вы считаете, что это ошибка, перезапустите покупку.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Если вы считаете, что это ошибка, перезапустите покупку.",
"self_hosted_signup.purchase_in_progress.reset": "Перезапуск покупки", "self_hosted_signup.purchase_in_progress.reset": "Перезапуск покупки",
"self_hosted_signup.purchase_in_progress.title": "Покупка в процессе", "self_hosted_signup.purchase_in_progress.title": "Покупка в процессе",
"self_hosted_signup.error_min_seats": "В вашем рабочем пространстве в настоящее время {num} пользователей",
"self_hosted_signup.retry": "Попробовать снова", "self_hosted_signup.retry": "Попробовать снова",
"self_hosted_signup.screening_description": "Мы проверим ситуацию на нашей стороне и свяжемся с вами в течение 3 дней, когда ваша лицензия будет одобрена. Тем временем, пожалуйста, продолжайте пользоваться бесплатной версией нашего продукта.", "self_hosted_signup.screening_description": "Мы проверим ситуацию на нашей стороне и свяжемся с вами в течение 3 дней, когда ваша лицензия будет одобрена. Тем временем, пожалуйста, продолжайте пользоваться бесплатной версией нашего продукта.",
"self_hosted_signup.screening_title": "Ваша транзакция находится на рассмотрении", "self_hosted_signup.screening_title": "Ваша транзакция находится на рассмотрении",
"self_hosted_signup.seats": "Пользовательские места",
"self_hosted_signup.signup_consequences": "Сегодня Вам будет выставлен счет. Ваша лицензия будет применена автоматически. <a>Узнайте, как происходит выставление счетов.</a>", "self_hosted_signup.signup_consequences": "Сегодня Вам будет выставлен счет. Ваша лицензия будет применена автоматически. <a>Узнайте, как происходит выставление счетов.</a>",
"self_hosted_signup.total": "Всего", "self_hosted_signup.total": "Всего",
"setting_item_max.cancel": "Отмена", "setting_item_max.cancel": "Отмена",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "Alla fakturor kommer visas här", "admin.billing.history.allPaymentsShowHere": "Alla fakturor kommer visas här",
"admin.billing.history.date": "Datum", "admin.billing.history.date": "Datum",
"admin.billing.history.description": "Beskrivning", "admin.billing.history.description": "Beskrivning",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} användare som mäts, {fullUsers} användare med full kostnad, {partialUsers} användare med delkostnader",
"admin.billing.history.fractionalUsers": "{fractionalUsers} användare",
"admin.billing.history.noBillingHistory": "I framtiden kommer din fakturahistorik visas här.", "admin.billing.history.noBillingHistory": "I framtiden kommer din fakturahistorik visas här.",
"admin.billing.history.onPremUsers": "{num} användare",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} av {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} av {totalRecords}",
"admin.billing.history.paid": "Betald", "admin.billing.history.paid": "Betald",
"admin.billing.history.paymentFailed": "Betalning misslyckades", "admin.billing.history.paymentFailed": "Betalning misslyckades",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "Betalhistorik", "admin.billing.history.title": "Betalhistorik",
"admin.billing.history.total": "Summa", "admin.billing.history.total": "Summa",
"admin.billing.history.transactions": "Transaktioner", "admin.billing.history.transactions": "Transaktioner",
"admin.billing.history.usersAndRates": "{fullUsers} användare till full kostnad, {partialUsers} användare med rabatterad kostnad",
"admin.billing.payment_info.add": "Lägg till betalkort", "admin.billing.payment_info.add": "Lägg till betalkort",
"admin.billing.payment_info.billingAddress": "Fakturaadress", "admin.billing.payment_info.billingAddress": "Fakturaadress",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} tar slut om {digits}", "admin.billing.payment_info.cardBrandAndDigits": "{brand} tar slut om {digits}",
@@ -415,8 +411,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Skatt", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Skatt",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Senaste fakturan", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Senaste fakturan",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Summa", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Summa",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} användare",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} användare",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Visa faktura", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Visa faktura",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Vad är delbetalningar?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Vad är delbetalningar?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Användare som inte varit aktiverade under hela månadsperioden debiteras med delbetalning.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Användare som inte varit aktiverade under hela månadsperioden debiteras med delbetalning.",
@@ -1358,7 +1352,6 @@
"admin.license.upload-modal.file": "Fil", "admin.license.upload-modal.file": "Fil",
"admin.license.upload-modal.subtitle": "Ladda upp en licensnyckel för Mattermost Enterprise Edition för att uppgradera den här servern. ", "admin.license.upload-modal.subtitle": "Ladda upp en licensnyckel för Mattermost Enterprise Edition för att uppgradera den här servern. ",
"admin.license.upload-modal.successfulUpgrade": "Uppgraderingen lyckades!", "admin.license.upload-modal.successfulUpgrade": "Uppgraderingen lyckades!",
"admin.license.upload-modal.successfulUpgradeText": "Du har uppgraderat till planen {skuName} för {licensedUsersNum, number} användare. Detta gäller från {startsAt} till {expiresAt}. ",
"admin.license.upload-modal.title": "Ladda upp en licensnyckel", "admin.license.upload-modal.title": "Ladda upp en licensnyckel",
"admin.license.uploadFile": "Ladda upp fil", "admin.license.uploadFile": "Ladda upp fil",
"admin.license.warn.renew": "Förnya", "admin.license.warn.renew": "Förnya",
@@ -2575,7 +2568,6 @@
"analytics.system.postTypes": "Meddelanden, filer och hashtags", "analytics.system.postTypes": "Meddelanden, filer och hashtags",
"analytics.system.privateGroups": "Privat kanal", "analytics.system.privateGroups": "Privat kanal",
"analytics.system.publicChannels": "Publika kanaler", "analytics.system.publicChannels": "Publika kanaler",
"analytics.system.seatsPurchased": "Totala betalande användare",
"analytics.system.skippedIntensiveQueries": "För att maximera prestanda så är viss statistik inaktiverad. Du kan <link>aktivera dem i config.json</link>.", "analytics.system.skippedIntensiveQueries": "För att maximera prestanda så är viss statistik inaktiverad. Du kan <link>aktivera dem i config.json</link>.",
"analytics.system.textPosts": "Meddelanden med endast text", "analytics.system.textPosts": "Meddelanden med endast text",
"analytics.system.title": "Site statistik", "analytics.system.title": "Site statistik",
@@ -2595,7 +2587,6 @@
"analytics.team.activeUsers": "Aktiva användare med meddelanden", "analytics.team.activeUsers": "Aktiva användare med meddelanden",
"analytics.team.newlyCreated": "Nyligen skapade användare", "analytics.team.newlyCreated": "Nyligen skapade användare",
"analytics.team.noTeams": "Servern har inga team som kan visa statistik.", "analytics.team.noTeams": "Servern har inga team som kan visa statistik.",
"analytics.team.overageUsersSeats": "Detta överstiger det totala antalet betalande användare",
"analytics.team.privateGroups": "Privat kanal", "analytics.team.privateGroups": "Privat kanal",
"analytics.team.publicChannels": "Publika kanaler", "analytics.team.publicChannels": "Publika kanaler",
"analytics.team.recentUsers": "Nyligen aktiva användare", "analytics.team.recentUsers": "Nyligen aktiva användare",
@@ -4566,7 +4557,6 @@
"pricing_modal.planSummary.professional": "Skalbara lösningar för växande team", "pricing_modal.planSummary.professional": "Skalbara lösningar för växande team",
"pricing_modal.plan_label_trialDays": "{days} DAGAR KVAR AV PROVA-PÅ-PERIODEN", "pricing_modal.plan_label_trialDays": "{days} DAGAR KVAR AV PROVA-PÅ-PERIODEN",
"pricing_modal.price.freeForever": "Gratis för alltid", "pricing_modal.price.freeForever": "Gratis för alltid",
"pricing_modal.rate.userPerMonth": "USD per användare/månad {br}<b>(faktureras årligen)</b>",
"pricing_modal.reviewDeploymentOptions": "Granska dina utrullningsalternativ", "pricing_modal.reviewDeploymentOptions": "Granska dina utrullningsalternativ",
"pricing_modal.start_trial.disclaimer": "Genom att välja <span>Testa gratis i 30 dagar,</span> godkänner jag <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> och att få mejl med produktinformation.", "pricing_modal.start_trial.disclaimer": "Genom att välja <span>Testa gratis i 30 dagar,</span> godkänner jag <linkAgreement>Mattermost Software and Services License Agreement</linkAgreement>, <linkPrivacy>Privacy Policy</linkPrivacy> och att få mejl med produktinformation.",
"pricing_modal.subtitle": "Välj ett abonnemang för att komma igång", "pricing_modal.subtitle": "Välj ett abonnemang för att komma igång",
@@ -4704,12 +4694,9 @@
"self_hosted_signup.cta": "Uppdatera", "self_hosted_signup.cta": "Uppdatera",
"self_hosted_signup.disclaimer": "Jag har läst och godkänner <a>prenumerationsvillkoren för Enterprise Edition.</a>", "self_hosted_signup.disclaimer": "Jag har läst och godkänner <a>prenumerationsvillkoren för Enterprise Edition.</a>",
"self_hosted_signup.error_invalid_number": "Ange ett giltigt antal platser", "self_hosted_signup.error_invalid_number": "Ange ett giltigt antal platser",
"self_hosted_signup.error_max_seats": " licensköp kan endast göras upp till {num} användare",
"self_hosted_signup.error_min_seats": "Din arbetsyta har just nu {num} användare",
"self_hosted_signup.failed_export.subtitle": "Vi kommer kontrollera några saker på vår sida och när din licens är godkänd återkommer vi till dig inom tre dagar. Under tiden kan du gärna fortsätta att använda gratisversionen av vår produkt.", "self_hosted_signup.failed_export.subtitle": "Vi kommer kontrollera några saker på vår sida och när din licens är godkänd återkommer vi till dig inom tre dagar. Under tiden kan du gärna fortsätta att använda gratisversionen av vår produkt.",
"self_hosted_signup.failed_export.title": "Din transaktion granskas", "self_hosted_signup.failed_export.title": "Din transaktion granskas",
"self_hosted_signup.license_applied": "Din {planName} -licens har nu tillämpats. {planName} -funktionerna är nu tillgängliga och redo att användas.", "self_hosted_signup.license_applied": "Din {planName} -licens har nu tillämpats. {planName} -funktionerna är nu tillgängliga och redo att användas.",
"self_hosted_signup.line_item_subtotal": "{num} användare × 12 månader.",
"self_hosted_signup.organization": "Organisationens namn", "self_hosted_signup.organization": "Organisationens namn",
"self_hosted_signup.progress_step.applying_license": "Applicerar din {planName} -licens på din Mattermost-instans", "self_hosted_signup.progress_step.applying_license": "Applicerar din {planName} -licens på din Mattermost-instans",
"self_hosted_signup.progress_step.submitting_payment": "Lämna betalningsuppgifter", "self_hosted_signup.progress_step.submitting_payment": "Lämna betalningsuppgifter",
@@ -4719,10 +4706,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Om du tror att detta är ett misstag, starta om ditt köp från början igen.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Om du tror att detta är ett misstag, starta om ditt köp från början igen.",
"self_hosted_signup.purchase_in_progress.reset": "Börja om köpet", "self_hosted_signup.purchase_in_progress.reset": "Börja om köpet",
"self_hosted_signup.purchase_in_progress.title": "Inköp pågår", "self_hosted_signup.purchase_in_progress.title": "Inköp pågår",
"self_hosted_signup.error_min_seats": "Din arbetsyta har just nu {num} användare",
"self_hosted_signup.retry": "Försök igen", "self_hosted_signup.retry": "Försök igen",
"self_hosted_signup.screening_description": "Vi kommer att kontrollera saker och ting från vår sida och återkommer till dig inom tre dagar när din licens är godkänd. Under tiden kan du gärna fortsätta att använda gratisversionen av vår produkt.", "self_hosted_signup.screening_description": "Vi kommer att kontrollera saker och ting från vår sida och återkommer till dig inom tre dagar när din licens är godkänd. Under tiden kan du gärna fortsätta att använda gratisversionen av vår produkt.",
"self_hosted_signup.screening_title": "Din transaktion håller på att granskas", "self_hosted_signup.screening_title": "Din transaktion håller på att granskas",
"self_hosted_signup.seats": "Användarplatser",
"self_hosted_signup.signup_consequences": "Du kommer att debiteras idag. Din licens tillämpas automatiskt. <a>Se hur faktureringen fungerar.</a>", "self_hosted_signup.signup_consequences": "Du kommer att debiteras idag. Din licens tillämpas automatiskt. <a>Se hur faktureringen fungerar.</a>",
"self_hosted_signup.total": "Summa", "self_hosted_signup.total": "Summa",
"setting_item_max.cancel": "Avbryt", "setting_item_max.cancel": "Avbryt",

Просмотреть файл

@@ -257,10 +257,7 @@
"admin.billing.history.allPaymentsShowHere": "Tüm faturalanınız burada görüntülenir", "admin.billing.history.allPaymentsShowHere": "Tüm faturalanınız burada görüntülenir",
"admin.billing.history.date": "Tarih", "admin.billing.history.date": "Tarih",
"admin.billing.history.description": "Açıklama", "admin.billing.history.description": "Açıklama",
"admin.billing.history.fractionalAndRatedUsers": "Sınırlı {fractionalUsers} kullanıcı, tam ücretli {fullUsers} kullanıcı, kısmi ücretli {partialUsers} kullanıcı",
"admin.billing.history.fractionalUsers": "{fractionalUsers} kullanıcı",
"admin.billing.history.noBillingHistory": "Gelecekte, fatura geçmişiniz burada görüntülenecek.", "admin.billing.history.noBillingHistory": "Gelecekte, fatura geçmişiniz burada görüntülenecek.",
"admin.billing.history.onPremUsers": "{num} kullanıcı",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord} / {totalRecords}", "admin.billing.history.pageInfo": "{startRecord} - {endRecord} / {totalRecords}",
"admin.billing.history.paid": "Ödendi", "admin.billing.history.paid": "Ödendi",
"admin.billing.history.paymentFailed": "Ödenmedi", "admin.billing.history.paymentFailed": "Ödenmedi",
@@ -270,7 +267,6 @@
"admin.billing.history.title": "Faturalama geçmişi", "admin.billing.history.title": "Faturalama geçmişi",
"admin.billing.history.total": "Toplam", "admin.billing.history.total": "Toplam",
"admin.billing.history.transactions": "İşlemler", "admin.billing.history.transactions": "İşlemler",
"admin.billing.history.usersAndRates": "{fullUsers} kullanıcı için tam ödeme, {partialUsers} kullanıcı için kısmi ödeme",
"admin.billing.payment_info.add": "Kredi kartı ekle", "admin.billing.payment_info.add": "Kredi kartı ekle",
"admin.billing.payment_info.billingAddress": "Fatura adresi", "admin.billing.payment_info.billingAddress": "Fatura adresi",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} {digits} ile biten", "admin.billing.payment_info.cardBrandAndDigits": "{brand} {digits} ile biten",
@@ -392,8 +388,6 @@
"admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Vergiler", "admin.billing.subscriptions.billing_summary.lastInvoice.taxes": "Vergiler",
"admin.billing.subscriptions.billing_summary.lastInvoice.title": "Son fatura", "admin.billing.subscriptions.billing_summary.lastInvoice.title": "Son fatura",
"admin.billing.subscriptions.billing_summary.lastInvoice.total": "Toplam", "admin.billing.subscriptions.billing_summary.lastInvoice.total": "Toplam",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCount": " x {users} kullanıcı",
"admin.billing.subscriptions.billing_summary.lastInvoice.userCountPartial": "{users} kullanıcı",
"admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Faturayı görüntüle", "admin.billing.subscriptions.billing_summary.lastInvoice.viewInvoice": "Faturayı görüntüle",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Kısmi ödemeler nedir?", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges": "Kısmi ödemeler nedir?",
"admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Ayın tamamı boyunca etkin olmayan kullanıcılardan aylık kullanım ile orantılı bir ödeme alınır.", "admin.billing.subscriptions.billing_summary.lastInvoice.whatArePartialCharges.message": "Ayın tamamı boyunca etkin olmayan kullanıcılardan aylık kullanım ile orantılı bir ödeme alınır.",
@@ -1335,7 +1329,6 @@
"admin.license.upload-modal.file": "Dosya", "admin.license.upload-modal.file": "Dosya",
"admin.license.upload-modal.subtitle": "Bu sunucuyu üst tarifeye geçirmek için bir Mattermost Enterprise paketi lisans anahtarı yükleyin. ", "admin.license.upload-modal.subtitle": "Bu sunucuyu üst tarifeye geçirmek için bir Mattermost Enterprise paketi lisans anahtarı yükleyin. ",
"admin.license.upload-modal.successfulUpgrade": "Üst tarifeye geçildi!", "admin.license.upload-modal.successfulUpgrade": "Üst tarifeye geçildi!",
"admin.license.upload-modal.successfulUpgradeText": "{licensedUsersNum, number} kullanıcı için {skuName} tarifesine geçtiniz. {startsAt} ile {expiresAt} tarihleri arasında geçerli olacak. ",
"admin.license.upload-modal.title": "Bir lisans anahtarı yükleyin", "admin.license.upload-modal.title": "Bir lisans anahtarı yükleyin",
"admin.license.uploadFile": "Dosya yükle", "admin.license.uploadFile": "Dosya yükle",
"admin.license.warn.renew": "Yenile", "admin.license.warn.renew": "Yenile",
@@ -2533,7 +2526,6 @@
"analytics.system.postTypes": "İletiler, dosyalar ve hashtaglar", "analytics.system.postTypes": "İletiler, dosyalar ve hashtaglar",
"analytics.system.privateGroups": "Özel kanallar", "analytics.system.privateGroups": "Özel kanallar",
"analytics.system.publicChannels": "Herkese açık kanallar", "analytics.system.publicChannels": "Herkese açık kanallar",
"analytics.system.seatsPurchased": "Ücreti ödenmiş kullanıcı sayısı",
"analytics.system.skippedIntensiveQueries": "En iyi başarımı elde etmek için bazı istatistikler devre dışı bırakılmıştır. Bu istatistikleri <link>config.json içinden etkinleştirebilirsiniz</link>.", "analytics.system.skippedIntensiveQueries": "En iyi başarımı elde etmek için bazı istatistikler devre dışı bırakılmıştır. Bu istatistikleri <link>config.json içinden etkinleştirebilirsiniz</link>.",
"analytics.system.textPosts": "Yalnızca metin içeren iletiler", "analytics.system.textPosts": "Yalnızca metin içeren iletiler",
"analytics.system.title": "Sistem istatistikleri", "analytics.system.title": "Sistem istatistikleri",
@@ -2553,7 +2545,6 @@
"analytics.team.activeUsers": "İleti yazmış etkin kullanıcılar", "analytics.team.activeUsers": "İleti yazmış etkin kullanıcılar",
"analytics.team.newlyCreated": "Yeni eklenen kullanıcılar", "analytics.team.newlyCreated": "Yeni eklenen kullanıcılar",
"analytics.team.noTeams": "Bu sunucuda istatistikleri görüntülenebilecek bir takım yok.", "analytics.team.noTeams": "Bu sunucuda istatistikleri görüntülenebilecek bir takım yok.",
"analytics.team.overageUsersSeats": "Bu ücreti ödenmiş kullanıcı sayısınııyor",
"analytics.team.privateGroups": "Özel kanallar", "analytics.team.privateGroups": "Özel kanallar",
"analytics.team.publicChannels": "Herkese açık kanallar", "analytics.team.publicChannels": "Herkese açık kanallar",
"analytics.team.recentUsers": "Son etkin kullanıcılar", "analytics.team.recentUsers": "Son etkin kullanıcılar",
@@ -4463,7 +4454,6 @@
"pricing_modal.planSummary.professional": "Büyük ekipler için yönetim, güvenlik ve uygunluk", "pricing_modal.planSummary.professional": "Büyük ekipler için yönetim, güvenlik ve uygunluk",
"pricing_modal.plan_label_trialDays": "DENEMENİN BİTMESİNE {days} GÜN KALDI", "pricing_modal.plan_label_trialDays": "DENEMENİN BİTMESİNE {days} GÜN KALDI",
"pricing_modal.price.freeForever": "Sonsuza dek ücretsiz", "pricing_modal.price.freeForever": "Sonsuza dek ücretsiz",
"pricing_modal.rate.userPerMonth": "USD kullanıcı/ay{br}<b>(yıllık faturalanır)</b>",
"pricing_modal.reviewDeploymentOptions": "Dağıtım seçeneklerini gözden geçirin", "pricing_modal.reviewDeploymentOptions": "Dağıtım seçeneklerini gözden geçirin",
"pricing_modal.start_trial.disclaimer": "<span>30 günlük ücretsiz denemeyi başlat</span> üzerine tıklayarak, <linkAgreement>Mattermost yazılım ve hizmet lisans sözleşmesi</linkAgreement>, <linkPrivacy>Kişisel verilerin gizliliği ilkesi</linkPrivacy> metinlerini ve ürün ile ilgili e-postaları almayı kabul ediyorum.", "pricing_modal.start_trial.disclaimer": "<span>30 günlük ücretsiz denemeyi başlat</span> üzerine tıklayarak, <linkAgreement>Mattermost yazılım ve hizmet lisans sözleşmesi</linkAgreement>, <linkPrivacy>Kişisel verilerin gizliliği ilkesi</linkPrivacy> metinlerini ve ürün ile ilgili e-postaları almayı kabul ediyorum.",
"pricing_modal.subtitle": "Başlamak için bir tarife seçin", "pricing_modal.subtitle": "Başlamak için bir tarife seçin",
@@ -4600,12 +4590,9 @@
"self_hosted_signup.cta": "Yükselt", "self_hosted_signup.cta": "Yükselt",
"self_hosted_signup.disclaimer": "<a>Enterprise Edition abonelik koşullarını</a> okudum ve kabul ediyorum", "self_hosted_signup.disclaimer": "<a>Enterprise Edition abonelik koşullarını</a> okudum ve kabul ediyorum",
"self_hosted_signup.error_invalid_number": "Geçerli bir koltuk lisansı sayısı yazın", "self_hosted_signup.error_invalid_number": "Geçerli bir koltuk lisansı sayısı yazın",
"self_hosted_signup.error_max_seats": " yalnızca {num} kullanıcıya kadar lisans satın alımı desteklenir",
"self_hosted_signup.error_min_seats": "Çalışma alanınızda şu anda {num} kullanıcı var",
"self_hosted_signup.failed_export.subtitle": "Kontrollerimizi yapacağız ve lisansınızı onaylandıktan sonra 3 gün içinde size geri döneceğiz. Bu arada, lütfen ürünümüzün ücretsiz sürümünü kullanmayı sürdürmekten çekinmeyin.", "self_hosted_signup.failed_export.subtitle": "Kontrollerimizi yapacağız ve lisansınızı onaylandıktan sonra 3 gün içinde size geri döneceğiz. Bu arada, lütfen ürünümüzün ücretsiz sürümünü kullanmayı sürdürmekten çekinmeyin.",
"self_hosted_signup.failed_export.title": "İşleminiz inceleniyor", "self_hosted_signup.failed_export.title": "İşleminiz inceleniyor",
"self_hosted_signup.license_applied": "{planName} lisansınız etkinleştirildi. {planName} özelliklerini kullanabilirsiniz.", "self_hosted_signup.license_applied": "{planName} lisansınız etkinleştirildi. {planName} özelliklerini kullanabilirsiniz.",
"self_hosted_signup.line_item_subtotal": "{num} kullanıcı × 12 ay.",
"self_hosted_signup.organization": "Kuruluş adı", "self_hosted_signup.organization": "Kuruluş adı",
"self_hosted_signup.progress_step.applying_license": "{planName} lisansınız Mattermost kopyanıza uygulanıyor", "self_hosted_signup.progress_step.applying_license": "{planName} lisansınız Mattermost kopyanıza uygulanıyor",
"self_hosted_signup.progress_step.submitting_payment": "Ödeme bilgileri gönderiliyor", "self_hosted_signup.progress_step.submitting_payment": "Ödeme bilgileri gönderiliyor",
@@ -4615,10 +4602,10 @@
"self_hosted_signup.purchase_in_progress.by_self_restart": "Bir hata olduğunu düşünüyorsanız, satın alma işleminizi yeniden başlatın.", "self_hosted_signup.purchase_in_progress.by_self_restart": "Bir hata olduğunu düşünüyorsanız, satın alma işleminizi yeniden başlatın.",
"self_hosted_signup.purchase_in_progress.reset": "Satın almayı yeniden başlat", "self_hosted_signup.purchase_in_progress.reset": "Satın almayı yeniden başlat",
"self_hosted_signup.purchase_in_progress.title": "Satın alma işlemi sürüyor", "self_hosted_signup.purchase_in_progress.title": "Satın alma işlemi sürüyor",
"self_hosted_signup.error_min_seats": "Çalışma alanınızda şu anda {num} kullanıcı var",
"self_hosted_signup.retry": "Yeniden dene", "self_hosted_signup.retry": "Yeniden dene",
"self_hosted_signup.screening_description": "Kontrollerimizi yapacağız ve lisansınızı onaylandıktan sonra 3 gün içinde size geri döneceğiz. Bu arada, lütfen ürünümüzün ücretsiz sürümünü kullanmayı sürdürmekten çekinmeyin.", "self_hosted_signup.screening_description": "Kontrollerimizi yapacağız ve lisansınızı onaylandıktan sonra 3 gün içinde size geri döneceğiz. Bu arada, lütfen ürünümüzün ücretsiz sürümünü kullanmayı sürdürmekten çekinmeyin.",
"self_hosted_signup.screening_title": "İşleminiz inceleniyor", "self_hosted_signup.screening_title": "İşleminiz inceleniyor",
"self_hosted_signup.seats": "Kullanıcı koltuk lisansı",
"self_hosted_signup.signup_consequences": "Faturanız bugün kesilecek. Lisansınız otomatik olarak etkinleştirilecek. <a>Faturalamanın nasıl işlediğine bakın.</a>", "self_hosted_signup.signup_consequences": "Faturanız bugün kesilecek. Lisansınız otomatik olarak etkinleştirilecek. <a>Faturalamanın nasıl işlediğine bakın.</a>",
"self_hosted_signup.total": "Toplam", "self_hosted_signup.total": "Toplam",
"setting_item_max.cancel": "İptal", "setting_item_max.cancel": "İptal",

Просмотреть файл

@@ -264,10 +264,7 @@
"admin.billing.history.allPaymentsShowHere": "您所有的发票都将显示在这里", "admin.billing.history.allPaymentsShowHere": "您所有的发票都将显示在这里",
"admin.billing.history.date": "日期", "admin.billing.history.date": "日期",
"admin.billing.history.description": "描述", "admin.billing.history.description": "描述",
"admin.billing.history.fractionalAndRatedUsers": "{fractionalUsers} 计量用户, {fullUsers} 全款用户, {partialUsers} 部分收费用户",
"admin.billing.history.fractionalUsers": "{fractionalUsers} 位用户",
"admin.billing.history.noBillingHistory": "这是您的帐单记录显示的地方。", "admin.billing.history.noBillingHistory": "这是您的帐单记录显示的地方。",
"admin.billing.history.onPremUsers": "{num} 用户",
"admin.billing.history.pageInfo": "{startRecord} - {endRecord},共 {totalRecords} 个", "admin.billing.history.pageInfo": "{startRecord} - {endRecord},共 {totalRecords} 个",
"admin.billing.history.paid": "已支付", "admin.billing.history.paid": "已支付",
"admin.billing.history.paymentFailed": "支付失败", "admin.billing.history.paymentFailed": "支付失败",
@@ -277,7 +274,6 @@
"admin.billing.history.title": "帐单记录", "admin.billing.history.title": "帐单记录",
"admin.billing.history.total": "总计", "admin.billing.history.total": "总计",
"admin.billing.history.transactions": "交易", "admin.billing.history.transactions": "交易",
"admin.billing.history.usersAndRates": "{fullUsers} 位用户全额收费,{partialUsers} 位用户收取部分费用",
"admin.billing.payment_info.add": "添加信用卡", "admin.billing.payment_info.add": "添加信用卡",
"admin.billing.payment_info.billingAddress": "帐单地址", "admin.billing.payment_info.billingAddress": "帐单地址",
"admin.billing.payment_info.cardBrandAndDigits": "{brand} 以 {digits} 结尾", "admin.billing.payment_info.cardBrandAndDigits": "{brand} 以 {digits} 结尾",