Update nb.js (removed object billing to make indivisual string keys )

For example, instead of:

billing = {
    change_payment_method: "Endre",
    // ...
}
changed to:

'billing.change_payment_method': "Endre",
// ...
This commit is contained in:
Aryan Tavish 2025-01-18 10:19:30 +05:30 committed by GitHub
parent 7d24fa2b32
commit 967da6ba24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -354,56 +354,52 @@ const nb = {
You cant share with yourself: "Du kan ikke dele med deg selv.", You cant share with yourself: "Du kan ikke dele med deg selv.",
This user already has access to this item: "Denne brukeren har allerede tilgang til dette elementet", This user already has access to this item: "Denne brukeren har allerede tilgang til dette elementet",
billing = {
change_payment_method: "Endre", billing.change_payment_method: "Endre",
cancel: "Avbryt", billing.cancel: "Avbryt",
download_invoice: "Last ned", billing.download_invoice: "Last ned",
payment_method: "Betalingsmåte", billing.payment_method: "Betalingsmåte",
payment_method_updated: "Betalingsmåte oppdatert!", billing.payment_method_updated: "Betalingsmåte oppdatert!",
confirm_payment_method: "Bekreft betalingsmåte", billing.confirm_payment_method: "Bekreft betalingsmåte",
payment_history: "Betalingshistorikk", billing.payment_history: "Betalingshistorikk",
refunded: "Refundert", billing.refunded: "Refundert",
paid: "Betalt", billing.paid: "Betalt",
ok: "OK", billing.ok: "OK",
resume_subscription: "Gjenoppta abonnement", billing.resume_subscription: "Gjenoppta abonnement",
subscription_cancelled: "Abonnementet ditt har blitt kansellert.", billing.subscription_cancelled: "Abonnementet ditt har blitt kansellert.",
subscription_cancelled_description: "Du vil fortsatt ha tilgang til abonnementet ditt ut denne fakturaperioden.", billing.subscription_cancelled_description: "Du vil fortsatt ha tilgang til abonnementet ditt ut denne fakturaperioden.",
offering: { billing.offering.free: "Gratis",
free: "Gratis", billing.offering.pro: "Professional",
pro: "Professional", billing.offering.business: "Business",
business: "Business", billing.cloud_storage: "Skylagring",
}, billing.ai_access: "AI-tilgang",
cloud_storage: "Skylagring", billing.bandwidth: "Båndbredde",
ai_access: "AI-tilgang", billing.apps_and_games: "Apper og spill",
bandwidth: "Båndbredde", billing.upgrade_to_pro: "Oppgrader til %strong%",
apps_and_games: "Apper og spill", billing.switch_to: "Bytt til %strong%",
upgrade_to_pro: "Oppgrader til %strong%", billing.payment_setup: "Betalingsoppsett",
switch_to: "Bytt til %strong%", billing.back: "Tilbake",
payment_setup: "Betalingsoppsett", billing.you_are_now_subscribed_to: "Du abonnerer nå på %strong%-nivået.",
back: "Tilbake", billing.you_are_now_subscribed_to_without_tier: "Du abonnerer nå",
you_are_now_subscribed_to: "Du abonnerer nå på %strong%-nivået.", billing.subscription_cancellation_confirmation: "Er du sikker på at du vil kansellere abonnementet ditt?", billing.subscription_setup: "Abonnementsoppsett",
you_are_now_subscribed_to_without_tier: "Du abonnerer nå", billing.cancel_it: "Kanseller",
subscription_cancellation_confirmation: "Er du sikker på at du vil kansellere abonnementet ditt?", billing.keep_it: "Behold",
subscription_setup: "Abonnementsoppsett", billing.subscription_resumed: "Ditt %strong%-abonnement har blitt gjenopptatt!",
cancel_it: "Kanseller", billing.upgrade_now: "Oppgrader nå",
keep_it: "Behold", billing.upgrade: "Oppgrader",
subscription_resumed: "Ditt %strong%-abonnement har blitt gjenopptatt!", billing.currently_on_free_plan: "Du bruker for tiden gratisversjonen.",
upgrade_now: "Oppgrader nå", billing.download_receipt: "Last ned kvittering",
upgrade: "Oppgrader", billing.subscription_check_error: "Det oppstod et problem ved sjekk av abonnementsstatusen din.",
currently_on_free_plan: "Du bruker for tiden gratisversjonen.", billing.email_confirmation_needed: "E-postadressen din har ikke blitt bekreftet. Vi sender deg nå en kode for å bekrefte den.",
download_receipt: "Last ned kvittering", billing.sub_cancelled_but_valid_until: "Du har kansellert abonnementet ditt og det vil automatisk bytte til gratisversjonen ved slutten av fakturaperioden. Du vil ikke bli belastet igjen med mindre du fornyer abonnementet.",
subscription_check_error: "Det oppstod et problem ved sjekk av abonnementsstatusen din.", billing.current_plan_until_end_of_period: "Din nåværende plan ut denne fakturaperioden.",
email_confirmation_needed: "E-postadressen din har ikke blitt bekreftet. Vi sender deg nå en kode for å bekrefte den.", billing.current_plan: "Nåværende plan",
sub_cancelled_but_valid_until: "Du har kansellert abonnementet ditt og det vil automatisk bytte til gratisversjonen ved slutten av fakturaperioden. Du vil ikke bli belastet igjen med mindre du fornyer abonnementet.", billing.cancelled_subscription_tier: "Kansellert abonnement (%%)",
current_plan_until_end_of_period: "Din nåværende plan ut denne fakturaperioden.", billing.manage: "Administrer",
current_plan: "Nåværende plan", billing.limited: "Begrenset",
cancelled_subscription_tier: "Kansellert abonnement (%%)", billing.expanded: "Utvidet",
manage: "Administrer", billing.accelerated: "Akselerert",
limited: "Begrenset", billing.enjoy_msg: "Nyt %% skylagring pluss andre fordeler.",
expanded: "Utvidet",
accelerated: "Akselerert",
enjoy_msg: "Nyt %% skylagring pluss andre fordeler.",
}
} }
}; };