From d2dcf2f0366a00e0be1a5180ce1c09083bcc32a3 Mon Sep 17 00:00:00 2001 From: Anton Stjernquist Date: Mon, 29 Jan 2024 23:53:46 +0100 Subject: [PATCH] feat: remove localazy, put locales locally --- .github/workflows/prerelease.yml | 8 - .github/workflows/release.yml | 8 - .github/workflows/server.yml | 8 - .github/workflows/translations.yml | 32 ---- .github/workflows/web.yml | 8 - .gitignore | 1 - i18next-parser.config.old.js | 106 ----------- localazy.json | 14 -- locales/bg/default.json | 173 ++++++++++++++++++ locales/cs/default.json | 173 ++++++++++++++++++ locales/da/default.json | 173 ++++++++++++++++++ locales/de/default.json | 173 ++++++++++++++++++ locales/en/default.json | 173 ++++++++++++++++++ locales/es/default.json | 173 ++++++++++++++++++ locales/fi/default.json | 173 ++++++++++++++++++ locales/fr/default.json | 173 ++++++++++++++++++ locales/hr/default.json | 173 ++++++++++++++++++ locales/hu/default.json | 173 ++++++++++++++++++ locales/index.ts | 43 +++++ locales/it-MT/default.json | 173 ++++++++++++++++++ locales/it/default.json | 173 ++++++++++++++++++ locales/lt/default.json | 173 ++++++++++++++++++ locales/nb/default.json | 173 ++++++++++++++++++ locales/nl/default.json | 173 ++++++++++++++++++ locales/pl/default.json | 173 ++++++++++++++++++ locales/pt-BR/default.json | 173 ++++++++++++++++++ locales/pt/default.json | 173 ++++++++++++++++++ locales/sv/default.json | 173 ++++++++++++++++++ locales/tr/default.json | 173 ++++++++++++++++++ package.json | 8 +- .../services/account/account.service.ts | 18 +- typings/Account.ts | 3 +- web/src/hooks/useNuiEvent.ts | 4 +- yarn.lock | 44 ----- 34 files changed, 3518 insertions(+), 247 deletions(-) delete mode 100644 .github/workflows/translations.yml delete mode 100644 i18next-parser.config.old.js delete mode 100644 localazy.json create mode 100644 locales/bg/default.json create mode 100644 locales/cs/default.json create mode 100644 locales/da/default.json create mode 100644 locales/de/default.json create mode 100644 locales/en/default.json create mode 100644 locales/es/default.json create mode 100644 locales/fi/default.json create mode 100644 locales/fr/default.json create mode 100644 locales/hr/default.json create mode 100644 locales/hu/default.json create mode 100644 locales/index.ts create mode 100644 locales/it-MT/default.json create mode 100644 locales/it/default.json create mode 100644 locales/lt/default.json create mode 100644 locales/nb/default.json create mode 100644 locales/nl/default.json create mode 100644 locales/pl/default.json create mode 100644 locales/pt-BR/default.json create mode 100644 locales/pt/default.json create mode 100644 locales/sv/default.json create mode 100644 locales/tr/default.json diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index b5de8d81..772c31cd 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -34,14 +34,6 @@ jobs: - name: Install main deps run: yarn --frozen-lockfile - - name: Translations - env: - LOCALAZY_READ_KEY: ${{ secrets.LOCALAZY_READ_KEY }} - LOCALAZY_WRITE_KEY: ${{ secrets.LOCALAZY_WRITE_KEY }} - run: | - yarn translations:pull - yarn translations:generate-index - - name: Install src deps working-directory: src run: yarn --frozen-lockfile diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73a42cad..cbb8682c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,14 +32,6 @@ jobs: - name: Install main deps run: yarn --frozen-lockfile --ignore-scripts - - name: Translations - env: - LOCALAZY_READ_KEY: a8269809765126758267-f01743c76d6e9e434d7b4c6322938eefce8d82a559b57efc2acfcf4531d46089 - run: yarn translations:pull - - - name: Generate translations - run: yarn translations:generate-index - - name: Install src deps working-directory: src run: yarn --frozen-lockfile diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 68d8929d..c1c94885 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -29,14 +29,6 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - - name: Install deps (Translations) - working-directory: . - run: yarn --frozen-lockfile - - name: Generate translations - working-directory: . - run: | - yarn translations:generate - yarn translations:generate-index - name: Install deps run: yarn --frozen-lockfile - name: Linting diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml deleted file mode 100644 index 5e7bacae..00000000 --- a/.github/workflows/translations.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Translations -on: [pull_request] - -jobs: - test: - name: Pushing translations - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup node environment - uses: actions/setup-node@v4 - with: - node-version: 18.x - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - - uses: actions/cache@v2 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - name: Install deps (Translations) - run: yarn --frozen-lockfile - - name: Generate translations - working-directory: . - env: - LOCALAZY_WRITE_KEY: ${{ secrets.LOCALAZY_WRITE_KEY }} - LOCALAZY_READ_KEY: ${{ secrets.LOCALAZY_READ_KEY }} - run: yarn translations:generate && yarn translations:push diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index bb165726..62d55a3d 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -29,14 +29,6 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - - name: Install deps (Translations) - working-directory: . - run: yarn --frozen-lockfile - - name: Generate translations - working-directory: . - run: | - yarn translations:generate - yarn translations:generate-index - name: Install deps run: yarn --frozen-lockfile - name: Linting diff --git a/.gitignore b/.gitignore index 62ab7c88..0fdd8d6a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,5 @@ node_modules dist sv_pefcl.log -locales temp yarn-error.log \ No newline at end of file diff --git a/i18next-parser.config.old.js b/i18next-parser.config.old.js deleted file mode 100644 index 880d8a8a..00000000 --- a/i18next-parser.config.old.js +++ /dev/null @@ -1,106 +0,0 @@ -module.exports = { - contextSeparator: '_', - // Key separator used in your translation keys - - createOldCatalogs: true, - // Save the \_old files - - defaultNamespace: 'translation', - // Default namespace used in your i18next config - - defaultValue: (language, namespace, key) => { - return language === 'en' ? key : ''; - }, - // Default value to give to empty keys - // You may also specify a function accepting the locale, namespace, and key as arguments - - indentation: 2, - // Indentation of the catalog files - - keepRemoved: false, - // Keep keys from the catalog that are no longer in code - - keySeparator: '.', - // Key separator used in your translation keys - // If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance. - - // see below for more details - lexers: { - hbs: ['HandlebarsLexer'], - handlebars: ['HandlebarsLexer'], - - htm: ['HTMLLexer'], - html: ['HTMLLexer'], - - mjs: ['JavascriptLexer'], - js: ['JavascriptLexer'], // if you're writing jsx inside .js files, change this to JsxLexer - ts: ['JavascriptLexer'], - jsx: ['JsxLexer'], - tsx: ['JsxLexer'], - - default: ['JavascriptLexer'], - }, - - lineEnding: 'auto', - locales: ['en', 'sv'], - - namespaceSeparator: ':', - // Namespace separator used in your translation keys - // If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance. - - output: 'locales/$LOCALE/$NAMESPACE.json', - // Supports $LOCALE and $NAMESPACE injection - // Supports JSON (.json) and YAML (.yml) file formats - // Where to write the locale files relative to process.cwd() - - pluralSeparator: '_', - // Plural separator used in your translation keys - // If you want to use plain english keys, separators such as `_` might conflict. You might want to set `pluralSeparator` to a different string that does not occur in your keys. - - input: ['./web/src/**/*', './src/server/**/*'], - // An array of globs that describe where to look for source files - // relative to the location of the configuration file - - sort: false, - // Whether or not to sort the catalog. Can also be a [compareFunction](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#parameters) - - skipDefaultValues: false, - // Whether to ignore default values - // You may also specify a function accepting the locale and namespace as arguments - - useKeysAsDefaultValue: false, - // Whether to use the keys as the default value; ex. "Hello": "Hello", "World": "World" - // This option takes precedence over the `defaultValue` and `skipDefaultValues` options - // You may also specify a function accepting the locale and namespace as arguments - - verbose: false, - // Display info about the parsing including some stats - - failOnWarnings: false, - // Exit with an exit code of 1 on warnings - - failOnUpdate: false, - // Exit with an exit code of 1 when translations are updated (for CI purpose) - - customValueTemplate: null, - // If you wish to customize the value output the value as an object, you can set your own format. - // ${defaultValue} is the default value you set in your translation function. - // Any other custom property will be automatically extracted. - // - // Example: - // { - // message: "${defaultValue}", - // description: "${maxLength}", // t('my-key', {maxLength: 150}) - // } - - resetDefaultValueLocale: null, - // The locale to compare with default values to determine whether a default value has been changed. - // If this is set and a default value differs from a translation in the specified locale, all entries - // for that key across locales are reset to the default value, and existing translations are moved to - // the `_old` file. - - i18nextOptions: null, - // If you wish to customize options in internally used i18next instance, you can define an object with any - // configuration property supported by i18next (https://www.i18next.com/overview/configuration-options). - // { compatibilityJSON: 'v3' } can be used to generate v3 compatible plurals. -}; diff --git a/localazy.json b/localazy.json deleted file mode 100644 index 8c877f99..00000000 --- a/localazy.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "writeKey": "", - "readKey": "a8249505652440216172-ad821901358cfd858cada94c9bf33d543d82cb994303c2a73b133e11b058ee71", - - "upload": { - "type": "json", - "files": ["locales/en/default.json"] - }, - - "download": { - "includeSourceLang": true, - "files": "locales/${lang}/default.json" - } -} diff --git a/locales/bg/default.json b/locales/bg/default.json new file mode 100644 index 00000000..33f25228 --- /dev/null +++ b/locales/bg/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Акаунт", + "Account balance": "Сметка", + "Account name": "Име на сметката", + "Account name is required": "Име на сметката е задължително", + "Account name is too long": "Името на акаунта е твърде дълго", + "Account users": "Потребители на сметката", + "Accounts": "Акаунти", + "Actions": "Actions", + "Add external account": "Добавяне на външен акаунт", + "Add user": "Добавяне на потребител", + "Add user to account": "Добавяне на потребител към акаунта", + "Add user to shared account": "Добавяне на потребител към споделена сметката", + "Admin": "Администратор", + "Admin role required": "Изисква се администраторска роля", + "Amount": "Сума", + "An account for the specified number already exists": "Вече съществува сметка за посочения номер", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Налична сума", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "СЪЗДАЙ", + "Cancel": "Отказ", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Изберете роля", + "Clearing- & account number": "Изчистване & номер на сметката", + "Clearing- & account number is required": "Изисква се почистване & номер на сметка", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Сътрудник", + "Contributors cannot use money in shared accounts.": "Сътрудниците не могат да използват пари в споделени сметки.", + "Copy account number": "Копиране на номера на сметката", + "Cost": "Цена", + "Current cash": "Текущи парични средства", + "DATE_FORMAT": "YYYY/MM/DD", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm", + "Danger zone": "Опасна зона", + "Dashboard": "Табло", + "Default": "По подразбиране", + "Default account": "Профил по подразбиране", + "Delete account": "Изтрий сметката", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Депозит", + "Deposited {{amount}} into account.": "Депозирани {{amount}} в акаунта.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Разход", + "Expenses": "Разходи", + "Expires": "Валидност", + "External account name": "Име на външен акаунт", + "External accounts": "Външни сметки", + "External transfer": "Външно прехвърляне", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Извличане на данни…", + "Filters": "Филтри", + "From account": "От сметка", + "Funds will be transfered to default account.": "Средствата ще бъдат прехвърлени към сметка по подразбиране.", + "General": "Общи", + "Handle accounts": "Обработване на сметки", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Обработване на неплатените фактури", + "Home": "Начало", + "Income": "Приходи", + "Insufficent funds": "Недостатъчни средства", + "Internal transfer": "Вътрешен трансфер", + "Invalid account name": "Невалидно име на акаунт", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Невалиден номер, форматът е xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Невалиден номер, форматът е: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Фактура", + "Invoices": "Фактури", + "Latest transactions": "Последни транзакции", + "Loading invoices": "Зареждане на фактури", + "Loading transactions": "Зареждане на транзакции", + "Loading {{name}} view ..": "Зареждане на {{name}} преглеждане..", + "Message": "Съобщение", + "Name": "Име", + "New account name": "Ново име на акаунт", + "New balance": "Нов баланс", + "New cash": "Нови парични средства", + "New pin": "New pin", + "No account found to receive transfer.": "Не е намерен акаунт за получаване на превод.", + "No invoices, yet.": "Все още нямате фактури.", + "No users found.": "Няма намерени потребители", + "Old pin": "Old pin", + "Open account": "Отвори сметка", + "Open bank": "Отворете банката", + "Opened a new account": "Отваряне на нов акаунт", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "ЛИЧЕН", + "Paid": "Платено", + "Paid invoice": "Платена фактура", + "Paid outgoing invoice to: {{to}}": "Платена фактура на: {{to}}", + "Pay invoice": "Платете фактурата", + "Pay your bills": "Платете сметките си", + "Personal": "Лично", + "Personal account": "Личен акаунт", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Бързо изтегляне", + "Received incoming invoice from: {{from}}": "Получена фактура от: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Оставащи средства от \"{{deletedAccount}}\"", + "Remove user": "Премахване на потребителя", + "Remove user from a shared account": "Премахване на потребител от споделен акаунт", + "Remove user from account": "Премахване на потребител от акаунта", + "Rename": "Преименуване", + "Rename account": "Преименуване на акаунта", + "Report": "Докладване", + "Role": "Роля", + "SHARED": "СПОДЕЛЕНИ", + "Search for a user": "Търсене на потребител", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Изберете потребител", + "Select account": "Изберете акаунт", + "Set account to default": "Задаване на акаунт по подразбиране", + "Shared": "Споделени", + "Shared account": "Споделен акаунт", + "Shared account actions": "Действия за споделения акаунт", + "Shared account cannot be default account": "Споделеният акаунт не може да бъде акаунт по подразбиране", + "Something went wrong": "Нещо се обърка", + "Something went wrong, please try again later.": "Нещо се обърка. Моля, опитайте пак по-късно.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Успешно депозирани {{amount}} в избраната сметка.", + "Successfully transferred funds": "Успешно прехвърлени средства", + "Successfully transferred {{amount}}.": "Успешно прехвърлена {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Успешно е изтеглихте {{amount}}.", + "Summary": "Отчет", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "Посоченият номер не съвпада със съществуващ акаунт", + "There are currently no unpaid invoices!": "В момента нямате неплатени фактури!", + "There is nothing to see here.": "Няма какво да се види тук.", + "This is a shared account": "Това е споделен акаунт", + "This should be the default account": "Това трябва да е акаунтът по подразбиране", + "This will take cash from your person and insert into selected bank account": "Това ще отнеме пари от вас и ще внесете в избраната банкова сметка", + "To account": "Към акаунта", + "Total": "Общо", + "Total balance": "Общ баланс", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Транзакции", + "Transfer": "Прехвърляне", + "Transfer between internal & external accounts.": "Прехвърляне между вътрешни и външни акаунти.", + "Transfer funds": "Прехвърляне на средства", + "Unpaid invoices": "Неплатени фактури", + "Update pin": "Update pin", + "View all": "Преглед на всички", + "Weekly summary": "Седмичен отчет", + "Withdraw": "Изтеглете", + "Withdrew {{amount}} from account.": "Изтеглихте {{amount}} от сметката.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "Вече имате достъп до този акаунт. Вместо това използвайте вътрешен трансфер", + "You can create more accounts by visiting the nearest bank ..": "Можете да създадете повече акаунти, като посетите най-близката банка..", + "You cannot delete the default account": "Не можете да изтриете акаунта по подразбиране", + "Your accounts": "· Вашите акаунти", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Собственик", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} на стойност: {{total}}" +} \ No newline at end of file diff --git a/locales/cs/default.json b/locales/cs/default.json new file mode 100644 index 00000000..25d01ccf --- /dev/null +++ b/locales/cs/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Účet", + "Account balance": "Zůstatek na účtu", + "Account name": "Název účtu", + "Account name is required": "Název účtu je povinný", + "Account name is too long": "Název účtu je příliš dlouhý", + "Account users": "Uživatelé účtu", + "Accounts": "Účty", + "Actions": "Akce", + "Add external account": "Přidat externí účet", + "Add user": "Přidat uživatele", + "Add user to account": "Přidat uživatele k účtu", + "Add user to shared account": "Přidat uživatele ke sdílenému účtu", + "Admin": "Administrátor", + "Admin role required": "Je potřeba role administrátora", + "Amount": "Částka", + "An account for the specified number already exists": "Účet pro zadané číslo již existuje", + "Are you sure you want to block this card? This action cannot be undone.": "Opravdu chcete zablokovat tuto kartu? Tuto akci nelze vrátit zpět.", + "Are you sure you want to delete this card? This action cannot be undone.": "Opravdu chcete smazat tuto kartu? Akci nelze vrátit zpět.", + "Balance": "Zůstatek", + "Block the card": "Zablokovat kartu", + "Block, update pin and more.": "Blokovat, upravit pin a další.", + "Blocking card": "Blokování karty", + "CREATE": "Vytvořit", + "Cancel": "Zrušit", + "Card holder": "Držitel karty", + "Cards": "Karty", + "Choose role": "Vybrat roli", + "Clearing- & account number": "Kód banky a číslo účtu", + "Clearing- & account number is required": "Kód banky a číslo účtu jsou povinné", + "Confirm new pin": "Potvrdit nový pin", + "Confirm pin": "Potvrdit pin", + "Contributor": "Přispívající", + "Contributors cannot use money in shared accounts.": "Přispívající nemohou používat peníze ve sdílených účtech.", + "Copy account number": "Kopírovat číslo účtu", + "Cost": "Cena", + "Current cash": "Aktuální hotovost", + "DATE_FORMAT": "DATE_FORMAT", + "DATE_TIME_FORMAT": "DD.MM.YYYY HH:mm", + "Danger zone": "Nebezpečná zóna", + "Dashboard": "Hlavní panel", + "Default": "Výchozí", + "Default account": "Výchozí účet", + "Delete account": "Smazat účet", + "Delete the card": "Odstranit kartu", + "Deleting card": "Mazání karty", + "Deposit": "Vložit", + "Deposited {{amount}} into account.": "Vloženo {{amount}} na účet", + "Enter card pin to block the card.": "Zadejte pin karty pro zablokování.", + "Enter pin": "Zadejte pin", + "Expense": "Výdaj", + "Expenses": "Výdaje", + "Expires": "Vyprší", + "External account name": "Název externího účtu", + "External accounts": "Externí účty", + "External transfer": "Externí převod", + "Failed to create new account": "Vytvoření nového účtu se nezdařilo", + "Fetching data ..": "Načítání dat...", + "Filters": "Filtry", + "From account": "Z účtu", + "Funds will be transfered to default account.": "Prostředky budou převedeny na výchozí účet.", + "General": "Obecné", + "Handle accounts": "Spravujte účty", + "Handle cards for your accounts": "Správa karet vašich účtů", + "Handle your unpaid invoices": "Správa vašich nezaplacených faktur", + "Home": "Domů", + "Income": "Příjmy", + "Insufficent funds": "Nedostatečné prostředky", + "Internal transfer": "Interní převod", + "Invalid account name": "Neplatný název účtu", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Neplatné číslo, formát je xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Neplatné číslo, formát je: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Neplatný pin", + "Invoice": "Faktura", + "Invoices": "Faktury", + "Latest transactions": "Poslední transakce", + "Loading invoices": "Načítání faktur", + "Loading transactions": "Načítání transakcí", + "Loading {{name}} view ..": "Načítání {{name}} zobrazení...", + "Message": "Zpráva", + "Name": "Jméno", + "New account name": "Nový název účtu", + "New balance": "Nový zůstatek", + "New cash": "Nová hotovost", + "New pin": "Nový pin", + "No account found to receive transfer.": "Nebyl nalezen žádný účet pro příjem převodu.", + "No invoices, yet.": "Žádné faktury, zatím.", + "No users found.": "Žádní uživatelé nenalezeni.", + "Old pin": "Starý pin", + "Open account": "Otevřít účet", + "Open bank": "Otevřít banku", + "Opened a new account": "Otevření nového účtu", + "Order a new card": "Objednat novou kartu", + "Order new card": "Objednat novou kartu", + "Ordered new card": "Objednána nová karta", + "PERSONAL": "OSOBNÍ", + "Paid": "Zaplaceno", + "Paid invoice": "Zaplacená faktura", + "Paid outgoing invoice to: {{to}}": "Zaplacená odchozí faktura pro: {{to}}", + "Pay invoice": "Zaplatit fakturu", + "Pay your bills": "Zaplaťte své účty", + "Personal": "Osobní", + "Personal account": "Osobní účet", + "Pins do not match": "Piny se neshodují", + "Quick withdraw": "Rychlý výběr", + "Received incoming invoice from: {{from}}": "Přijatá příchozí faktura od: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Zbývající prostředky z účtu \"{{deletedAccount}}\"", + "Remove user": "Odebrat uživatele", + "Remove user from a shared account": "Odebrat uživatele ze sdíleného účtu", + "Remove user from account": "Odebrat uživatele z účtu", + "Rename": "Přejmenovat", + "Rename account": "Přejmenovat účet", + "Report": "Zpráva", + "Role": "Pozice", + "SHARED": "SDÍLENÉ", + "Search for a user": "Vyhledat uživatele", + "Select a card": "Vyberte kartu", + "Select a card to handle, or order a new one.": "Vyberte kartu pro správu, nebo si objednejte novou.", + "Select a user": "Vybrat uživatele", + "Select account": "Vybrat účet", + "Set account to default": "Nastavit účet jako výchozí", + "Shared": "Sdílené", + "Shared account": "Sdílený účet", + "Shared account actions": "Akce sdíleného účtu", + "Shared account cannot be default account": "Sdílený účet nemůže být výchozí", + "Something went wrong": "Něco se pokazilo", + "Something went wrong, please try again later.": "Něco se pokazilo, zkuste to prosím znovu později.", + "Successfully blocked the card.": "Karta úspěšně zablokována", + "Successfully deleted the card.": "Karta úspěšně smazána", + "Successfully deposited {{amount}} into selected account.": "Úspěšně vloženo {{amount}} na vybraný účet.", + "Successfully transferred funds": "Prostředky úspěšně převedeny", + "Successfully transferred {{amount}}.": "Úspěšně převedeno {{amount}}.", + "Successfully updated pin.": "Pin úspěšně aktualizován", + "Successfully withdrew {{amount}}.": "Úspěšně vybráno {{amount}}.", + "Summary": "Souhrn", + "The card is blocked": "Karta je zablokována", + "The specified number does not match an existing account": "Zadané číslo neodpovídá existujícímu účtu", + "There are currently no unpaid invoices!": "Momentálně neexistují žádné nezaplacené faktury!", + "There is nothing to see here.": "Tady není nic k vidění.", + "This is a shared account": "Toto je sdílený účet", + "This should be the default account": "Toto by měl být výchozí účet", + "This will take cash from your person and insert into selected bank account": "Vezme hotovost z vaší kapsy a vloží ji na vybraný bankovní účet", + "To account": "Na účet", + "Total": "Celkem", + "Total balance": "Celkový zůstatek", + "TransactionType.Incoming": "Příchozí", + "TransactionType.Outgoing": "Odchozí", + "TransactionType.Transfer": "Převod", + "Transactions": "Transakce", + "Transfer": "Převést", + "Transfer between internal & external accounts.": "Převod mezi interními a externími účty.", + "Transfer funds": "Převést prostředky", + "Unpaid invoices": "Nezaplacené faktury", + "Update pin": "Aktualizovat pin", + "View all": "Zobrazit vše", + "Weekly summary": "Týdenní souhrn", + "Withdraw": "Vybrat", + "Withdrew {{amount}} from account.": "Vybráno {{amount}} z účtu", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Vybrat {{amount}} z bankomatu s kartou {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Vybráno {{amount}} z bankomatu", + "You already have access to this account. Use internal transfer instead": "K tomuto účtu již máte přístup. Použijte interní převod", + "You can create more accounts by visiting the nearest bank ..": "Další účty můžete vytvořit návštěvou nejbližší banky...", + "You cannot delete the default account": "Výchozí účet nelze smazat", + "Your accounts": "Vaše účty", + "calendar.lastDay": "včera", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "dnes v", + "calendar.sameElse": "calendar.sameElse", + "owner": "Vlastník", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} z {{total}}" +} \ No newline at end of file diff --git a/locales/da/default.json b/locales/da/default.json new file mode 100644 index 00000000..1a4ee10a --- /dev/null +++ b/locales/da/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Konto", + "Account balance": "Kontosaldo", + "Account name": "Kontonavn", + "Account name is required": "Kontonavn er påkrævet", + "Account name is too long": "Kontonavn er for langt", + "Account users": "Konto brugere", + "Accounts": "Konti", + "Actions": "Handlinger", + "Add external account": "Tilføj ekstern konto", + "Add user": "Tilføj bruger", + "Add user to account": "Tilføj bruger til konto", + "Add user to shared account": "Tilføj bruger til delt konto", + "Admin": "Administrator", + "Admin role required": "Administratorrolle påkrævet", + "Amount": "Mængde", + "An account for the specified number already exists": "Der findes allerede en konto for det angivne nummer", + "Are you sure you want to block this card? This action cannot be undone.": "Er du sikker på, at du vil blokere dette kort? Denne handling kan ikke fortrydes.", + "Are you sure you want to delete this card? This action cannot be undone.": "Er du sikker på, at du vil slette dette kort? Denne handling kan ikke fortrydes.", + "Balance": "Saldo", + "Block the card": "Bloker kortet", + "Block, update pin and more.": "Bloker, opdater pin og mere.", + "Blocking card": "Blokerer kort", + "CREATE": "OPRET", + "Cancel": "Annuller", + "Card holder": "Kortholder", + "Cards": "Kort", + "Choose role": "Vælg en rolle", + "Clearing- & account number": "Klaring- & kontonummer", + "Clearing- & account number is required": "Klaring- & kontonummer er påkrævet", + "Confirm new pin": "Bekræft den nye pinkode", + "Confirm pin": "Bekræft pinkode", + "Contributor": "Bidragyder", + "Contributors cannot use money in shared accounts.": "Bidragsydere kan ikke bruge penge på delte konti.", + "Copy account number": "Kopier kontonummer", + "Cost": "Omkostninger", + "Current cash": "Nuværende kontanter", + "DATE_FORMAT": "YYYY/MM/DD", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm", + "Danger zone": "Fare zone", + "Dashboard": "Kontrolpanel", + "Default": "Standard", + "Default account": "Standard-konto", + "Delete account": "Slet konto", + "Delete the card": "Slet kort", + "Deleting card": "Sletter kort", + "Deposit": "Indsæt", + "Deposited {{amount}} into account.": "Indsatte {{amount}} i kontoen.", + "Enter card pin to block the card.": "Indtast pinkode for at blokere kortet.", + "Enter pin": "Indtast PIN", + "Expense": "Bekostning", + "Expenses": "Udgifter", + "Expires": "Udløber", + "External account name": "Ekstern kontonavn", + "External accounts": "Eksterne konti", + "External transfer": "Ekstern overførsel", + "Failed to create new account": "Det lykkedes ikke at oprette en ny konto", + "Fetching data ..": "Henter data…", + "Filters": "Filtre", + "From account": "Fra konto", + "Funds will be transfered to default account.": "Midler overføres til standardkonto.", + "General": "Generel", + "Handle accounts": "Håndter konti", + "Handle cards for your accounts": "Håndter kort til dine konti", + "Handle your unpaid invoices": "Håndter dine ubetalte fakturaer", + "Home": "Hjem", + "Income": "Indtægt", + "Insufficent funds": "Utilstrækkelige midler", + "Internal transfer": "Intern overførsel", + "Invalid account name": "Ugyldigt kontonavn", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Ugyldigt nummer, formatet: er xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Ugyldigt nummer, formatet er: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Ugyldig PIN-kode", + "Invoice": "Faktura", + "Invoices": "Fakturaer", + "Latest transactions": "Seneste transaktioner", + "Loading invoices": "Indlæser fakturaer", + "Loading transactions": "Indlæser transaktioner", + "Loading {{name}} view ..": "Indlæser {{name}} visning..", + "Message": "Besked", + "Name": "Navn", + "New account name": "Nyt kontonavn", + "New balance": "Ny saldo", + "New cash": "Kontanter", + "New pin": "Ny pinkode", + "No account found to receive transfer.": "Ingen konto fundet for at modtage overførsel.", + "No invoices, yet.": "Ingen fakturaer, endnu.", + "No users found.": "Ingen brugere fundet.", + "Old pin": "Gammel pin", + "Open account": "Åbn konto", + "Open bank": "Åben bank", + "Opened a new account": "Åbnede en ny konto", + "Order a new card": "Bestil et nyt kort", + "Order new card": "Bestil nyt kort", + "Ordered new card": "Bestilte nyt kort", + "PERSONAL": "PERSONLIG", + "Paid": "Betalt", + "Paid invoice": "Betalt faktura", + "Paid outgoing invoice to: {{to}}": "Betalt udgående faktura til: {{to}}", + "Pay invoice": "Betal faktura", + "Pay your bills": "Betal dine regninger", + "Personal": "Personlig", + "Personal account": "Personlig konto", + "Pins do not match": "PIN-koderne stemmer ikke overens", + "Quick withdraw": "Hurtig hævning", + "Received incoming invoice from: {{from}}": "Modtaget indgående faktura fra: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Resterende midler fra \"{{deletedAccount}}\"", + "Remove user": "Fjern bruger", + "Remove user from a shared account": "Fjern bruger fra en delt konto", + "Remove user from account": "Fjern bruger fra konto", + "Rename": "Omdøb", + "Rename account": "Omdøb konto", + "Report": "Rapportér", + "Role": "Rolle", + "SHARED": "DELT", + "Search for a user": "Søg efter en bruger", + "Select a card": "Vælg kort", + "Select a card to handle, or order a new one.": "Vælg et kort, der skal håndteres, eller bestil et nyt.", + "Select a user": "Vælg bruger...", + "Select account": "Vælg konto", + "Set account to default": "Indstil konto til standard", + "Shared": "Delt", + "Shared account": "Delt konto", + "Shared account actions": "Handlinger med delt konto", + "Shared account cannot be default account": "Delt konto kan ikke være standardkonto", + "Something went wrong": "Noget gik galt", + "Something went wrong, please try again later.": "Ups, noget gik galt. Prøv venligst igen senere.", + "Successfully blocked the card.": "Blokeret kortet.", + "Successfully deleted the card.": "Kortet blev slettet med succes.", + "Successfully deposited {{amount}} into selected account.": "Indsatte {{amount}} med succes på den valgte konto.", + "Successfully transferred funds": "Overførte midler med succes", + "Successfully transferred {{amount}}.": "Succesfuldt overført {{amount}}.", + "Successfully updated pin.": "Pinkoden blev opdateret med succes.", + "Successfully withdrew {{amount}}.": "Hævede {{amount}} med succes.", + "Summary": "Oversigt", + "The card is blocked": "Kortet er blokeret", + "The specified number does not match an existing account": "Det angivne nummer stemmer ikke overens med en eksisterende konto", + "There are currently no unpaid invoices!": "Der er i øjeblikket ingen ubetalte fakturaer!", + "There is nothing to see here.": "Der er intet at se her.", + "This is a shared account": "Dette er en delt konto", + "This should be the default account": "Dette skal være standardkontoen", + "This will take cash from your person and insert into selected bank account": "Dette vil tage kontanter fra din person og indsætte i den valgte bankkonto", + "To account": "til kontoen", + "Total": "I alt", + "Total balance": "Total saldo", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "Transfer", + "Transactions": "Transaktioner", + "Transfer": "Overfør", + "Transfer between internal & external accounts.": "Overførsel mellem interne og eksterne konti.", + "Transfer funds": "Overfør midler", + "Unpaid invoices": "Ubetalte fakturaer", + "Update pin": "Opdater pin", + "View all": "Vis alle", + "Weekly summary": "Ugentlig oversigt", + "Withdraw": "Hæv", + "Withdrew {{amount}} from account.": "Hævede {{amount}} fra konto.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Hævede {{amount}} fra en hæveautomat med kort {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Hævede {{amount}} fra en hæveautomat.", + "You already have access to this account. Use internal transfer instead": "Du har allerede adgang til denne konto. Brug intern overførsel i stedet", + "You can create more accounts by visiting the nearest bank ..": "Du kan oprette flere konti ved at besøge den nærmeste bank..", + "You cannot delete the default account": "Du kan ikke slette standardkontoen", + "Your accounts": "Dine konti", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Ejer", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} af {{total}}" +} \ No newline at end of file diff --git a/locales/de/default.json b/locales/de/default.json new file mode 100644 index 00000000..2e1da786 --- /dev/null +++ b/locales/de/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Konto", + "Account balance": "Kontostand", + "Account name": "Kontobezeichnung", + "Account name is required": "Kontobezeichnung ist erforderlich", + "Account name is too long": "Kontobezeichnung ist zu lang", + "Account users": "Konto-Nutzer", + "Accounts": "Konten", + "Actions": "Aktionen", + "Add external account": "Externes Konto hinzufügen", + "Add user": "Benutzer hinzufügen", + "Add user to account": "Benutzer zum Konto hinzufügen", + "Add user to shared account": "Benutzer zu geteiltem Konto hinzufügen", + "Admin": "Administrator", + "Admin role required": "Admin-Rolle erforderlich", + "Amount": "Betrag", + "An account for the specified number already exists": "Ein Konto für die angegebene Nummer ist bereits vorhanden", + "Are you sure you want to block this card? This action cannot be undone.": "Sind Sie sicher, dass Sie diese Karte sperren wollen? Diese Aktion kann nicht rückgängig gemacht werden.", + "Are you sure you want to delete this card? This action cannot be undone.": "Sind Sie sicher, dass Sie diese Karte löschen wollen? Diese Aktion kann nicht rückgängig gemacht werden.", + "Balance": "Guthaben", + "Block the card": "Die Karte sperren", + "Block, update pin and more.": "Sperren, Pin aktualisieren und mehr.", + "Blocking card": "Karte wird gesperrt", + "CREATE": "ERSTELLEN", + "Cancel": "Abbrechen", + "Card holder": "Kartenbesitzer", + "Cards": "Karten", + "Choose role": "Rolle wählen", + "Clearing- & account number": "Verrechnungs- & Kontonummer", + "Clearing- & account number is required": "Verrechnungs- & Kontonummer ist erforderlich", + "Confirm new pin": "Neue Pin bestätigen", + "Confirm pin": "Pin bestätigen", + "Contributor": "Mitwirkende(r)", + "Contributors cannot use money in shared accounts.": "Mitwirkende können kein Geld auf gemeinsamen Konten verwenden.", + "Copy account number": "Kontonummer kopieren", + "Cost": "Kosten", + "Current cash": "Aktueller Geldbetrag", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:mm", + "Danger zone": "Warnung!", + "Dashboard": "Übersicht", + "Default": "Standard", + "Default account": "Standard-Konto", + "Delete account": "Konto löschen", + "Delete the card": "Die Karte löschen", + "Deleting card": "Karte wird gelöscht", + "Deposit": "Einzahlen", + "Deposited {{amount}} into account.": "{{amount}} auf Konto eingezahlt.", + "Enter card pin to block the card.": "Gib die Karten-Pin ein, um diese zu sperren.", + "Enter pin": "Pin eingeben", + "Expense": "Auslage", + "Expenses": "Auslagen", + "Expires": "Läuft ab", + "External account name": "Externer Kontoname", + "External accounts": "Externe Konten", + "External transfer": "Externe Überweisung", + "Failed to create new account": "Erstellen des neuen Kontos fehlgeschlagen", + "Fetching data ..": "Daten werden abgerufen ..", + "Filters": "Filter", + "From account": "Von Konto", + "Funds will be transfered to default account.": "Das Geld wird auf das Standardkonto überwiesen.", + "General": "Allgemein", + "Handle accounts": "Konten verwalten", + "Handle cards for your accounts": "Die Karten deines Kontos verwalten", + "Handle your unpaid invoices": "Bearbeiten Sie Ihre unbezahlten Rechnungen", + "Home": "Startseite", + "Income": "Einnahme", + "Insufficent funds": "Unzureichende Geldmittel", + "Internal transfer": "Interne Überweisung", + "Invalid account name": "Ungültiger Kontoname", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Ungültige Zahl, Format ist xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Ungültige Zahl, Format ist: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Ungültiger Pin", + "Invoice": "Rechnung", + "Invoices": "Rechnungen", + "Latest transactions": "Letzte Transaktionen", + "Loading invoices": "Rechnungen werden geladen", + "Loading transactions": "Transaktionen werden geladen", + "Loading {{name}} view ..": "Die {{name}} -Ansicht wird geladen ..", + "Message": "Mitteilung", + "Name": "Name", + "New account name": "Neuer Kontoname", + "New balance": "Neues Guthaben", + "New cash": "Neuer Umsatz", + "New pin": "Neue PIN", + "No account found to receive transfer.": "Kein Konto für den Empfang einer Überweisung gefunden.", + "No invoices, yet.": "Noch keine Rechnungen.", + "No users found.": "Keine Benutzer gefunden", + "Old pin": "Aktuelle PIN", + "Open account": "Konto eröffnen", + "Open bank": "Bank öffnen", + "Opened a new account": "Neues Konto eröffnet", + "Order a new card": "Neue Karte bestellen", + "Order new card": "Neue Karte bestellen", + "Ordered new card": "Neue Kreditkarte beantragt", + "PERSONAL": "Privat", + "Paid": "Bezahlt", + "Paid invoice": "Bezahlte Rechnung", + "Paid outgoing invoice to: {{to}}": "Zahlungsausgangsrechnung an: {{to}}", + "Pay invoice": "Rechnung bezahlen", + "Pay your bills": "Zahlen Sie Ihre Rechnungen", + "Personal": "Privat", + "Personal account": "Privates Konto", + "Pins do not match": "Die Pins stimmen nicht überein", + "Quick withdraw": "Schnelles Abheben", + "Received incoming invoice from: {{from}}": "Eingangsrechnung erhalten von: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Verbleibendes Guthaben von „{{deletedAccount}}“", + "Remove user": "Nutzer entfernen", + "Remove user from a shared account": "Benutzer aus einem geteilten Konto entfernen", + "Remove user from account": "Benutzer aus Konto entfernen", + "Rename": "Umbenennen", + "Rename account": "Konto umbenennen", + "Report": "Zusammenfassung", + "Role": "Rolle", + "SHARED": "GETEILT", + "Search for a user": "Nach einem Nutzer suchen", + "Select a card": "Eine Karte auswählen", + "Select a card to handle, or order a new one.": "Wählen Sie eine Karte aus, die verwaltet werden soll, oder bestellen Sie eine neue.", + "Select a user": "Wählen Sie einen Benutzer aus", + "Select account": "Konto auswählen", + "Set account to default": "Konto auf Standard setzen", + "Shared": "Geteilt", + "Shared account": "Gemeinsames Konto", + "Shared account actions": "Aktionen für gemeinsame Konten", + "Shared account cannot be default account": "Geteiltes Konto kann kein Standardkonto sein", + "Something went wrong": "Es ist ein Fehler aufgetreten.", + "Something went wrong, please try again later.": "Es ist ein Problem aufgetreten. Versuchen Sie es später erneut.", + "Successfully blocked the card.": "Die Karte wurde erfolgreich gesperrt.", + "Successfully deleted the card.": "Die Karte wurde erfolgreich gelöscht.", + "Successfully deposited {{amount}} into selected account.": "Der Betrag von {{amount}} wurde erfolgreich auf das ausgewählte Konto eingezahlt.", + "Successfully transferred funds": "Erfolgreich überwiesen", + "Successfully transferred {{amount}}.": "Der Betrag von {{amount}} wurde erfolgreich übertragen.", + "Successfully updated pin.": "Pin wurde erfolgreich aktualisiert.", + "Successfully withdrew {{amount}}.": "Der Betrag von {{amount}} wurde erfolgreich abgehoben.", + "Summary": "Zusammenfassung", + "The card is blocked": "Die Karte ist gesperrt", + "The specified number does not match an existing account": "Die angegebene Nummer stimmt nicht mit einem vorhandenen Konto überein!", + "There are currently no unpaid invoices!": "Sie haben aktuell keine offenen Rechnungen!", + "There is nothing to see here.": "Hier gibt es nichts zu sehen.", + "This is a shared account": "Dies ist ein geteiltes Konto", + "This should be the default account": "Dies sollte das Standardkonto sein", + "This will take cash from your person and insert into selected bank account": "Dadurch wird Ihr Bargeld auf das ausgewählte Bankkonto eingezahlt", + "To account": "Auf Konto", + "Total": "Gesamt", + "Total balance": "Gesamtguthaben", + "TransactionType.Incoming": "Transaktionsart.Incoming", + "TransactionType.Outgoing": "Transaktionstyp.Outgoing", + "TransactionType.Transfer": "Transfer", + "Transactions": "Transaktionen", + "Transfer": "Transferieren", + "Transfer between internal & external accounts.": "Übertragung zwischen internen und externen Konten.", + "Transfer funds": "Geld überweisen", + "Unpaid invoices": "Unbezahlte Rechnungen", + "Update pin": "Pin aktualisieren", + "View all": "Alle anzeigen", + "Weekly summary": "Wöchentliche Zusammenfassung", + "Withdraw": "Geld abheben", + "Withdrew {{amount}} from account.": "Der Betrag von {{amount}} wurde vom Konto abgehoben.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "{{amount}} wurde mit der Karte {{cardNumber}} an einem Geldautomaten abgehoben.", + "Withdrew {{amount}} from an ATM.": "{{amount}} an einem Geldautomaten abgehoben.", + "You already have access to this account. Use internal transfer instead": "Sie haben bereits Zugriff auf dieses Konto. Verwenden Sie stattdessen die interne Übertragung", + "You can create more accounts by visiting the nearest bank ..": "Sie können weitere Konten erstellen, indem Sie die nächstgelegene Bank besuchen.", + "You cannot delete the default account": "Das Standardkonto kann nicht gelöscht werden!", + "Your accounts": "· Ihre Konten", + "calendar.lastDay": "calendar.lastday", + "calendar.lastWeek": "calendar.lastweek", + "calendar.nextDay": "calendar.nextday", + "calendar.nextWeek": "calendar.nextweek", + "calendar.sameDay": "calendar.sameday", + "calendar.sameElse": "calendar.SameElse", + "owner": "Inhaber", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} von {{total}}" +} \ No newline at end of file diff --git a/locales/en/default.json b/locales/en/default.json new file mode 100644 index 00000000..c9aad14e --- /dev/null +++ b/locales/en/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Account", + "Account balance": "Account balance", + "Account name": "Account name", + "Account name is required": "Account name is required", + "Account name is too long": "Account name is too long", + "Account users": "Account users", + "Accounts": "Accounts", + "Actions": "Actions", + "Add external account": "Add external account", + "Add user": "Add user", + "Add user to account": "Add user to account", + "Add user to shared account": "Add user to shared account", + "Admin": "Admin", + "Admin role required": "Admin role required", + "Amount": "Amount", + "An account for the specified number already exists": "An account for the specified number already exists", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Balance", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "CREATE", + "Cancel": "Cancel", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Choose role", + "Clearing- & account number": "Clearing- & account number", + "Clearing- & account number is required": "Clearing- & account number is required", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Contributor", + "Contributors cannot use money in shared accounts.": "Contributors cannot use money in shared accounts.", + "Copy account number": "Copy account number", + "Cost": "Cost", + "Current cash": "Current cash", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm A", + "Danger zone": "Danger zone", + "Dashboard": "Dashboard", + "Default": "Default", + "Default account": "Default account", + "Delete account": "Delete account", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Deposit", + "Deposited {{amount}} into account.": "Deposited {{amount}} into account.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Expense", + "Expenses": "Expenses", + "Expires": "Expires", + "External account name": "External account name", + "External accounts": "External accounts", + "External transfer": "External transfer", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Fetching data ..", + "Filters": "Filters", + "From account": "From account", + "Funds will be transfered to default account.": "Funds will be transfered to default account.", + "General": "General", + "Handle accounts": "Handle accounts", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Handle your unpaid invoices", + "Home": "Home", + "Income": "Income", + "Insufficent funds": "Insufficent funds", + "Internal transfer": "Internal transfer", + "Invalid account name": "Invalid account name", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Invalid number, format is xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Invalid number, format is: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Invoice", + "Invoices": "Invoices", + "Latest transactions": "Latest transactions", + "Loading invoices": "Loading invoices", + "Loading transactions": "Loading transactions", + "Loading {{name}} view ..": "Loading {{name}} view ..", + "Message": "Message", + "Name": "Name", + "New account name": "New account name", + "New balance": "New balance", + "New cash": "New cash", + "New pin": "New pin", + "No account found to receive transfer.": "No account found to receive transfer.", + "No invoices, yet.": "No invoices, yet.", + "No users found.": "No users found.", + "Old pin": "Old pin", + "Open account": "Open account", + "Open bank": "Open bank", + "Opened a new account": "Opened a new account", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "PERSONAL", + "Paid": "Paid", + "Paid invoice": "Paid invoice", + "Paid outgoing invoice to: {{to}}": "Paid outgoing invoice to: {{to}}", + "Pay invoice": "Pay invoice", + "Pay your bills": "Pay your bills", + "Personal": "Personal", + "Personal account": "Personal account", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Quick withdraw", + "Received incoming invoice from: {{from}}": "Received incoming invoice from: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Remaining funds from \"{{deletedAccount}}\"", + "Remove user": "Remove user", + "Remove user from a shared account": "Remove user from a shared account", + "Remove user from account": "Remove user from account", + "Rename": "Rename", + "Rename account": "Rename account", + "Report": "Report", + "Role": "Role", + "SHARED": "SHARED", + "Search for a user": "Search for a user", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Select a user", + "Select account": "Select account", + "Set account to default": "Set account to default", + "Shared": "Shared", + "Shared account": "Shared account", + "Shared account actions": "Shared account actions", + "Shared account cannot be default account": "Shared account cannot be default account", + "Something went wrong": "Something went wrong", + "Something went wrong, please try again later.": "Something went wrong, please try again later.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Successfully deposited {{amount}} into selected account.", + "Successfully transferred funds": "Successfully transferred funds", + "Successfully transferred {{amount}}.": "Successfully transferred {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Successfully withdrew {{amount}}.", + "Summary": "Summary", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "The specified number does not match an existing account", + "There are currently no unpaid invoices!": "There are currently no unpaid invoices!", + "There is nothing to see here.": "There is nothing to see here.", + "This is a shared account": "This is a shared account", + "This should be the default account": "This should be the default account", + "This will take cash from your person and insert into selected bank account": "This will take cash from your person and insert into selected bank account", + "To account": "To account", + "Total": "Total", + "Total balance": "Total balance", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transactions", + "Transfer": "Transfer", + "Transfer between internal & external accounts.": "Transfer between internal & external accounts.", + "Transfer funds": "Transfer funds", + "Unpaid invoices": "Unpaid invoices", + "Update pin": "Update pin", + "View all": "View all", + "Weekly summary": "Weekly summary", + "Withdraw": "Withdraw", + "Withdrew {{amount}} from account.": "Withdrew {{amount}} from account.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "You already have access to this account. Use internal transfer instead", + "You can create more accounts by visiting the nearest bank ..": "You can create more accounts by visiting the nearest bank ..", + "You cannot delete the default account": "You cannot delete the default account", + "Your accounts": "Your accounts", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "owner", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} of {{total}}" +} \ No newline at end of file diff --git a/locales/es/default.json b/locales/es/default.json new file mode 100644 index 00000000..a1532b25 --- /dev/null +++ b/locales/es/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Cuenta", + "Account balance": "Saldo de la cuenta", + "Account name": "Nombre de la cuenta", + "Account name is required": "Nombre de cuenta requerido", + "Account name is too long": "El nombre de la cuenta es demasiado largo", + "Account users": "Usuarios de la cuenta", + "Accounts": "Cuentas", + "Actions": "Actions", + "Add external account": "Añadir cuenta externa", + "Add user": "Añadir usuario", + "Add user to account": "Añadir usuario a la cuenta", + "Add user to shared account": "Añadir usuario a la cuenta compartida", + "Admin": "Administrador", + "Admin role required": "Rol de administrador requerido", + "Amount": "Cantidad", + "An account for the specified number already exists": "Ya existe una cuenta para el número especificado", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Saldo", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "CREAR", + "Cancel": "Cancelar", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Elegir rol", + "Clearing- & account number": "Compensación y número de cuenta", + "Clearing- & account number is required": "Compensación y número de cuenta requerido", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Contribuyente", + "Contributors cannot use money in shared accounts.": "Los colaboradores no pueden usar dinero en cuentas compartidas.", + "Copy account number": "Copiar número de cuenta", + "Cost": "Coste", + "Current cash": "Efectivo disponible", + "DATE_FORMAT": "YYYY/MM/DD", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm", + "Danger zone": "Zona de riesgo", + "Dashboard": "Panel de control", + "Default": "Por defecto", + "Default account": "Cuenta predeterminada", + "Delete account": "Borrar cuenta", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Depositar", + "Deposited {{amount}} into account.": "Depositado {{amount}} en la cuenta.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Gastos", + "Expenses": "Gastos", + "Expires": "Caduca", + "External account name": "Nombre de cuenta externa", + "External accounts": "Cuentas externas", + "External transfer": "Transferencia externa", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Obteniendo datos…", + "Filters": "Filtros", + "From account": "Desde la cuenta", + "Funds will be transfered to default account.": "Los fondos se transferirán a la cuenta predeterminada.", + "General": "General", + "Handle accounts": "Gestionar cuentas", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Gestionar facturas impagadas", + "Home": "Inicio", + "Income": "Ingresos", + "Insufficent funds": "Saldo insuficientes", + "Internal transfer": "Transferencia interna", + "Invalid account name": "Nombre de cuenta no válido", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Número no válido, el formato es xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Número no válido, el formato es: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Factura", + "Invoices": "Facturas", + "Latest transactions": "Transacciones recientes", + "Loading invoices": "Cargando facturas", + "Loading transactions": "Cargando transacciones", + "Loading {{name}} view ..": "Cargando vista de {{name}}..", + "Message": "Mensaje", + "Name": "Nombre", + "New account name": "Nuevo nombre de cuenta", + "New balance": "Nuevo saldo", + "New cash": "Efectivo nuevo", + "New pin": "New pin", + "No account found to receive transfer.": "No se ha encontrado cuenta para recibir la transferencia.", + "No invoices, yet.": "Aún no hay facturas.", + "No users found.": "No se encontraron usuarios.", + "Old pin": "Old pin", + "Open account": "Abrir una cuenta", + "Open bank": "Abrir banco", + "Opened a new account": "Nueva cuenta abierta", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "PERSONAL", + "Paid": "Pagado", + "Paid invoice": "Factura pagada", + "Paid outgoing invoice to: {{to}}": "Factura pagada a: {{to}}", + "Pay invoice": "Pagar Factura", + "Pay your bills": "Paga tus facturas", + "Personal": "Personal", + "Personal account": "Cuenta personal", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Retirada rápida", + "Received incoming invoice from: {{from}}": "Factura recibida de: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Fondos restantes de «{{deletedAccount}}»", + "Remove user": "Eliminar usuario", + "Remove user from a shared account": "Eliminar usuario de una cuenta compartida", + "Remove user from account": "Eliminar usuario de la cuenta", + "Rename": "Renombrar", + "Rename account": "Renombrar cuenta", + "Report": "Reportar", + "Role": "Rol", + "SHARED": "COMPARTIDA", + "Search for a user": "Buscar un usuario", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Seleccionar usuario", + "Select account": "Seleccionar cuenta", + "Set account to default": "Establecer la cuenta como predeterminada", + "Shared": "Compartida", + "Shared account": "Cuenta compartida", + "Shared account actions": "Acciones de cuenta compartida", + "Shared account cannot be default account": "La cuenta compartida no puede ser la cuenta predeterminada", + "Something went wrong": "Se ha producido un error", + "Something went wrong, please try again later.": "Algo salió mal. Por favor, intenta de nuevo mas tarde.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Se ha depositado {{amount}} en la cuenta seleccionada.", + "Successfully transferred funds": "Fondos transferidos correctamente", + "Successfully transferred {{amount}}.": "Se ha transferido {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Se ha retirado {{amount}}.", + "Summary": "Resumen", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "El número especificado no coincide con una cuenta existente", + "There are currently no unpaid invoices!": "¡Actualmente no hay facturas pendientes de pago!", + "There is nothing to see here.": "No hay nada que ver aquí.", + "This is a shared account": "Esta es una cuenta compartida", + "This should be the default account": "Esta debe ser la cuenta por defecto", + "This will take cash from your person and insert into selected bank account": "Esto tomará efectivo de tu inventario y lo depositara en la cuenta seleccionada", + "To account": "A la cuenta", + "Total": "Total", + "Total balance": "Saldo total", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transacciones", + "Transfer": "Transferir", + "Transfer between internal & external accounts.": "Transfiere entre cuentas internas y externas.", + "Transfer funds": "Transfiera fondos", + "Unpaid invoices": "Facturas impagas", + "Update pin": "Update pin", + "View all": "Ver todo", + "Weekly summary": "Resumen semanal", + "Withdraw": "Retirar", + "Withdrew {{amount}} from account.": "Se retiraron {{amount}} de la cuenta.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "Ya tienes acceso a esta cuenta. En su lugar, usar transferencia interna", + "You can create more accounts by visiting the nearest bank ..": "Puedes crear más cuentas visitando el banco más cercano.", + "You cannot delete the default account": "No puedes eliminar la cuenta predeterminada", + "Your accounts": "Tus cuentas", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Propietario", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} de {{total}}" +} \ No newline at end of file diff --git a/locales/fi/default.json b/locales/fi/default.json new file mode 100644 index 00000000..7cfe7823 --- /dev/null +++ b/locales/fi/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Tili", + "Account balance": "Tilin saldo", + "Account name": "Tilin nimi", + "Account name is required": "Tilin nimi vaaditaan", + "Account name is too long": "Tilin nimi on liian pitkä", + "Account users": "Tilin käyttäjät", + "Accounts": "Tilit", + "Actions": "Toiminnot", + "Add external account": "Lisää ulkoinen tili", + "Add user": "Lisää käyttäjä", + "Add user to account": "Lisää käyttäjä tilille", + "Add user to shared account": "Lisää käyttäjä jaetulle tilille", + "Admin": "Pääkäyttäjä", + "Admin role required": "Pääkäyttäjän rooli vaaditaan", + "Amount": "Summa", + "An account for the specified number already exists": "Tili tällä numerolla on jo olemassa", + "Are you sure you want to block this card? This action cannot be undone.": "Oletko varma että haluat kuolettaa tämän pankkikortin? Tätä toimintoa ei voida peruuttaa.", + "Are you sure you want to delete this card? This action cannot be undone.": "Oletko varma että haluat poistaa tämän pankkikortin? Tätä toimintoa ei voida kumota.", + "Balance": "Saldo", + "Block the card": "Kuoleta pankkikortti", + "Block, update pin and more.": "Kuoleta kortti, päivitä PIN-koodi ja muuta.", + "Blocking card": "Kuoletetaan pankkikorttia", + "CREATE": "Luo", + "Cancel": "Peruuta", + "Card holder": "Kortinhaltija", + "Cards": "Pankkikortit", + "Choose role": "Valitse rooli", + "Clearing- & account number": "Tunniste- ja tilinumero", + "Clearing- & account number is required": "Tunniste- ja tilinumero vaaditaan", + "Confirm new pin": "Vahvista uusi PIN-koodi", + "Confirm pin": "Vahvista PIN-koodi", + "Contributor": "Rinnakkaisjäsen", + "Contributors cannot use money in shared accounts.": "Rinnakkaisjäsenet eivät voi käyttää rahaa jaetuilla tileillä.", + "Copy account number": "Kopioi tilinumero", + "Cost": "Hinta", + "Current cash": "Käteinen", + "DATE_FORMAT": "DD.MM.YYYY", + "DATE_TIME_FORMAT": "DD.MM.YYYY HH:mm", + "Danger zone": "Vaaravyöhyke", + "Dashboard": "Yleisnäkymä", + "Default": "Oletus", + "Default account": "Oletustili", + "Delete account": "Poista tili", + "Delete the card": "Poista pankkikortti", + "Deleting card": "Poistetaan pankkikorttia", + "Deposit": "Talleta", + "Deposited {{amount}} into account.": "{{amount}} talletettu tilille.", + "Enter card pin to block the card.": "Syötä pankkikortin pin-koodi kuolettaaksesi kortin.", + "Enter pin": "Syötä pin-koodi", + "Expense": "Meno", + "Expenses": "Menot", + "Expires": "Erääntyy", + "External account name": "Ulkoisen tilin nimi", + "External accounts": "Ulkoiset tilit", + "External transfer": "Ulkoinen siirto", + "Failed to create new account": "Uuden tilin luominen epäonnistui", + "Fetching data ..": "Haetaan tietoja…", + "Filters": "Suodattimet", + "From account": "Tililtä", + "Funds will be transfered to default account.": "Rahat siirretään oletustilille.", + "General": "Yleinen", + "Handle accounts": "Hallinnoi tilejä", + "Handle cards for your accounts": "Hallinnoi tilisi pankkikortteja", + "Handle your unpaid invoices": "Käsittele maksamattomat laskut", + "Home": "Etusivu", + "Income": "Tulo", + "Insufficent funds": "Ei riittävästi rahaa", + "Internal transfer": "Sisäinen siirto", + "Invalid account name": "Virheellinen tilin nimi", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Virheellinen numero, muoto on xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Virheellinen numero, muoto on: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Virheellinen PIN-koodi", + "Invoice": "Lasku", + "Invoices": "Laskut", + "Latest transactions": "Viimeisimmät tilitapahtumat", + "Loading invoices": "Ladataan laskuja", + "Loading transactions": "Ladataan tilitapahtumia", + "Loading {{name}} view ..": "Ladataan näkymää {{name}}", + "Message": "Viesti", + "Name": "Nimi", + "New account name": "Uusi tilin nimi", + "New balance": "Uusi saldo", + "New cash": "Uusi käteisen määrä", + "New pin": "Uusi PIN-koodi", + "No account found to receive transfer.": "Tiliä ei löytynyt siirtoa varten.", + "No invoices, yet.": "Ei laskuja, vielä.", + "No users found.": "Käyttäjiä ei löytynyt.", + "Old pin": "Vanha PIN-koodi", + "Open account": "Avaa tili", + "Open bank": "Avaa pankki", + "Opened a new account": "Uusi tili avattu", + "Order a new card": "Tilaa uusi pankkikortti", + "Order new card": "Tilaa uusi pankkikortti", + "Ordered new card": "Tilasit uuden pankkikortin", + "PERSONAL": "HENKILÖKOHTAINEN", + "Paid": "Maksettu", + "Paid invoice": "Maksettu lasku", + "Paid outgoing invoice to: {{to}}": "Maksettu lähtevä lasku: {{to}}", + "Pay invoice": "Maksa lasku", + "Pay your bills": "Maksa laskusi", + "Personal": "Henkilökohtainen", + "Personal account": "Henkilökohtainen tili", + "Pins do not match": "PIN-koodit eivät täsmää", + "Quick withdraw": "Nosta", + "Received incoming invoice from: {{from}}": "Lasku vastaanotettu: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Jäljellä olevat rahat tililtä {{deletedAccount}}", + "Remove user": "Poista käyttäjä", + "Remove user from a shared account": "Poista käyttäjä jaetulta tililtä", + "Remove user from account": "Poista käyttäjä tililtä", + "Rename": "Nimeä uudelleen", + "Rename account": "Uudelleennimeä tili", + "Report": "Raportti", + "Role": "Rooli", + "SHARED": "JAETTU", + "Search for a user": "Etsi käyttäjää", + "Select a card": "Valitse pankkikortti", + "Select a card to handle, or order a new one.": "Valitse muokattava pankkikortti tai tilaa uusi", + "Select a user": "Valitse käyttäjä", + "Select account": "Valitse tili", + "Set account to default": "Aseta oletustiliksi", + "Shared": "Jaettu", + "Shared account": "Jaettu tili", + "Shared account actions": "Jaetun tilin toiminnot", + "Shared account cannot be default account": "Jaettu tili ei voi olla oletustili", + "Something went wrong": "Jotain meni pieleen", + "Something went wrong, please try again later.": "Jotain meni pieleen, yritä myöhemmin uudelleen.", + "Successfully blocked the card.": "Kuoletit pankkikortin onnistuneesti", + "Successfully deleted the card.": "Poistit pankkikortin onnistuneesti", + "Successfully deposited {{amount}} into selected account.": "Talletettu {{amount}} onnistuneesti valitulle tilille", + "Successfully transferred funds": "Rahat siirretty", + "Successfully transferred {{amount}}.": "Siirretty {{amount}}.", + "Successfully updated pin.": "Päivitit onnistuneesti PIN-koodin", + "Successfully withdrew {{amount}}.": "Nostettu {{amount}}.", + "Summary": "Yhteenveto", + "The card is blocked": "Pankkikortti on kuoletettu", + "The specified number does not match an existing account": "Tilinumero ei vastaa olemassa olevaa tiliä", + "There are currently no unpaid invoices!": "Ei maksamattomia laskuja!", + "There is nothing to see here.": "Täällä ei ole mitään nähtävää.", + "This is a shared account": "Tämä on jaettu tili", + "This should be the default account": "Tämän pitäisi olla oletustili", + "This will take cash from your person and insert into selected bank account": "Tämä ottaa sinulta käteistä ja lisää ne valitulle tilille.", + "To account": "Tilille", + "Total": "Yhteensä", + "Total balance": "Kokonaissaldo", + "TransactionType.Incoming": "Saapuva", + "TransactionType.Outgoing": "Lähtevä", + "TransactionType.Transfer": "Siirto", + "Transactions": "Tilitapahtumat", + "Transfer": "Siirrä", + "Transfer between internal & external accounts.": "Siirto sisäisten ja ulkoisten tilien välillä.", + "Transfer funds": "Siirrä rahaa", + "Unpaid invoices": "Maksamattomat laskut", + "Update pin": "Päivitä PIN-koodi", + "View all": "Näytä kaikki", + "Weekly summary": "Viikkoyhteenveto", + "Withdraw": "Nosta", + "Withdrew {{amount}} from account.": "Nostettu {{amount}} tililtä.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Nostit {{amount}} pankkiautomaatilta, kortilla {{cardNumber}}", + "Withdrew {{amount}} from an ATM.": "Nostit {{amount}} pankkiautomaatilta", + "You already have access to this account. Use internal transfer instead": "Sinulla on pääsy tähän tiliin. Käytä sisäistä siirtoa", + "You can create more accounts by visiting the nearest bank ..": "Voit luoda uuden tilin käymällä lähimmässä pankissa", + "You cannot delete the default account": "Oletustiliä ei voi poistaa", + "Your accounts": "Omat tilit", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "omistaja", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} / {{total}}" +} \ No newline at end of file diff --git a/locales/fr/default.json b/locales/fr/default.json new file mode 100644 index 00000000..0c937ac5 --- /dev/null +++ b/locales/fr/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Compte", + "Account balance": "Solde du compte", + "Account name": "Nom du compte", + "Account name is required": "Le nom du compte est requis", + "Account name is too long": "Le nom du compte est trop long", + "Account users": "Utilisateurs du compte", + "Accounts": "Comptes", + "Actions": "Actions", + "Add external account": "Ajouter un compte externe", + "Add user": "Ajouter un utilisateur", + "Add user to account": "Ajouter un utilisateur au compte", + "Add user to shared account": "Ajouter un utilisateur au compte partagé", + "Admin": "Administrateur", + "Admin role required": "Rôle d'administrateur requis", + "Amount": "Montant", + "An account for the specified number already exists": "Un compte pour le numéro spécifié existe déjà", + "Are you sure you want to block this card? This action cannot be undone.": "Êtes-vous sûr de vouloir bloquer cette carte ? Cette action ne peut pas être annulée.", + "Are you sure you want to delete this card? This action cannot be undone.": "Êtes-vous sûr de vouloir supprimer cette carte ? Cette action est irréversible.", + "Balance": "Solde", + "Block the card": "Bloquer la carte", + "Block, update pin and more.": "Bloquez, mettez à jour le code PIN, etc.", + "Blocking card": "Blocage de la carte", + "CREATE": "CRÉER", + "Cancel": "Annuler", + "Card holder": "Titulaire de la carte", + "Cards": "Cartes", + "Choose role": "Choisir rôle", + "Clearing- & account number": "Numéro de compensation & de compte", + "Clearing- & account number is required": "Les numéro de compensation et de compte sont requis", + "Confirm new pin": "Confirmer le nouveau code PIN", + "Confirm pin": "Confirmer le code PIN", + "Contributor": "Contributeur", + "Contributors cannot use money in shared accounts.": "Les contributeurs ne peuvent pas utiliser l'argent des comptes partagés.", + "Copy account number": "Copier le numéro de compte", + "Cost": "Coût", + "Current cash": "Solde Cash", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:mm", + "Danger zone": "Zone de danger", + "Dashboard": "Aperçu", + "Default": "Défaut", + "Default account": "Compte par défaut", + "Delete account": "Supprimer le compte", + "Delete the card": "Supprimer la carte", + "Deleting card": "Suppression de la carte", + "Deposit": "Dépôt", + "Deposited {{amount}} into account.": "Déposé {{amount}} sur le compte.", + "Enter card pin to block the card.": "Entrez le code PIN de la carte pour la bloquer.", + "Enter pin": "Saisir le code PIN", + "Expense": "Dépense", + "Expenses": "Dépenses", + "Expires": "Date d'expiration", + "External account name": "Nom du compte externe", + "External accounts": "Comptes externes", + "External transfer": "Virement externe", + "Failed to create new account": "Impossible de créer un nouveau compte", + "Fetching data ..": "Récupération de données", + "Filters": "Filtres", + "From account": "Du compte", + "Funds will be transfered to default account.": "Les fonds seront transférés sur le compte par défaut.", + "General": "Général", + "Handle accounts": "Gérer les comptes", + "Handle cards for your accounts": "Gérez les cartes de vos comptes", + "Handle your unpaid invoices": "Gérez vos factures impayées", + "Home": "Accueil", + "Income": "Revenu", + "Insufficent funds": "Fonds insuffisants", + "Internal transfer": "Transfert interne", + "Invalid account name": "Nom de compte invalide", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Numéro invalide, format xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Numéro invalide, format : xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Code PIN invalide", + "Invoice": "Facture", + "Invoices": "Factures", + "Latest transactions": "Dernières transactions", + "Loading invoices": "Chargement des factures", + "Loading transactions": "Chargement transactions", + "Loading {{name}} view ..": "Chargement de la vue {{name}}..", + "Message": "Message", + "Name": "Nom", + "New account name": "Nouveau nom de compte", + "New balance": "Nouveau solde", + "New cash": "Nouvelles liquidités", + "New pin": "Nouveau code PIN", + "No account found to receive transfer.": "Aucun compte n'a été trouvé pour recevoir le virement.", + "No invoices, yet.": "Aucune facture pour l'instant.", + "No users found.": "Aucun utilisateur trouvé", + "Old pin": "Ancien code PIN", + "Open account": "Créer un compte", + "Open bank": "Accéder à la banque", + "Opened a new account": "Nouveau compte ouvert", + "Order a new card": "Commander une nouvelle carte", + "Order new card": "Commander une nouvelle carte", + "Ordered new card": "Nouvelle carte commandée", + "PERSONAL": "PERSONNEL", + "Paid": "Payé", + "Paid invoice": "Facture payée", + "Paid outgoing invoice to: {{to}}": "Facture sortante payée à : {{to}}", + "Pay invoice": "Payer la facture", + "Pay your bills": "Payez vos factures", + "Personal": "Personnel", + "Personal account": "Compte personnel", + "Pins do not match": "Les codes PIN ne correspondent pas.", + "Quick withdraw": "Retrait rapide", + "Received incoming invoice from: {{from}}": "Facture reçue de : {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Fonds restants de « {{deletedAccount}} »", + "Remove user": "Retirer l'utilisateur", + "Remove user from a shared account": "Retirer un utilisateur d'un compte partagé", + "Remove user from account": "Retirer un utilisateur du compte", + "Rename": "Renommer", + "Rename account": "Renommer le compte", + "Report": "Rapport", + "Role": "Rôle", + "SHARED": "PARTAGÉ", + "Search for a user": "Chercher un utilisateur", + "Select a card": "Sélectionnez une carte", + "Select a card to handle, or order a new one.": "Sélectionnez une carte à gérer ou commandez-en une nouvelle.", + "Select a user": "Sélectionner un utilisateur", + "Select account": "Sélectionner un compte", + "Set account to default": "Définir comme compte par défaut", + "Shared": "Partagé", + "Shared account": "Compte partagé", + "Shared account actions": "Actions sur le compte partagé", + "Shared account cannot be default account": "Le compte partagé ne peut être un compte par défaut", + "Something went wrong": "Un problème est survenu", + "Something went wrong, please try again later.": "Une erreur est survenue. Veuillez réessayer plus tard.", + "Successfully blocked the card.": "Carte bloquée avec succès.", + "Successfully deleted the card.": "La carte a été supprimée avec succès.", + "Successfully deposited {{amount}} into selected account.": "{{amount}} déposé avec succès sur le compte sélectionné.", + "Successfully transferred funds": "Fonds transférés avec succès", + "Successfully transferred {{amount}}.": "Transfert de {{amount}} réussi.", + "Successfully updated pin.": "Code PIN mis à jour.", + "Successfully withdrew {{amount}}.": "Retrait de {{amount}} réussi.", + "Summary": "Résumé", + "The card is blocked": "La carte est bloquée", + "The specified number does not match an existing account": "Le numéro spécifié ne correspond à aucun compte existant", + "There are currently no unpaid invoices!": "Il n'y a aucune facture impayée!", + "There is nothing to see here.": "Il n'y a rien à voir ici.", + "This is a shared account": "C'est un compte partagé", + "This should be the default account": "Ce compte devrait être le compte par défaut", + "This will take cash from your person and insert into selected bank account": "Cela vous prélèvera du cash et le déposera dans le compte bancaire sélectionné", + "To account": "Au compte", + "Total": "Total", + "Total balance": "Solde total", + "TransactionType.Incoming": "Transaction entrante", + "TransactionType.Outgoing": "Transaction sortante", + "TransactionType.Transfer": "Transfert", + "Transactions": "Transactions", + "Transfer": "Transférer", + "Transfer between internal & external accounts.": "Transfert entre comptes internes et externes.", + "Transfer funds": "Transférer des fonds", + "Unpaid invoices": "Factures impayées", + "Update pin": "Mettre à jour le code PIN", + "View all": "Voir tout", + "Weekly summary": "Résumé hebdomadaire", + "Withdraw": "Retrait", + "Withdrew {{amount}} from account.": "{{amount}} retiré du compte.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Retrait de {{amount}} d'un ATM avec la carte {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Retrait de {{amount}} d'un ATM.", + "You already have access to this account. Use internal transfer instead": "Vous avez déjà accès à ce compte. Utilisez plutôt le transfert interne", + "You can create more accounts by visiting the nearest bank ..": "Vous pouvez créer plus de comptes en vous rendant dans la banque la plus proche.", + "You cannot delete the default account": "Vous ne pouvez pas supprimer le compte par défaut", + "Your accounts": "Vos comptes", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "propriétaire", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} de {{total}}" +} \ No newline at end of file diff --git a/locales/hr/default.json b/locales/hr/default.json new file mode 100644 index 00000000..d595035c --- /dev/null +++ b/locales/hr/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Račun", + "Account balance": "Stanje na Računu", + "Account name": "Vlasnik Računa", + "Account name is required": "Potreban je Vlasnik Računa", + "Account name is too long": "Naziv računa je predug", + "Account users": "Korisnici Računa", + "Accounts": "Računi", + "Actions": "Actions", + "Add external account": "Dodaj Vanjski Račun", + "Add user": "Dodaj Korisnika", + "Add user to account": "Dodaj Korisnika na Račun", + "Add user to shared account": "Dodaj Korisnika na Poslovni Račun", + "Admin": "Administrator", + "Admin role required": "Potrebna je uloga administatora", + "Amount": "Iznos", + "An account for the specified number already exists": "Račun za navedeni broj već postoji", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Saldo", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "Izradi", + "Cancel": "Otkaži", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Odaberite ulogu", + "Clearing- & account number": "Klirinški i broj računa", + "Clearing- & account number is required": "Klirinški i broj računa je potreban", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Prinosnik", + "Contributors cannot use money in shared accounts.": "Prinosnici ne mogu koristiti novac na zajedničkim računima.", + "Copy account number": "Kopiraj broj računa", + "Cost": "Cijena", + "Current cash": "Tekuća gotovina", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:mm A", + "Danger zone": "Opasna zona", + "Dashboard": "Nadzorna ploča", + "Default": "Zadano", + "Default account": "Zadani račun", + "Delete account": "Izbriši račun", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Uplati", + "Deposited {{amount}} into account.": "Uplaćeno {{amount}} na račun.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Trošak", + "Expenses": "Trošak", + "Expires": "Ističe", + "External account name": "Naziv vanjskog računa", + "External accounts": "Vanjski Računi", + "External transfer": "Vanjski Prijenos", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Dohvaćanje podataka ..", + "Filters": "Filtar", + "From account": "S računa", + "Funds will be transfered to default account.": "Sredstva će biti prebačena na zadani račun.", + "General": "Općenito", + "Handle accounts": "Vodi račune", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Riješite svoje neplaćene fakture", + "Home": "Početni zaslon", + "Income": "Prihod", + "Insufficent funds": "Nedovoljno sredstava", + "Internal transfer": "Interni prijenos", + "Invalid account name": "Nevažeći naziv računa", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Nevažeći broj, format je xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Nevažeći broj, format je: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Faktura", + "Invoices": "Fakture", + "Latest transactions": "Posljednja transakcija", + "Loading invoices": "Učitavanje faktura", + "Loading transactions": "Učitavanje transakcija", + "Loading {{name}} view ..": "Učitavanje {{name}} pogledaj ..", + "Message": "Poruka", + "Name": "Ime", + "New account name": "Novo ime računa", + "New balance": "Novi saldo", + "New cash": "Nova gotovina", + "New pin": "New pin", + "No account found to receive transfer.": "Nije pronađen nijedan račun za primanje prijenosa.", + "No invoices, yet.": "Nema faktura, još.", + "No users found.": "Korisnik nije pronađen.", + "Old pin": "Old pin", + "Open account": "Otvori račun", + "Open bank": "Otvori banku", + "Opened a new account": "Otvorili ste novi račun", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "OSOBNO", + "Paid": "Plaćeno", + "Paid invoice": "Plaćene fakture", + "Paid outgoing invoice to: {{to}}": "Plaćena izlazna faktura na: {{to}}", + "Pay invoice": "Plati fakturu", + "Pay your bills": "Platite svoje račune", + "Personal": "Osobno", + "Personal account": "Osobni račun", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Brzo podizanje", + "Received incoming invoice from: {{from}}": "Primljena dolazna faktura od: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Preostala sredstva iz \"{{deletedAccount}}\"", + "Remove user": "Ukloni korisnika", + "Remove user from a shared account": "Ukloni korisnika iz zajedničkog računa", + "Remove user from account": "Ukloni korisnika sa računa", + "Rename": "Preimenuj", + "Rename account": "Preimenuj račun", + "Report": "Prijavi", + "Role": "Uloga", + "SHARED": "DIJELJEN", + "Search for a user": "Pretraži korisnika", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Odaberite korisnika", + "Select account": "Izaberi račun", + "Set account to default": "Postavite račun na zadani", + "Shared": "Dijeljen", + "Shared account": "Dijeljen račun", + "Shared account actions": "Radnje dijeljenog računa", + "Shared account cannot be default account": "Zajednički račun ne može biti zadani račun", + "Something went wrong": "Something went wrong", + "Something went wrong, please try again later.": "Nešto je pošlo po zlu. Molimo pokušajte ponovo kasnije.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Uspješno uplaćeno {{amount}} na odabrani račun", + "Successfully transferred funds": "Sredstva su uspješno prenesena", + "Successfully transferred {{amount}}.": "Uspješno prenesno {{amount}}", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Uspješno podignuto {{amount}}.", + "Summary": "Summary", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "Navedeni broj ne odgovara postojećem računu", + "There are currently no unpaid invoices!": "Trenutno nema neplaćenih faktura!", + "There is nothing to see here.": "Ovdje se nema što vidjeti.", + "This is a shared account": "Ovo je zajednički račun", + "This should be the default account": "Ovo bi trebao biti zadani račun", + "This will take cash from your person and insert into selected bank account": "Ovo će uplatiti vašu gotovinu i uplatiti je na odabrani bankovni račun", + "To account": "Na račun", + "Total": "Ukupno", + "Total balance": "Ukupni saldo", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transakcija", + "Transfer": "Prijenos", + "Transfer between internal & external accounts.": "Prijenos između internih i eksternih računa.", + "Transfer funds": "Prenesi novčana sredstva", + "Unpaid invoices": "Ne plaćene fakture", + "Update pin": "Update pin", + "View all": "Pogledaj sve", + "Weekly summary": "Tjedni sažetak", + "Withdraw": "Podigni", + "Withdrew {{amount}} from account.": "Podigni {{amount}} sa računa.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "Već imate pristup ovom računu. Umjesto toga upotrijebite interni prijenos", + "You can create more accounts by visiting the nearest bank ..": "Više računa možete otvoriti posjetom najbližoj banci..", + "You cannot delete the default account": "Ne možete izbrisati zadani račun", + "Your accounts": "Tvoji računi", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Vlasnik", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} od {{total}}" +} \ No newline at end of file diff --git a/locales/hu/default.json b/locales/hu/default.json new file mode 100644 index 00000000..08f8233d --- /dev/null +++ b/locales/hu/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Bankszámla", + "Account balance": "Számlaegyenleg", + "Account name": "Számla neve", + "Account name is required": "Számlának kötelező nevet adni!", + "Account name is too long": "Számla neve túl hosszú!", + "Account users": "Fiók felhasználók", + "Accounts": "Bankszámlák", + "Actions": "Műveletek", + "Add external account": "Külső bankszámla megadása", + "Add user": "Felhasználó hozzáadása", + "Add user to account": "Felhasználó hozzáadása bankszámlához", + "Add user to shared account": "Felhasználó hozzáaadása megosztott bankszámlához", + "Admin": "Admin", + "Admin role required": "Admin rang szükséges ehhez a művelethez!", + "Amount": "Összeg", + "An account for the specified number already exists": "Egy számla már létezik ezzel a számmal", + "Are you sure you want to block this card? This action cannot be undone.": "Biztos leakarod zárolni ezt a kártyát? Ez a művelet nem vonható vissza.", + "Are you sure you want to delete this card? This action cannot be undone.": "Biztosan törölni szeretné ezt a kártyát? Ezt a műveletet nem lehet visszavonni.", + "Balance": "Egyenleg", + "Block the card": "Bankkártya letiltása", + "Block, update pin and more.": "Letiltás, PIN változtatás, stb.", + "Blocking card": "Bankkártya letiltása", + "CREATE": "LÉTREHOZ", + "Cancel": "Mégse", + "Card holder": "Kártyatulajdonos", + "Cards": "Kártyák", + "Choose role": "Válassz szabályt", + "Clearing- & account number": "Elszámolási- és számlaszám", + "Clearing- & account number is required": "Elszámolási- és számlaszám megadása kötelező", + "Confirm new pin": "Új PIN-kód megerősítése", + "Confirm pin": "PIN-kód megerősítése", + "Contributor": "Közreműködők", + "Contributors cannot use money in shared accounts.": "A közreműködők nem kezelhetnek pénzt megosztott számlákon.", + "Copy account number": "Számlaszám másolása", + "Cost": "Költség", + "Current cash": "Aktuális készpénz", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm A", + "Danger zone": "Veszélyes művelet", + "Dashboard": "Irányítópult", + "Default": "Alapértelmezett", + "Default account": "Alapértelmezett számla", + "Delete account": "Számla törlése", + "Delete the card": "Kártya törlése", + "Deleting card": "Kártya törlése…", + "Deposit": "Betét", + "Deposited {{amount}} into account.": "Letétbe helyezve {{amount}} a számlára.", + "Enter card pin to block the card.": "Kártya PIN-kódjának megadása szükséges a kártya leblokkolásához.", + "Enter pin": "PIN-kód megadása", + "Expense": "Kiadás", + "Expenses": "Kiadások", + "Expires": "Lejár", + "External account name": "Külső számla neve", + "External accounts": "Külső számlák", + "External transfer": "Külső átutalás", + "Failed to create new account": "Nem sikerült új számlát létrehozni", + "Fetching data ..": "Adatok lekérése..", + "Filters": "Szűrők", + "From account": "Bankszámláról", + "Funds will be transfered to default account.": "Az összeg átutalásra kerül az alapértelmezett számlára.", + "General": "Általános", + "Handle accounts": "Fiókok kezelése", + "Handle cards for your accounts": "Fiókokhoz tartozó kártyák kezelése", + "Handle your unpaid invoices": "Befizetetlen számlák kezelése", + "Home": "Kezdőlap", + "Income": "Bevétel", + "Insufficent funds": "Nincs elég fedezet", + "Internal transfer": "Belső átutalás", + "Invalid account name": "Érvénytelen fióknév", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Érvénytelen szám, a formátum: xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Érvénytelen szám, a formátum: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Érvénytelen PIN", + "Invoice": "Számla", + "Invoices": "Számlák", + "Latest transactions": "Legutóbbi tranzakciók", + "Loading invoices": "Számlák betöltése", + "Loading transactions": "Tranzakciók betöltése", + "Loading {{name}} view ..": "{{name}} nézet betöltése..", + "Message": "Üzenet", + "Name": "Név", + "New account name": "Új fiók neve", + "New balance": "Új egyenleg", + "New cash": "Új készpénz", + "New pin": "Új PIN", + "No account found to receive transfer.": "Nem található fiók az átutalás fogadására.", + "No invoices, yet.": "Még nincs számla.", + "No users found.": "Nem találhatók felhasználók.", + "Old pin": "Régi PIN", + "Open account": "Fiók nyitása", + "Open bank": "Bank megnyitása", + "Opened a new account": "Nyitott egy új fiókot", + "Order a new card": "Új kártya rendelése", + "Order new card": "Új kártya rendelése", + "Ordered new card": "Új kártya megrendelve", + "PERSONAL": "SZEMÉLYES", + "Paid": "Fizetve", + "Paid invoice": "Fizetett számla", + "Paid outgoing invoice to: {{to}}": "Számla befizetve, kedvezményezett: {{to}}", + "Pay invoice": "Számla befizetése", + "Pay your bills": "Fizesd be számláid", + "Personal": "Személyes", + "Personal account": "Személyes fiók", + "Pins do not match": "A PIN-kódok nem egyeznek", + "Quick withdraw": "Gyors felvétel", + "Received incoming invoice from: {{from}}": "Bejövő számla a következő helyről: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Hátralévő egyenleg a(z) \"{{deletedAccount}}\" fiókról", + "Remove user": "Felhasználó eltávolítása", + "Remove user from a shared account": "Felhasználó eltávolítása megosztott fiókból", + "Remove user from account": "Felhasználó eltávolítása a fiókból", + "Rename": "Átnevezés", + "Rename account": "Fiók átnevezése", + "Report": "Jelentés", + "Role": "Szerepkör", + "SHARED": "MEGOSZTOTT", + "Search for a user": "Felhasználó keresése", + "Select a card": "Válasszon egy kártyát", + "Select a card to handle, or order a new one.": "Válassza ki a kezelni kívánt kártyát, vagy rendeljen újat.", + "Select a user": "Válasszon ki egy felhasználót", + "Select account": "Fiók kiválasztása", + "Set account to default": "Fiók beállítása alapértelmezettre", + "Shared": "Megosztott", + "Shared account": "Megosztott fiók", + "Shared account actions": "Megosztott fiók műveletek", + "Shared account cannot be default account": "A megosztott fiók nem lehet alapértelmezett fiók", + "Something went wrong": "Valami hiba történt", + "Something went wrong, please try again later.": "Valami hiba történt. Kérjük próbálja meg később.", + "Successfully blocked the card.": "Sikeresen blokkolta a kártyát.", + "Successfully deleted the card.": "Sikeresen törölte a kártyát.", + "Successfully deposited {{amount}} into selected account.": "Sikeresen letétbe helyezett {{amount}} összeget a kiválasztott fiókba.", + "Successfully transferred funds": "Összeg sikeresen átutalva", + "Successfully transferred {{amount}}.": "{{amount}} sikeresen átutalva.", + "Successfully updated pin.": "PIN sikeresen frissítve.", + "Successfully withdrew {{amount}}.": "{{amount}} sikeresen felvéve.", + "Summary": "Összegzés", + "The card is blocked": "A kártya blokkolva van", + "The specified number does not match an existing account": "A megadott szám nem egyezik meg egyetlen meglévő fiókkal sem", + "There are currently no unpaid invoices!": "Jelenleg nincsenek kifizetetlen számlák!", + "There is nothing to see here.": "Nincs itt semmi látnivaló.", + "This is a shared account": "Ez egy megosztott fiók", + "This should be the default account": "Ez legyen az alapértelmezett fiók", + "This will take cash from your person and insert into selected bank account": "Ezzel készpénzt fizethet be a kiválasztott fiókba", + "To account": "Fiókba", + "Total": "Összesen", + "Total balance": "Teljes egyenleg", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Tranzakciók", + "Transfer": "Átutalás", + "Transfer between internal & external accounts.": "Átutalás a belső és külső számlák között.", + "Transfer funds": "Összeg átutalása", + "Unpaid invoices": "Fizetetlen számlák", + "Update pin": "PIN frissítése", + "View all": "Összes megtekintése", + "Weekly summary": "Heti összesítő", + "Withdraw": "Felvétel", + "Withdrew {{amount}} from account.": "Felvett {{amount}} összeget a fiókból.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Felvett {{amount}} összeget egy ATM-ből az alábbi kártyával: {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Felvett {{amount}} összeget egy ATM-ből.", + "You already have access to this account. Use internal transfer instead": "Már hozzáfér ehhez a fiókhoz, használja a belső átutalást", + "You can create more accounts by visiting the nearest bank ..": "További fiókokat hozhat létre a legközelebbi bankfiók meglátogatásával ..", + "You cannot delete the default account": "Nem törölheti az alapértelmezett fiókot", + "Your accounts": "Az Ön fiókjai", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "tulajdonos", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} / {{total}}" +} \ No newline at end of file diff --git a/locales/index.ts b/locales/index.ts new file mode 100644 index 00000000..9f5d88e3 --- /dev/null +++ b/locales/index.ts @@ -0,0 +1,43 @@ +import bg from './bg/default.json'; +import cs from './cs/default.json'; +import da from './da/default.json'; +import de from './de/default.json'; +import en from './en/default.json'; +import es from './es/default.json'; +import fi from './fi/default.json'; +import fr from './fr/default.json'; +import hr from './hr/default.json'; +import hu from './hu/default.json'; +import it from './it/default.json'; +import itMT from './it-MT/default.json'; +import lt from './lt/default.json'; +import nb from './nb/default.json'; +import nl from './nl/default.json'; +import pl from './pl/default.json'; +import pt from './pt/default.json'; +import ptBR from './pt-BR/default.json'; +import sv from './sv/default.json'; +import tr from './tr/default.json'; + +export default { + bg, + cs, + da, + de, + en, + es, + fi, + fr, + hr, + hu, + it, + itMT, + lt, + nb, + nl, + pl, + pt, + ptBR, + sv, + tr, +}; diff --git a/locales/it-MT/default.json b/locales/it-MT/default.json new file mode 100644 index 00000000..c9aad14e --- /dev/null +++ b/locales/it-MT/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Account", + "Account balance": "Account balance", + "Account name": "Account name", + "Account name is required": "Account name is required", + "Account name is too long": "Account name is too long", + "Account users": "Account users", + "Accounts": "Accounts", + "Actions": "Actions", + "Add external account": "Add external account", + "Add user": "Add user", + "Add user to account": "Add user to account", + "Add user to shared account": "Add user to shared account", + "Admin": "Admin", + "Admin role required": "Admin role required", + "Amount": "Amount", + "An account for the specified number already exists": "An account for the specified number already exists", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Balance", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "CREATE", + "Cancel": "Cancel", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Choose role", + "Clearing- & account number": "Clearing- & account number", + "Clearing- & account number is required": "Clearing- & account number is required", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Contributor", + "Contributors cannot use money in shared accounts.": "Contributors cannot use money in shared accounts.", + "Copy account number": "Copy account number", + "Cost": "Cost", + "Current cash": "Current cash", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm A", + "Danger zone": "Danger zone", + "Dashboard": "Dashboard", + "Default": "Default", + "Default account": "Default account", + "Delete account": "Delete account", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Deposit", + "Deposited {{amount}} into account.": "Deposited {{amount}} into account.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Expense", + "Expenses": "Expenses", + "Expires": "Expires", + "External account name": "External account name", + "External accounts": "External accounts", + "External transfer": "External transfer", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Fetching data ..", + "Filters": "Filters", + "From account": "From account", + "Funds will be transfered to default account.": "Funds will be transfered to default account.", + "General": "General", + "Handle accounts": "Handle accounts", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Handle your unpaid invoices", + "Home": "Home", + "Income": "Income", + "Insufficent funds": "Insufficent funds", + "Internal transfer": "Internal transfer", + "Invalid account name": "Invalid account name", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Invalid number, format is xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Invalid number, format is: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Invoice", + "Invoices": "Invoices", + "Latest transactions": "Latest transactions", + "Loading invoices": "Loading invoices", + "Loading transactions": "Loading transactions", + "Loading {{name}} view ..": "Loading {{name}} view ..", + "Message": "Message", + "Name": "Name", + "New account name": "New account name", + "New balance": "New balance", + "New cash": "New cash", + "New pin": "New pin", + "No account found to receive transfer.": "No account found to receive transfer.", + "No invoices, yet.": "No invoices, yet.", + "No users found.": "No users found.", + "Old pin": "Old pin", + "Open account": "Open account", + "Open bank": "Open bank", + "Opened a new account": "Opened a new account", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "PERSONAL", + "Paid": "Paid", + "Paid invoice": "Paid invoice", + "Paid outgoing invoice to: {{to}}": "Paid outgoing invoice to: {{to}}", + "Pay invoice": "Pay invoice", + "Pay your bills": "Pay your bills", + "Personal": "Personal", + "Personal account": "Personal account", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Quick withdraw", + "Received incoming invoice from: {{from}}": "Received incoming invoice from: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Remaining funds from \"{{deletedAccount}}\"", + "Remove user": "Remove user", + "Remove user from a shared account": "Remove user from a shared account", + "Remove user from account": "Remove user from account", + "Rename": "Rename", + "Rename account": "Rename account", + "Report": "Report", + "Role": "Role", + "SHARED": "SHARED", + "Search for a user": "Search for a user", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Select a user", + "Select account": "Select account", + "Set account to default": "Set account to default", + "Shared": "Shared", + "Shared account": "Shared account", + "Shared account actions": "Shared account actions", + "Shared account cannot be default account": "Shared account cannot be default account", + "Something went wrong": "Something went wrong", + "Something went wrong, please try again later.": "Something went wrong, please try again later.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Successfully deposited {{amount}} into selected account.", + "Successfully transferred funds": "Successfully transferred funds", + "Successfully transferred {{amount}}.": "Successfully transferred {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Successfully withdrew {{amount}}.", + "Summary": "Summary", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "The specified number does not match an existing account", + "There are currently no unpaid invoices!": "There are currently no unpaid invoices!", + "There is nothing to see here.": "There is nothing to see here.", + "This is a shared account": "This is a shared account", + "This should be the default account": "This should be the default account", + "This will take cash from your person and insert into selected bank account": "This will take cash from your person and insert into selected bank account", + "To account": "To account", + "Total": "Total", + "Total balance": "Total balance", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transactions", + "Transfer": "Transfer", + "Transfer between internal & external accounts.": "Transfer between internal & external accounts.", + "Transfer funds": "Transfer funds", + "Unpaid invoices": "Unpaid invoices", + "Update pin": "Update pin", + "View all": "View all", + "Weekly summary": "Weekly summary", + "Withdraw": "Withdraw", + "Withdrew {{amount}} from account.": "Withdrew {{amount}} from account.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "You already have access to this account. Use internal transfer instead", + "You can create more accounts by visiting the nearest bank ..": "You can create more accounts by visiting the nearest bank ..", + "You cannot delete the default account": "You cannot delete the default account", + "Your accounts": "Your accounts", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "owner", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} of {{total}}" +} \ No newline at end of file diff --git a/locales/it/default.json b/locales/it/default.json new file mode 100644 index 00000000..9f981ed5 --- /dev/null +++ b/locales/it/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Conto", + "Account balance": "Saldo disponibile", + "Account name": "Nome conto", + "Account name is required": "Nome account richiesto", + "Account name is too long": "Nome account troppo lungo", + "Account users": "Utenti del conto", + "Accounts": "Conti", + "Actions": "Azioni", + "Add external account": "Aggiungi conto esterno", + "Add user": "Aggiungi utente", + "Add user to account": "Aggiungi utente al conto", + "Add user to shared account": "Aggiungi utente al conto condiviso", + "Admin": "Amministratore", + "Admin role required": "Ruolo amministratore richiesto", + "Amount": "Importo", + "An account for the specified number already exists": "Esiste gia un conto con il numero inserito", + "Are you sure you want to block this card? This action cannot be undone.": "Sei sicuro di voler bloccare questa carta? l'operazione non è reversibile", + "Are you sure you want to delete this card? This action cannot be undone.": "Sei sicuro di voler eliminare questa carta? l'operazione non è reversibile", + "Balance": "Saldo", + "Block the card": "Blocca la carta", + "Block, update pin and more.": "Blocca, aggiorna pin e altro", + "Blocking card": "Bloccando la carta", + "CREATE": "CREA", + "Cancel": "Annulla", + "Card holder": "Intestatario carta", + "Cards": "Carte", + "Choose role": "Scegli ruolo", + "Clearing- & account number": "Clearing- & Numero di conto", + "Clearing- & account number is required": "Clearing- & Numero di conto richiesto", + "Confirm new pin": "Conferma nuovo pin", + "Confirm pin": "Conferma pin", + "Contributor": "Collaboratore", + "Contributors cannot use money in shared accounts.": "I collaboratori non possono utilizzare denaro negli account condivisi.", + "Copy account number": "Copia il numero di conto", + "Cost": "Costo", + "Current cash": "Contante disponibile", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY hh:mm", + "Danger zone": "Attenzione", + "Dashboard": "Dashboard generale", + "Default": "Predefinito", + "Default account": "Conto predefinito", + "Delete account": "Elimina account", + "Delete the card": "Elimina carta", + "Deleting card": "Eliminazione della carta", + "Deposit": "Deposito", + "Deposited {{amount}} into account.": "Ha depositato {{amount}} sul conto.", + "Enter card pin to block the card.": "Inserisci il PIN della carta per bloccarla.", + "Enter pin": "Inserisci PIN", + "Expense": "Spesa", + "Expenses": "Spese", + "Expires": "Scade", + "External account name": "Nome del conto esterno", + "External accounts": "Conti esterni", + "External transfer": "Bonifico", + "Failed to create new account": "Creazione di un nuovo conto non riuscita", + "Fetching data ..": "Recupero dei dati ...", + "Filters": "Filtri", + "From account": "Dal conto", + "Funds will be transfered to default account.": "I fondi verranno trasferiti sul conto predefinito.", + "General": "Generale", + "Handle accounts": "Gestisci conti", + "Handle cards for your accounts": "Gestisci le carte per i tuoi account", + "Handle your unpaid invoices": "Gestisci le tue fatture non pagate", + "Home": "Home", + "Income": "Entrate", + "Insufficent funds": "Fondi insufficienti", + "Internal transfer": "Giroconto", + "Invalid account name": "Nome conto non valido", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Numero non valido, il formato è xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Numero non valido, il formato è: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Pin non valido", + "Invoice": "Fattura", + "Invoices": "Fatture", + "Latest transactions": "Ultime transazioni", + "Loading invoices": "Caricamento fatture", + "Loading transactions": "Caricamento delle transazioni", + "Loading {{name}} view ..": "Caricamento della visualizzazione di {{name}}..", + "Message": "Messaggio", + "Name": "Nome", + "New account name": "Nuovo nome conto", + "New balance": "Nuovo saldo", + "New cash": "Nuovi contanti", + "New pin": "Nuovo PIN", + "No account found to receive transfer.": "Nessun contro trovato per ricevere il trasferimento.", + "No invoices, yet.": "Ancora nessuna fattura.", + "No users found.": "Nessun utente trovato.", + "Old pin": "Vecchio pin", + "Open account": "Apri conto", + "Open bank": "Apri banca", + "Opened a new account": "Hai aperto un nuovo account", + "Order a new card": "Ordina una nuova carta", + "Order new card": "Ordina una nuova carta", + "Ordered new card": "Ho ordinato una nuova carta", + "PERSONAL": "PERSONALE", + "Paid": "Pagata", + "Paid invoice": "Fattura pagata", + "Paid outgoing invoice to: {{to}}": "Fattura pagata a: {{to}}", + "Pay invoice": "Paga fattura", + "Pay your bills": "Paga le tue fatture", + "Personal": "Personale", + "Personal account": "Conto personale", + "Pins do not match": "I pin non corrispondono", + "Quick withdraw": "Prelievo rapido", + "Received incoming invoice from: {{from}}": "Fattura ricevuta da: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Fondi rimanenti da «{{deletedAccount}}»", + "Remove user": "Rimuovi utente", + "Remove user from a shared account": "Rimuovere un utente da un conto condiviso", + "Remove user from account": "Rimuovi utente dal conto", + "Rename": "Rinomina", + "Rename account": "Rinomina conto", + "Report": "Segnala", + "Role": "Ruolo", + "SHARED": "CONDIVISO", + "Search for a user": "Cerca utente", + "Select a card": "Seleziona carta", + "Select a card to handle, or order a new one.": "Seleziona una carta da gestire o ordinane una nuova.", + "Select a user": "Seleziona utente", + "Select account": "Seleziona conto", + "Set account to default": "Imposta il conto come predefinito", + "Shared": "Condiviso", + "Shared account": "Conto condiviso", + "Shared account actions": "Azioni del conto condiviso", + "Shared account cannot be default account": "Il conto condiviso non può essere un conto predefinito", + "Something went wrong": "Qualcosa è andato storto", + "Something went wrong, please try again later.": "Qualcosa è andato storto. Ti preghiamo di riprovare più tardi.", + "Successfully blocked the card.": "La carta è stata bloccata con successo.", + "Successfully deleted the card.": "La carta è stata eliminata con successo.", + "Successfully deposited {{amount}} into selected account.": "Depositato con successo {{amount}} sul conto selezionato.", + "Successfully transferred funds": "Fondi trasferiti con successo", + "Successfully transferred {{amount}}.": "Trasferito con successo {{amount}}.", + "Successfully updated pin.": "PIN aggiornato con successo.", + "Successfully withdrew {{amount}}.": "Ritirato con successo {{amount}}.", + "Summary": "Riepilogo", + "The card is blocked": "La carta è bloccata", + "The specified number does not match an existing account": "Il numero specificato non corrisponde a un conto esistente", + "There are currently no unpaid invoices!": "Al momento non ci sono fatture non pagate!", + "There is nothing to see here.": "Non c'è niente da vedere qui.", + "This is a shared account": "Questo è un conto condiviso", + "This should be the default account": "Questo dovrebbe essere il conto predefinito", + "This will take cash from your person and insert into selected bank account": "Questo preleva contanti dalla tua persona e li inserirà nel conto bancario selezionato", + "To account": "Al conto:", + "Total": "Totale", + "Total balance": "Saldo totale", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transazioni", + "Transfer": "Trasferimento", + "Transfer between internal & external accounts.": "Trasferimento tra conti interni ed esterni.", + "Transfer funds": "Trasferisci fondi", + "Unpaid invoices": "Fatture non pagate", + "Update pin": "Aggiorna pin", + "View all": "Visualizza tutto", + "Weekly summary": "Riepilogo settimanale", + "Withdraw": "Prelievo", + "Withdrew {{amount}} from account.": "Ha prelevato {{amount}} dal conto.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Ha prelevato {{amount}} da un bancomat con carta {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Ha prelevato {{amount}} da un bancomat.", + "You already have access to this account. Use internal transfer instead": "Hai già accesso a questo conto. Usa invece il giroconto", + "You can create more accounts by visiting the nearest bank ..": "Puoi creare altri conti visitando la banca più vicina.", + "You cannot delete the default account": "Non è possibile eliminare l'account predefinito", + "Your accounts": "I tuoi conti", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "proprietario", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} di {{total}}" +} \ No newline at end of file diff --git a/locales/lt/default.json b/locales/lt/default.json new file mode 100644 index 00000000..225bd339 --- /dev/null +++ b/locales/lt/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Sąskaita", + "Account balance": "Sąskaitos balansas", + "Account name": "Paskyros pavadinimas", + "Account name is required": "Būtinas paskyros pavadinimas", + "Account name is too long": "Paskyros pavadinimas per ilgas", + "Account users": "Paskyros naudotojai", + "Accounts": "Paskyros", + "Actions": "Actions", + "Add external account": "Pridėti išorinę paskyrą", + "Add user": "Pridėti naudotoją", + "Add user to account": "Pridėti naudotoją prie paskyros", + "Add user to shared account": "Pridėti naudotoją prie bendrinamos paskyros", + "Admin": "Administratorius", + "Admin role required": "Reikalingas administratoriaus vaidmuo", + "Amount": "Kiekis", + "An account for the specified number already exists": "Paskyra nurodytu numeriu jau yra", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Likutis", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "SUKURTI", + "Cancel": "Atšaukti", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Pasirinkite vaidmenį", + "Clearing- & account number": "Kliringo ir sąskaitos numeris", + "Clearing- & account number is required": "Reikalingas kliringo ir sąskaitos numeris", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Bendraautoris", + "Contributors cannot use money in shared accounts.": "Bendraautoriai negali naudoti pinigų bendrose sąskaitose.", + "Copy account number": "Nukopijuoti sąskaitos numerį", + "Cost": "Kaina", + "Current cash": "Grynieji pinigai", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm A", + "Danger zone": "Pavojaus zona", + "Dashboard": "Pagrindinis", + "Default": "Numatytasis", + "Default account": "Numatytoji paskyra", + "Delete account": "Pašalinti paskyrą", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Įdėti", + "Deposited {{amount}} into account.": "Į sąskaitą įmokėta {{amount}}.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Išlaidos", + "Expenses": "Išlaidos:", + "Expires": "Nebegalios", + "External account name": "Išorinės paskyros pavadinimas", + "External accounts": "Išorinės sąskaitos", + "External transfer": "Išorinis pervedimas", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Gaunami duomenys…", + "Filters": "Filtrai", + "From account": "Iš sąskaitos", + "Funds will be transfered to default account.": "Lėšos bus pervestos į numatytąją sąskaitą.", + "General": "Bendras", + "Handle accounts": "Tvarkyti sąskaitas", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Tvarkykite neapmokėtas sąskaitas faktūras", + "Home": "Pagrindinis", + "Income": "Pajamos", + "Insufficent funds": "Nepakanka lėšų", + "Internal transfer": "Vidinis pervedimas", + "Invalid account name": "Neteisingas paskyros pavadinimas", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Neteisingas numeris, formatas yra xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Neteisingas numeris, formatas: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Sąskaita faktūra", + "Invoices": "Sąskaitos faktūros", + "Latest transactions": "Naujausios operacijos", + "Loading invoices": "Įkeliamos sąskaitos faktūros", + "Loading transactions": "Įkeliamos operacijos", + "Loading {{name}} view ..": "Kraunamas {{name}} vaizdas", + "Message": "Pranešimas", + "Name": "Pavadinimas", + "New account name": "Naujas paskyros pavadinimas", + "New balance": "Naujas balansas", + "New cash": "Nauji grynieji pinigai", + "New pin": "New pin", + "No account found to receive transfer.": "Nerasta jokios paskyros pervedimui gauti.", + "No invoices, yet.": "Sąskaitų faktūrų dar nėra.", + "No users found.": "Nerasta naudotojų", + "Old pin": "Old pin", + "Open account": "Atidaryti sąskaitą", + "Open bank": "Atidaryti banką", + "Opened a new account": "Atidarė naują paskyrą", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "Asmeninė", + "Paid": "Apmokėta", + "Paid invoice": "Apmokėta", + "Paid outgoing invoice to: {{to}}": "Išsiunčiama sąskaita faktūra apmokėta: {{to}}", + "Pay invoice": "Apmokėti sąskaitą faktūrą", + "Pay your bills": "Apmokėti savo sąskaitas faktūras", + "Personal": "Asmeninė", + "Personal account": "Asmeninė paskyra", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Greitas ištraukimas", + "Received incoming invoice from: {{from}}": "Gaunama sąskaita faktūra iš: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Likusios lėšos iš \"{{deletedAccount}}\"", + "Remove user": "Pašalinti vartotoją", + "Remove user from a shared account": "Pašalinti vartotoją iš bendrinamos paskyros", + "Remove user from account": "Pašalinti vartotoją iš paskyros", + "Rename": "Pervadinti", + "Rename account": "Pervardyti paskyrą", + "Report": "Ataskaita", + "Role": "Vaidmuo", + "SHARED": "Bendrinama", + "Search for a user": "Ieškoti vartotojo", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Pasirinkite vartotoją", + "Select account": "Pasirinkti paskyrą", + "Set account to default": "Nustatyti numatytąją paskyrą", + "Shared": "Bendrinama", + "Shared account": "Bendrinama paskyra", + "Shared account actions": "Bendrinami paskyros veiksmai", + "Shared account cannot be default account": "Bendrinama paskyra negali būti numatytoji paskyra", + "Something went wrong": "Kažkas nepavyko", + "Something went wrong, please try again later.": "Įvyko klaida. Bandykite dar kartą vėliau.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Sėkmingai įnešėte {{amount}} į pasirinktą paskyrą.", + "Successfully transferred funds": "Lėšos sėkmingai pervestos", + "Successfully transferred {{amount}}.": "Sėkmingai pervesta {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Sėkmingai ištrauktos lėšos {{amount}}.", + "Summary": "Suvestinė", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "Nurodytas skaičius neatitinka esamos paskyros", + "There are currently no unpaid invoices!": "Šiuo metu neapmokėtų sąskaitų faktūrų nėra!", + "There is nothing to see here.": "Nėra čia ką žiūrėti.", + "This is a shared account": "Tai bendra paskyra", + "This should be the default account": "Tai turėtų būti numatytoji paskyra", + "This will take cash from your person and insert into selected bank account": "Tai paims pinigus iš jūsų asmens ir įves į pasirinktą banko sąskaitą", + "To account": "į sąskaitą:", + "Total": "Iš viso", + "Total balance": "Bendras likutis", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Operacijos", + "Transfer": "Pervesti", + "Transfer between internal & external accounts.": "Pervedimas tarp vidinių ir išorinių paskyrų.", + "Transfer funds": "Pervesti lėšas", + "Unpaid invoices": "Neapmokėtos sąskaitos faktūros", + "Update pin": "Update pin", + "View all": "Peržiūrėti viską", + "Weekly summary": "Savaitės suvestinė", + "Withdraw": "Išimti", + "Withdrew {{amount}} from account.": "Ištraukėte {{amount}} iš paskyros.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "Jau turite prieigą prie šios paskyros. Vietoj to naudokite vidinį perdavimą", + "You can create more accounts by visiting the nearest bank ..": "Daugiau sąskaitų galite susikurti apsilankę artimiausiame banke ..", + "You cannot delete the default account": "Negalite ištrinti numatytosios paskyros", + "Your accounts": "Jūsų paskyros", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Savininkas", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} iš {{total}}" +} \ No newline at end of file diff --git a/locales/nb/default.json b/locales/nb/default.json new file mode 100644 index 00000000..8d735157 --- /dev/null +++ b/locales/nb/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Konto", + "Account balance": "Saldo", + "Account name": "Kontonavn", + "Account name is required": "Kontonavn er påkrevd", + "Account name is too long": "Kontonavnet er for langt", + "Account users": "Konto brukere", + "Accounts": "Kontoer", + "Actions": "Actions", + "Add external account": "Legg til ekstern konto", + "Add user": "Legg til bruker", + "Add user to account": "Legg til bruker i konto", + "Add user to shared account": "Legg til bruker til delt konto", + "Admin": "Administrator", + "Admin role required": "Administrator rolle kreves", + "Amount": "Beløp", + "An account for the specified number already exists": "Det finnes allerede en konto for det angitte nummeret", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Saldo", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "OPPRETT", + "Cancel": "Avbryt", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Velg en rolle", + "Clearing- & account number": "Clearing- og kontonummer", + "Clearing- & account number is required": "Clearing- og kontonummer er påkrevd", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Bidragsyter", + "Contributors cannot use money in shared accounts.": "Bidragsytere kan ikke bruke penger fra delte kontoer.", + "Copy account number": "Kopier kontonummer", + "Cost": "Kostnad", + "Current cash": "Nåværende kontanter", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:mm A", + "Danger zone": "Faresone", + "Dashboard": "Kontrollpanel", + "Default": "Standard", + "Default account": "Standard konto", + "Delete account": "Slett konto", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Innskudd", + "Deposited {{amount}} into account.": "Satt inn {{amount}} på konto.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Utgift", + "Expenses": "Utgifter", + "Expires": "Utløper", + "External account name": "Ekstern kontonavn", + "External accounts": "Eksterne kontoer", + "External transfer": "Ekstern overføring", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Henter data ..", + "Filters": "Filter", + "From account": "Fra konto", + "Funds will be transfered to default account.": "Midler vil bli overført til standard konto.", + "General": "Generelt", + "Handle accounts": "Kontobehandling", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Håndter dine ubetalte fakturaer", + "Home": "Hjem", + "Income": "Inntekt", + "Insufficent funds": "Utilstrekkelige midler", + "Internal transfer": "Intern overføring", + "Invalid account name": "Ugyldig kontonavn", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Ugyldig nummer, format er xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Ugyldig nummer, format er: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Faktura", + "Invoices": "Fakturaer", + "Latest transactions": "Siste transaksjoner", + "Loading invoices": "Laster inn fakturaer", + "Loading transactions": "Laster inn transaksjoner", + "Loading {{name}} view ..": "Laster inn {{name}} vindu..", + "Message": "Melding", + "Name": "Navn", + "New account name": "Nytt kontonavn", + "New balance": "Ny saldo", + "New cash": "Nye kontanter", + "New pin": "New pin", + "No account found to receive transfer.": "Ingen konto ble funnet for å motta en overføring.", + "No invoices, yet.": "Ingen fakturaer, ennå.", + "No users found.": "Ingen brukere funnet.", + "Old pin": "Old pin", + "Open account": "Åpne konto", + "Open bank": "Åpne Banken", + "Opened a new account": "Åpnet en ny konto", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "PERSONLIG", + "Paid": "Betalt", + "Paid invoice": "Betalt faktura", + "Paid outgoing invoice to: {{to}}": "Betalt utgående faktura til: {{to}}", + "Pay invoice": "Betal faktura", + "Pay your bills": "Betal regningene", + "Personal": "Personlig", + "Personal account": "Personlig konto", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Hurtiguttak", + "Received incoming invoice from: {{from}}": "Mottatt innkommende faktura fra: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Gjenværende midler fra \"«{{deletedAccount}}»\"", + "Remove user": "Fjern bruker", + "Remove user from a shared account": "Fjerne bruker fra en delt konto", + "Remove user from account": "Fjern bruker fra konto", + "Rename": "Endre navn", + "Rename account": "Endre kontonavn", + "Report": "Rapporter", + "Role": "Rolle", + "SHARED": "DELT", + "Search for a user": "Søk etter en bruker", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Velg en bruker", + "Select account": "Velg konto", + "Set account to default": "Sett konto til standard", + "Shared": "Delt", + "Shared account": "Delt konto", + "Shared account actions": "Behandle delt konto", + "Shared account cannot be default account": "Delt konto kan ikke være en standard konto", + "Something went wrong": "Noe gikk galt", + "Something went wrong, please try again later.": "Noe gikk galt, vennligst prøv igjen senere.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Vellykket innskudd på {{amount}} til valgt konto.", + "Successfully transferred funds": "Vellykket overføring av midler", + "Successfully transferred {{amount}}.": "Vellykket overføring av {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Vellykket uttak av {{amount}}.", + "Summary": "Sammendrag", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "Det angitte nummeret samsvarer ikke med en eksisterende konto", + "There are currently no unpaid invoices!": "Det er for øyeblikket ingen ubetalte fakturaer!", + "There is nothing to see here.": "Det er ingenting å se her.", + "This is a shared account": "Dette er en delt konto", + "This should be the default account": "Dette bør være standard konto", + "This will take cash from your person and insert into selected bank account": "Dette vil ta penger fra lommeboken din, og sette inn på valgt bankkonto", + "To account": "Til konto", + "Total": "Total", + "Total balance": "Tilgjengelig saldo", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transaksjoner", + "Transfer": "Overfør", + "Transfer between internal & external accounts.": "Overfør mellom interne og eksterne kontoer.", + "Transfer funds": "Overfør midler", + "Unpaid invoices": "Ubetalte fakturaer", + "Update pin": "Update pin", + "View all": "Vis alle", + "Weekly summary": "Ukentlig sammendrag", + "Withdraw": "Uttak", + "Withdrew {{amount}} from account.": "Beløp {{amount}} ble trukket fra kontoen.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "Du har allerede tilgang til denne kontoen. Bruk intern overføring i stedet", + "You can create more accounts by visiting the nearest bank ..": "Du kan opprette flere kontoer ved å besøke nærmeste bank..", + "You cannot delete the default account": "Du kan ikke slette standard kontoen", + "Your accounts": "Kontoene dine", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "eier", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} of {{total}}" +} \ No newline at end of file diff --git a/locales/nl/default.json b/locales/nl/default.json new file mode 100644 index 00000000..7604b08c --- /dev/null +++ b/locales/nl/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Bankrekening", + "Account balance": "Saldo", + "Account name": "Rekeningnaam", + "Account name is required": "Rekeningnaam is vereist", + "Account name is too long": "Rekeningnaam is te lang", + "Account users": "Gebruikers van de rekening", + "Accounts": "Rekeningen", + "Actions": "Acties", + "Add external account": "Externe rekening toevogen", + "Add user": "Gebruiker toevoegen", + "Add user to account": "Gebruiker toevoegen aan rekening", + "Add user to shared account": "Gebruiker toevoegen aan zakelijke rekening", + "Admin": "Beheerder", + "Admin role required": "Beheerders-rol vereist", + "Amount": "Bedrag", + "An account for the specified number already exists": "Er bestaat al een rekening met het opgegeven IBAN", + "Are you sure you want to block this card? This action cannot be undone.": "Weet je zeker dat je deze kaart wilt blokkeren? Deze actie kan niet ongedaan worden gemaakt.", + "Are you sure you want to delete this card? This action cannot be undone.": "Weet je zeker dat je deze kaart wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.", + "Balance": "Saldo", + "Block the card": "Kaart blokkeren", + "Block, update pin and more.": "Blokkeren, pincode bijwerken en meer.", + "Blocking card": "Kaart blokkeren", + "CREATE": "AANMAKEN", + "Cancel": "Annuleren", + "Card holder": "Kaarthouder", + "Cards": "Kaarten", + "Choose role": "Kies een rol", + "Clearing- & account number": "BIC- & rekeningnummer", + "Clearing- & account number is required": "BIC- & rekeningnummer is vereist", + "Confirm new pin": "Nieuwe pincode bevestigen", + "Confirm pin": "Pincode bevestigen", + "Contributor": "Gebruiker", + "Contributors cannot use money in shared accounts.": "Gebruikers kunnen geen geld gebruiken van een zakelijke rekening.", + "Copy account number": "IBAN kopiëren", + "Cost": "Kosten", + "Current cash": "Contant op zak", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/JJJJ UU:mm A", + "Danger zone": "Gevarenzone", + "Dashboard": "Overzicht", + "Default": "Standaard", + "Default account": "Standaard rekening", + "Delete account": "Rekening verwijderen", + "Delete the card": "Kaart verwijderen", + "Deleting card": "Kaart verwijderen…", + "Deposit": "Storten", + "Deposited {{amount}} into account.": "{{amount}} op rekening gestort.", + "Enter card pin to block the card.": "Voer de pincode in om de kaart te blokkeren.", + "Enter pin": "Voer pincode in", + "Expense": "Uitgave", + "Expenses": "Uitgaven", + "Expires": "Verloopt", + "External account name": "Naam van externe rekening", + "External accounts": "Externe rekeningen", + "External transfer": "Externe overboeking", + "Failed to create new account": "Het aanmaken van een nieuwe rekening is mislukt", + "Fetching data ..": "Gegevens ophalen…", + "Filters": "Filters", + "From account": "Verzender", + "Funds will be transfered to default account.": "Het geld wordt overgemaakt naar de standaard rekening.", + "General": "Algemeen", + "Handle accounts": "Rekeningen afhandelen", + "Handle cards for your accounts": "Kaarten van je rekening beheren", + "Handle your unpaid invoices": "Behandel je onbetaalde facturen", + "Home": "Home", + "Income": "Inkomsten", + "Insufficent funds": "Onvoldoende saldo", + "Internal transfer": "Interne overboeking", + "Invalid account name": "Ongeldige rekeningnaam", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Ongeldige IBAN, format is: xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Ongeldige IBAN, format is: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Ongeldige pincode", + "Invoice": "Factuur", + "Invoices": "Facturen", + "Latest transactions": "Laatste transacties", + "Loading invoices": "Facturen laden", + "Loading transactions": "Transacties laden", + "Loading {{name}} view ..": "De {{name}} -weergave wordt geladen...", + "Message": "Bericht", + "Name": "Naam", + "New account name": "Nieuwe rekeningnaam", + "New balance": "Nieuwe saldo", + "New cash": "Nieuw contant", + "New pin": "Nieuwe pincode", + "No account found to receive transfer.": "Geen rekening gevonden om overboekingen te ontvangen.", + "No invoices, yet.": "Nog geen facturen.", + "No users found.": "Geen gebruikers gevonden.", + "Old pin": "Oude pincode", + "Open account": "Rekening openen", + "Open bank": "Rekening openen", + "Opened a new account": "Je hebt een nieuwe rekening geopend", + "Order a new card": "Bestel een nieuwe kaart", + "Order new card": "Nieuwe kaart bestellen", + "Ordered new card": "Nieuwe kaart besteld", + "PERSONAL": "PRIVÉ", + "Paid": "Betaald", + "Paid invoice": "Betaalde factuur", + "Paid outgoing invoice to: {{to}}": "Betaalde uitgaande factuur aan: {{to}}", + "Pay invoice": "Factuur betalen", + "Pay your bills": "Betaal je rekeningen", + "Personal": "Privé", + "Personal account": "Privé rekening", + "Pins do not match": "Pincodes komen niet overeen.", + "Quick withdraw": "Pinnen", + "Received incoming invoice from: {{from}}": "Inkomende factuur ontvangen van: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Resterende saldo van ''{{deletedAccount}}''", + "Remove user": "Gebruiker verwijderen", + "Remove user from a shared account": "Gebruiker verwijderen van zakelijke rekening", + "Remove user from account": "Gebruiker van rekening verwijderen", + "Rename": "Naam wijzigen", + "Rename account": "Naam van rekening wijzigen", + "Report": "Rapporteren", + "Role": "Rol", + "SHARED": "ZAKELIJK", + "Search for a user": "Zoek een gebruiker", + "Select a card": "Kaart selecteren", + "Select a card to handle, or order a new one.": "Selecteer een kaart om te beheren of bestel een nieuwe.", + "Select a user": "Selecteer een gebruiker", + "Select account": "Rekening selecteren", + "Set account to default": "Instellen als standaard rekening", + "Shared": "Zakelijk", + "Shared account": "Zakelijke rekening", + "Shared account actions": "Acties voor zakelijke rekening", + "Shared account cannot be default account": "Een zakelijke rekening kan geen standaard rekening zijn", + "Something went wrong": "Er is iets misgegaan", + "Something went wrong, please try again later.": "Oeps, er is iets misgegaan. Probeer het later opnieuw.", + "Successfully blocked the card.": "De kaart is succesvol geblokkeerd.", + "Successfully deleted the card.": "De kaart is succesvol verwijderd.", + "Successfully deposited {{amount}} into selected account.": "{{amount}} met succes gestort op de geselecteerde reekening.", + "Successfully transferred funds": "Het geld is succesvol overgeboekt", + "Successfully transferred {{amount}}.": "{{amount}} succesvol overgeboekt.", + "Successfully updated pin.": "Pincode succesvol bijgewerkt.", + "Successfully withdrew {{amount}}.": "{{amount}} is opgenomen.", + "Summary": "Samenvatting", + "The card is blocked": "De kaart is geblokkeerd", + "The specified number does not match an existing account": "Het opgegeven IBAN komt niet overeen met een bestaande rekening", + "There are currently no unpaid invoices!": "Er zijn momenteel geen onbetaalde facturen.", + "There is nothing to see here.": "Er is hier niets te zien.", + "This is a shared account": "Dit is een zakelijke rekening", + "This should be the default account": "Dit zou de standaard rekening moeten zijn", + "This will take cash from your person and insert into selected bank account": "Hiermee wordt contant geld van uw portemonnee op de geselecteerde bankrekening gestort", + "To account": "Naar rekening", + "Total": "Totaal", + "Total balance": "Totaal saldo", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transacties", + "Transfer": "Overmaken", + "Transfer between internal & external accounts.": "Overboeking tussen interne en externe rekeningen.", + "Transfer funds": "Geld overmaken", + "Unpaid invoices": "Onbetaalde facturen", + "Update pin": "Pincode bijwerken", + "View all": "Alles weergeven", + "Weekly summary": "Weekoverzicht", + "Withdraw": "Opnemen", + "Withdrew {{amount}} from account.": "Er is {{amount}} van de rekening opgenomen.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Er is {{amount}} met kaart {{cardNumber}} gepind.", + "Withdrew {{amount}} from an ATM.": "Er is {{amount}} gepind.", + "You already have access to this account. Use internal transfer instead": "Je hebt al toegang tot dit account. Gebruik in plaats daarvan interne overdracht", + "You can create more accounts by visiting the nearest bank ..": "U kunt meer rekeningen openen door naar de dichtstbijzijnde bank te gaan..", + "You cannot delete the default account": "Je kunt de standaard rekening niet opzeggen", + "Your accounts": "Jouw rekeningen", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Eigenaar", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} van {{total}}" +} \ No newline at end of file diff --git a/locales/pl/default.json b/locales/pl/default.json new file mode 100644 index 00000000..67629f3a --- /dev/null +++ b/locales/pl/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Konto", + "Account balance": "Stan Konta", + "Account name": "Nazwa Konta", + "Account name is required": "Nazwa konta jest wymagana", + "Account name is too long": "Nazwa konta jest zbyt długa", + "Account users": "Użytkownicy konta", + "Accounts": "Konta", + "Actions": "Operacje", + "Add external account": "Dodaj konto zewnętrzne", + "Add user": "Dodaj użytkownika", + "Add user to account": "Dodaj użytkownika do konta", + "Add user to shared account": "Dodaj użytkownika do udostępnionego konta", + "Admin": "Administrator", + "Admin role required": "Wymagana jest rola Administratora", + "Amount": "Kwota", + "An account for the specified number already exists": "Konto dla określonego numeru już istnieje", + "Are you sure you want to block this card? This action cannot be undone.": "Czy na pewno chcesz zablokować tę kartę? Tej akcji nie można cofnąć.", + "Are you sure you want to delete this card? This action cannot be undone.": "Czy na pewno chcesz usunąć tę kartę? Tej akcji nie można cofnąć.", + "Balance": "Saldo", + "Block the card": "Zablokuj kartę", + "Block, update pin and more.": "Blokuj, zaktualizuj kod PIN i nie tylko.", + "Blocking card": "Karta blokująca", + "CREATE": "Utwórz", + "Cancel": "Anuluj", + "Card holder": "Właściciel karty", + "Cards": "Karty", + "Choose role": "Wybierz rolę", + "Clearing- & account number": "Rozliczenie i numer konta", + "Clearing- & account number is required": "Wymagany jest numer rozliczenia i konta", + "Confirm new pin": "Potwierdź nowy PIN", + "Confirm pin": "Potwierdź PIN", + "Contributor": "Wspólnik", + "Contributors cannot use money in shared accounts.": "Wspólnicy nie mogą korzystać z pieniędzy na współdzielonych kontach.", + "Copy account number": "Skopiuj numer rachunku", + "Cost": "Koszt", + "Current cash": "Aktualny stan konta", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:mm", + "Danger zone": "Strefa zagrożenia", + "Dashboard": "Strona Główna", + "Default": "Domyślne", + "Default account": "Domyślne konto", + "Delete account": "Usuń konto", + "Delete the card": "Usunąć kartę?", + "Deleting card": "Usuwanie karty", + "Deposit": "Wpłać", + "Deposited {{amount}} into account.": "Wpłacono {{amount}} na konto.", + "Enter card pin to block the card.": "Wprowadź kod PIN karty, aby zablokować kartę.", + "Enter pin": "Wpisz PIN", + "Expense": "Wydatek", + "Expenses": "Wydatki", + "Expires": "Wygasa", + "External account name": "Nazwa konta zewnętrznego", + "External accounts": "Konta zewnętrzne", + "External transfer": "Przelew", + "Failed to create new account": "Nie udało się utworzyć nowego konta", + "Fetching data ..": "Pobieranie danych…", + "Filters": "Filtry", + "From account": "Z konta", + "Funds will be transfered to default account.": "Środki zostaną przelane na konto domyślne", + "General": "Ogólne", + "Handle accounts": "Obsługuj konta", + "Handle cards for your accounts": "Obsługuj karty dla swoich kont", + "Handle your unpaid invoices": "Niezapłacone faktury", + "Home": "Strona główna", + "Income": "Przychód", + "Insufficent funds": "Niewystarczające środki", + "Internal transfer": "Przelew wewnętrzny", + "Invalid account name": "Nieprawidłowa nazwa konta", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Nieprawidłowy numer, format to xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Nieprawidłowy numer, format to: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Nieprawidłowy PIN", + "Invoice": "Faktura", + "Invoices": "Faktury", + "Latest transactions": "Ostatnie transakcje", + "Loading invoices": "Ładowanie faktur...", + "Loading transactions": "Ładowanie transakcji...", + "Loading {{name}} view ..": "Ładowanie {{name}}\n", + "Message": "Wiadomość", + "Name": "Nazwa", + "New account name": "Nowa nazwa konta", + "New balance": "Nowe saldo", + "New cash": "Nowa gotówka", + "New pin": "Nowy PIN", + "No account found to receive transfer.": "Nie znaleziono konta do otrzymania przelewu", + "No invoices, yet.": "Brak faktur", + "No users found.": "Nie znaleziono użytkowników", + "Old pin": "Stary PIN", + "Open account": "Załóż konto", + "Open bank": "Bank", + "Opened a new account": "Utworzyłeś nowe konto", + "Order a new card": "Zamów nową kartę", + "Order new card": "Zamów nową kartę", + "Ordered new card": "Zamówiona nowa karta", + "PERSONAL": "Osobiste", + "Paid": "Zapłacono", + "Paid invoice": "Zapłacona faktura", + "Paid outgoing invoice to: {{to}}": "Zapłacony rachunek do {{to}}", + "Pay invoice": "Zapłać fakturę", + "Pay your bills": "Zapłać rachunki", + "Personal": "Osobiste", + "Personal account": "Konto osobiste", + "Pins do not match": "PIN-y nie są takie same.", + "Quick withdraw": "Szybka Wypłata", + "Received incoming invoice from: {{from}}": "Otrzymano fakturę od: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Pozostałe środki z „{{deletedAccount}}”", + "Remove user": "Usuń użytkownika", + "Remove user from a shared account": "Usuwanie użytkownika z konta współdzielonego", + "Remove user from account": "Usuń użytkownika z konta", + "Rename": "Zmień nazwę", + "Rename account": "Zmień nazwę konta", + "Report": "Zgłoś", + "Role": "Stanowisko", + "SHARED": "Rachunek współdzielony", + "Search for a user": "Wyszukaj użytkownika", + "Select a card": "Wybierz kartę", + "Select a card to handle, or order a new one.": "Wybierz kartę do obsługi lub zamów nową.", + "Select a user": "Wybierz użytkownika", + "Select account": "Wybierz konto", + "Set account to default": "Ustaw konto na domyślne", + "Shared": "Wspólny", + "Shared account": "Wspólne konto", + "Shared account actions": "Działania prowadzone na wspólnych rachunkach", + "Shared account cannot be default account": "Konto współdzielone nie może być kontem domyślnym", + "Something went wrong": "Coś poszło nie tak", + "Something went wrong, please try again later.": "Coś poszło nie tak, spróbuj ponownie później", + "Successfully blocked the card.": "Pomyślnie zablokowałem kartę.", + "Successfully deleted the card.": "Pomyślnie usunięto kartę.", + "Successfully deposited {{amount}} into selected account.": "Pomyślnie wypłacono {{amount}} na wybrany rachunek", + "Successfully transferred funds": "Pomyślnie przeniesiono środki", + "Successfully transferred {{amount}}.": "Przelano {{amount}}\n", + "Successfully updated pin.": "Pomyślnie zaktualizowano PIN.", + "Successfully withdrew {{amount}}.": "Wypłacono {{amount}}\n", + "Summary": "Podsumowanie", + "The card is blocked": "Karta jest zablokowana", + "The specified number does not match an existing account": "Podany numer nie pasuje do istniejącego konta", + "There are currently no unpaid invoices!": "Obecnie nie ma niezapłaconych faktur!", + "There is nothing to see here.": "Nic tu nie ma", + "This is a shared account": "To jest wspólne konto", + "This should be the default account": "To powinno być konto domyślne", + "This will take cash from your person and insert into selected bank account": "Spowoduje to podjęcie gotówki od Twojej osoby i wstawienie na wybrane konto bankowe", + "To account": "Na rachunek", + "Total": "Łącznie", + "Total balance": "Całkowite saldo", + "TransactionType.Incoming": "Typ transakcji: Przychodzące", + "TransactionType.Outgoing": "Typ transakcji: Wychodząca", + "TransactionType.Transfer": "Typ transakcji: Przelew", + "Transactions": "Transakcje", + "Transfer": "Prześlij", + "Transfer between internal & external accounts.": "Transfer między kontami wewnętrznymi i zewnętrznymi", + "Transfer funds": "Przelew środków", + "Unpaid invoices": "Nieopłacone faktury", + "Update pin": "Zaktualizuj PIN", + "View all": "Wyświetl wszystkie", + "Weekly summary": "Podsumowanie tygodniowe", + "Withdraw": "Wypłać", + "Withdrew {{amount}} from account.": "Wypłacono {{amount}} z konta", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Wypłacono {{amount}} z bankomatu za pomocą karty {{cardNumber}}\n", + "Withdrew {{amount}} from an ATM.": "Wypłacono {{amount}} z bankomatu", + "You already have access to this account. Use internal transfer instead": "Masz już dostęp do tego konta. Zamiast tego użyj wewnętrznego transferu", + "You can create more accounts by visiting the nearest bank ..": "Możesz utworzyć więcej kont, udając się do Banku . .", + "You cannot delete the default account": "Nie można usunąć konta domyślnego", + "Your accounts": "Twoje konta", + "calendar.lastDay": "Ostatni dzień", + "calendar.lastWeek": "Ostatni tydzień", + "calendar.nextDay": "Następnego dnia", + "calendar.nextWeek": "Następnego tygodnia", + "calendar.sameDay": "Tego samego dnia", + "calendar.sameElse": "To samo", + "owner": "Właściciel", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} przez {{total}}" +} \ No newline at end of file diff --git a/locales/pt-BR/default.json b/locales/pt-BR/default.json new file mode 100644 index 00000000..cf15fcf8 --- /dev/null +++ b/locales/pt-BR/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Conta", + "Account balance": "Saldo Da Conta", + "Account name": "Nome Da Conta", + "Account name is required": "O nome da conta é obrigatório", + "Account name is too long": "O nome da conta é muito longo", + "Account users": "Usuários da Conta", + "Accounts": "Contas", + "Actions": "Ações", + "Add external account": "Adicionar conta externa", + "Add user": "Adicionar usuário", + "Add user to account": "Adicionar usuário à conta", + "Add user to shared account": "Adicionar usuário à conta compartilhada", + "Admin": "Administrador", + "Admin role required": "Função de administrador necessária", + "Amount": "Quantia", + "An account for the specified number already exists": "Já existe uma conta para o número especificado", + "Are you sure you want to block this card? This action cannot be undone.": "Tem certeza de que deseja bloquear este cartão? Essa ação não pode ser desfeita.", + "Are you sure you want to delete this card? This action cannot be undone.": "Tem certeza de que deseja excluir este cartão? Essa ação não pode ser desfeita.", + "Balance": "Saldo", + "Block the card": "Bloquear o cartão", + "Block, update pin and more.": "Bloqueie, atualize o pin e muito mais.", + "Blocking card": "Bloqueando o cartão", + "CREATE": "CRIAR", + "Cancel": "Cancelar", + "Card holder": "Titular do cartão", + "Cards": "Cartões", + "Choose role": "Escolha a função", + "Clearing- & account number": "Limpeza - & Número da Conta", + "Clearing- & account number is required": "É necessário o número de limpeza e da conta.", + "Confirm new pin": "Confirme o novo PIN", + "Confirm pin": "Confirmar PIN", + "Contributor": "Colaborador", + "Contributors cannot use money in shared accounts.": "Os contribuidores não podem usar dinheiro em contas compartilhadas.", + "Copy account number": "Copiar número da conta", + "Cost": "Custo", + "Current cash": "Dinheiro Atual", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH: mm A", + "Danger zone": "Zona de perigo", + "Dashboard": "Painel", + "Default": "Padrão", + "Default account": "Conta padrão", + "Delete account": "Excluir Conta", + "Delete the card": "Excluir cartão", + "Deleting card": "Excluindo cartão…", + "Deposit": "Depósito", + "Deposited {{amount}} into account.": "Depositado {{amount}} em conta.", + "Enter card pin to block the card.": "Insira o PIN do cartão para bloqueá-lo.", + "Enter pin": "Inserir PIN", + "Expense": "Despesa", + "Expenses": "Despesas", + "Expires": "Expira", + "External account name": "Nome da conta externa", + "External accounts": "Contas externas", + "External transfer": "Transferência externa", + "Failed to create new account": "Falha ao criar uma nova conta", + "Fetching data ..": "Buscando dados…", + "Filters": "Filtros", + "From account": "Da conta", + "Funds will be transfered to default account.": "Os fundos serão transferidos para a conta padrão.", + "General": "Geral", + "Handle accounts": "Gerenciar contas", + "Handle cards for your accounts": "Gerencie cartões para suas contas", + "Handle your unpaid invoices": "Gerencie suas faturas não pagas", + "Home": "Página inicial", + "Income": "Renda", + "Insufficent funds": "Fundos insuficientes", + "Internal transfer": "Transferência interna", + "Invalid account name": "Nome de conta inválido", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Número inválido, o formato é xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Número inválido, o formato é xxx, xxxx-xxxx-xxxx", + "Invalid pin": "PIN inválido", + "Invoice": "Fatura", + "Invoices": "Faturas", + "Latest transactions": "Últimas Transações", + "Loading invoices": "Carregando faturas", + "Loading transactions": "Carregando transações", + "Loading {{name}} view ..": "Carregando {{name}} visualização..", + "Message": "Mensagem", + "Name": "Nome", + "New account name": "Novo nome da conta", + "New balance": "Novo saldo", + "New cash": "Novo Dinheiro", + "New pin": "Novo PIN", + "No account found to receive transfer.": "Nenhuma conta encontrada para receber a transferência.", + "No invoices, yet.": "Ainda não há faturas", + "No users found.": "Nenhum usuário encontrado", + "Old pin": "PIN antigo", + "Open account": "Abrir conta", + "Open bank": "Abrir Banco", + "Opened a new account": "Abriu uma nova conta", + "Order a new card": "Solicite um novo cartão", + "Order new card": "Pedir um novo cartão", + "Ordered new card": "Pediu um novo cartão", + "PERSONAL": "PESSOAL", + "Paid": "PAGO", + "Paid invoice": "Fatura paga", + "Paid outgoing invoice to: {{to}}": "Fatura de saída paga para: {{to}}", + "Pay invoice": "Pagar fatura", + "Pay your bills": "Pague suas contas", + "Personal": "Pessoal", + "Personal account": "Conta Pessoal", + "Pins do not match": "Os PINs não coincidem.", + "Quick withdraw": "Retirada rápida", + "Received incoming invoice from: {{from}}": "Fatura recebida de: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Fundos restantes de \"{{deletedAccount}}”", + "Remove user": "Remover usuário", + "Remove user from a shared account": "Remover usuário de uma conta compartilhada", + "Remove user from account": "Remover usuário da conta", + "Rename": "Renomear", + "Rename account": "Renomear Conta", + "Report": "Informar", + "Role": "Papel", + "SHARED": "COMPARTILHADO", + "Search for a user": "Pesquisar usuário", + "Select a card": "Selecionar um cartão", + "Select a card to handle, or order a new one.": "Selecione um cartão para gerenciar ou solicite um novo", + "Select a user": "Selecionar usuário", + "Select account": "Selecionar conta", + "Set account to default": "Definir conta como padrão", + "Shared": "Compartilhado", + "Shared account": "Conta compartilhada", + "Shared account actions": "Ações de conta compartilhada", + "Shared account cannot be default account": "A conta compartilhada não pode ser a conta padrão", + "Something went wrong": "Algo deu errado", + "Something went wrong, please try again later.": "Algo deu errado. Por favor, tente novamente mais tarde.", + "Successfully blocked the card.": "Bloqueou o cartão com sucesso.", + "Successfully deleted the card.": "O cartão foi excluído com sucesso.", + "Successfully deposited {{amount}} into selected account.": "Depositado com sucesso {{amount}} na conta selecionada.", + "Successfully transferred funds": "Fundos transferidos com sucesso", + "Successfully transferred {{amount}}.": "Transferido com sucesso{{amount}}.", + "Successfully updated pin.": "Pin atualizado com sucesso.", + "Successfully withdrew {{amount}}.": "Retirado com {{amount}} sucesso.", + "Summary": "Resumo", + "The card is blocked": "O cartão está bloqueado", + "The specified number does not match an existing account": "O número especificado não corresponde a uma conta existente", + "There are currently no unpaid invoices!": "No momento, não há faturas não pagas!", + "There is nothing to see here.": "Não há nada para ver aqui.", + "This is a shared account": "Esta é uma conta compartilhada", + "This should be the default account": "Essa deve ser a conta padrão", + "This will take cash from your person and insert into selected bank account": "Isso retirará dinheiro de sua pessoa e será inserido na conta bancária selecionada.", + "To account": "Para a conta", + "Total": "Total", + "Total balance": "Saldo total", + "TransactionType.Incoming": "Tipo de transação. Entrada", + "TransactionType.Outgoing": "Tipo de transação. Saída", + "TransactionType.Transfer": "Tipo de transação. Transferência", + "Transactions": "Transações", + "Transfer": "Transferir", + "Transfer between internal & external accounts.": "Transferência entre contas internas e externas.", + "Transfer funds": "Transferir fundos", + "Unpaid invoices": "Faturas não pagas", + "Update pin": "Atualizar PIN", + "View all": "Exibir tudo", + "Weekly summary": "Resumo Semanal", + "Withdraw": "Sacar", + "Withdrew {{amount}} from account.": "Retirado {{amount}} da conta.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Retirou-se {{amount}} de um caixa eletrônico com cartão. {{cardNumber}}", + "Withdrew {{amount}} from an ATM.": "Retirou-se {{amount}} de um caixa eletrônico.", + "You already have access to this account. Use internal transfer instead": "Você já tem acesso a essa conta. Em vez disso, use a transferência interna", + "You can create more accounts by visiting the nearest bank ..": "Você pode criar mais contas visitando o banco mais próximo.", + "You cannot delete the default account": "Você não pode excluir a conta padrão", + "Your accounts": "Suas contas", + "calendar.lastDay": "calendário. último dia", + "calendar.lastWeek": "Calendário. Semana passada", + "calendar.nextDay": "calendário. dia seguinte", + "calendar.nextWeek": "calendário. Semana que vem", + "calendar.sameDay": "calendário. Mesmo dia", + "calendar.sameElse": "calendário. O mesmo", + "owner": "proprietário", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} De {{total}}" +} \ No newline at end of file diff --git a/locales/pt/default.json b/locales/pt/default.json new file mode 100644 index 00000000..938f82ad --- /dev/null +++ b/locales/pt/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Account", + "Account balance": "Saldo da conta", + "Account name": "Nome da conta", + "Account name is required": "O nome da conta é obrigatório!", + "Account name is too long": "Account name is too long", + "Account users": "Usuários da conta", + "Accounts": "Accounts", + "Actions": "Actions", + "Add external account": "Adicionar conta externa", + "Add user": "Adicionar usuário", + "Add user to account": "Adicionar usuário à conta", + "Add user to shared account": "Adicionar usuário à conta compartilhada", + "Admin": "Administrador", + "Admin role required": "Função de administrador necessária", + "Amount": "Quantidade", + "An account for the specified number already exists": "Já existe uma conta para o número especificado", + "Are you sure you want to block this card? This action cannot be undone.": "Are you sure you want to block this card? This action cannot be undone.", + "Are you sure you want to delete this card? This action cannot be undone.": "Are you sure you want to delete this card? This action cannot be undone.", + "Balance": "Saldo", + "Block the card": "Block the card", + "Block, update pin and more.": "Block, update pin and more.", + "Blocking card": "Blocking card", + "CREATE": "Criar", + "Cancel": "Cancelar", + "Card holder": "Card holder", + "Cards": "Cards", + "Choose role": "Escolha uma função", + "Clearing- & account number": "Número da compensação e da conta", + "Clearing- & account number is required": "O número da compensação e da conta é obrigatório", + "Confirm new pin": "Confirm new pin", + "Confirm pin": "Confirm pin", + "Contributor": "Colaborador", + "Contributors cannot use money in shared accounts.": "Contributors cannot use money in shared accounts.", + "Copy account number": "Copy account number", + "Cost": "Custo", + "Current cash": "Current cash", + "DATE_FORMAT": "YYYY/DD/MM", + "DATE_TIME_FORMAT": "YYYY/MM/DD HH:mm A", + "Danger zone": "Zona de perigo", + "Dashboard": "Dashboard", + "Default": "Padrão", + "Default account": "Default account", + "Delete account": "Excluir conta", + "Delete the card": "Delete the card", + "Deleting card": "Deleting card", + "Deposit": "Deposit", + "Deposited {{amount}} into account.": "Deposited {{amount}} into account.", + "Enter card pin to block the card.": "Enter card pin to block the card.", + "Enter pin": "Enter pin", + "Expense": "Despesa", + "Expenses": "Despesas", + "Expires": "Expira", + "External account name": "Nome da conta externa", + "External accounts": "Contas externas", + "External transfer": "Transferência externa", + "Failed to create new account": "Failed to create new account", + "Fetching data ..": "Fetching data ..", + "Filters": "Filtros", + "From account": "Da conta", + "Funds will be transfered to default account.": "Os fundos serão transferidos para a conta padrão.", + "General": "Geral", + "Handle accounts": "Gerenciar contas", + "Handle cards for your accounts": "Handle cards for your accounts", + "Handle your unpaid invoices": "Handle your unpaid invoices", + "Home": "Início", + "Income": "Renda", + "Insufficent funds": "Insufficent funds", + "Internal transfer": "Transferência interna", + "Invalid account name": "Invalid account name", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Número inválido, o formato é xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Invalid number, format is: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Invalid pin", + "Invoice": "Fatura", + "Invoices": "Faturas", + "Latest transactions": "Transações mais recentes", + "Loading invoices": "Carregando faturas", + "Loading transactions": "A carregar transações...", + "Loading {{name}} view ..": "Loading {{name}} view ..", + "Message": "Mensagem", + "Name": "Nome", + "New account name": "Novo nome de conta:", + "New balance": "Novo saldo", + "New cash": "New cash", + "New pin": "New pin", + "No account found to receive transfer.": "Nenhuma conta encontrada para receber a transferência.", + "No invoices, yet.": "Nenhuma fatura ainda", + "No users found.": "Usuários não encontrados", + "Old pin": "Old pin", + "Open account": "Abra uma conta", + "Open bank": "Open bank", + "Opened a new account": "Opened a new account", + "Order a new card": "Order a new card", + "Order new card": "Order new card", + "Ordered new card": "Ordered new card", + "PERSONAL": "PERSONAL", + "Paid": "Paid", + "Paid invoice": "Paid invoice", + "Paid outgoing invoice to: {{to}}": "Paid outgoing invoice to: {{to}}", + "Pay invoice": "Pay invoice", + "Pay your bills": "Pay your bills", + "Personal": "Personal", + "Personal account": "Personal account", + "Pins do not match": "Pins do not match", + "Quick withdraw": "Quick withdraw", + "Received incoming invoice from: {{from}}": "Received incoming invoice from: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Remaining funds from \"{{deletedAccount}}\"", + "Remove user": "Remove user", + "Remove user from a shared account": "Remove user from a shared account", + "Remove user from account": "Remove user from account", + "Rename": "Rename", + "Rename account": "Rename account", + "Report": "Report", + "Role": "Role", + "SHARED": "SHARED", + "Search for a user": "Search for a user", + "Select a card": "Select a card", + "Select a card to handle, or order a new one.": "Select a card to handle, or order a new one.", + "Select a user": "Select a user", + "Select account": "Select account", + "Set account to default": "Set account to default", + "Shared": "Shared", + "Shared account": "Shared account", + "Shared account actions": "Shared account actions", + "Shared account cannot be default account": "Shared account cannot be default account", + "Something went wrong": "Something went wrong", + "Something went wrong, please try again later.": "Something went wrong, please try again later.", + "Successfully blocked the card.": "Successfully blocked the card.", + "Successfully deleted the card.": "Successfully deleted the card.", + "Successfully deposited {{amount}} into selected account.": "Successfully deposited {{amount}} into selected account.", + "Successfully transferred funds": "Successfully transferred funds", + "Successfully transferred {{amount}}.": "Successfully transferred {{amount}}.", + "Successfully updated pin.": "Successfully updated pin.", + "Successfully withdrew {{amount}}.": "Successfully withdrew {{amount}}.", + "Summary": "Summary", + "The card is blocked": "The card is blocked", + "The specified number does not match an existing account": "The specified number does not match an existing account", + "There are currently no unpaid invoices!": "There are currently no unpaid invoices!", + "There is nothing to see here.": "There is nothing to see here.", + "This is a shared account": "This is a shared account", + "This should be the default account": "This should be the default account", + "This will take cash from your person and insert into selected bank account": "This will take cash from your person and insert into selected bank account", + "To account": "To account", + "Total": "Total", + "Total balance": "Total balance", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "Transactions", + "Transfer": "Transfer", + "Transfer between internal & external accounts.": "Transfer between internal & external accounts.", + "Transfer funds": "Transfer funds", + "Unpaid invoices": "Unpaid invoices", + "Update pin": "Update pin", + "View all": "View all", + "Weekly summary": "Weekly summary", + "Withdraw": "Withdraw", + "Withdrew {{amount}} from account.": "Withdrew {{amount}} from account.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Withdrew {{amount}} from an ATM with card {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Withdrew {{amount}} from an ATM.", + "You already have access to this account. Use internal transfer instead": "You already have access to this account. Use internal transfer instead", + "You can create more accounts by visiting the nearest bank ..": "You can create more accounts by visiting the nearest bank ..", + "You cannot delete the default account": "You cannot delete the default account", + "Your accounts": "Your accounts", + "calendar.lastDay": "calendári.ultimo dia", + "calendar.lastWeek": "calendário. semana passada", + "calendar.nextDay": "calendário. Dia seguinte", + "calendar.nextWeek": "calendário. Semana que vem", + "calendar.sameDay": "calendário. Mesmo dia", + "calendar.sameElse": "calendário. O mesmo", + "owner": "owner", + "{{from}}-{{to}} of {{total}}": "{{from}}-{{to}} de {{total}}" +} \ No newline at end of file diff --git a/locales/sv/default.json b/locales/sv/default.json new file mode 100644 index 00000000..417625fe --- /dev/null +++ b/locales/sv/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Konto", + "Account balance": "Kontosaldo", + "Account name": "Kontonamn", + "Account name is required": "Kontonamn krävs", + "Account name is too long": "Kontonamnet är för långt", + "Account users": "Användare", + "Accounts": "Konton", + "Actions": "Åtgärder", + "Add external account": "Lägg till externt konto", + "Add user": "Lägg till användare", + "Add user to account": "Lägg till användare till konto", + "Add user to shared account": "Lägg till användare till delat konto", + "Admin": "Administratör", + "Admin role required": "Admin roll krävs", + "Amount": "Belopp", + "An account for the specified number already exists": "Ett konto för det angivna numret finns redan", + "Are you sure you want to block this card? This action cannot be undone.": "Är du säker på att du vill blockera det här kortet? Denna åtgärd kan inte ångras.", + "Are you sure you want to delete this card? This action cannot be undone.": "Är du säker på att du vill ta bort det här kortet? Denna åtgärd kan inte ångras.", + "Balance": "Saldo", + "Block the card": "Blockera kortet", + "Block, update pin and more.": "Blockera, uppdatera pin och mer.", + "Blocking card": "Blockera kort", + "CREATE": "Skapa", + "Cancel": "Avbryt", + "Card holder": "Kortinnehavare", + "Cards": "Kort", + "Choose role": "Välj roll", + "Clearing- & account number": "Clearing- & kontonummer", + "Clearing- & account number is required": "Clearing- & kontonummer krävs", + "Confirm new pin": "Bekräfta din nya pinkod", + "Confirm pin": "Bekräfta PIN", + "Contributor": "Medverkande", + "Contributors cannot use money in shared accounts.": "Medverkande kan inte använda pengar i delade konton.", + "Copy account number": "Kopiera kontonummer", + "Cost": "Kostnad", + "Current cash": "Nuvarande kontanter", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD-MM-YYYY HH:mm", + "Danger zone": "Farozon", + "Dashboard": "Översikt", + "Default": "Standard", + "Default account": "Standardkonto", + "Delete account": "Ta bort konto", + "Delete the card": "Ta bort kort", + "Deleting card": "Tar bort kort …", + "Deposit": "Insättning", + "Deposited {{amount}} into account.": "Satte in {{amount}} på kontot.", + "Enter card pin to block the card.": "Ange pinkod för att blockera kortet.", + "Enter pin": "Ange PIN", + "Expense": "Kostnad", + "Expenses": "Utgifter", + "Expires": "Förfaller", + "External account name": "Externt konto namn", + "External accounts": "Externa konton", + "External transfer": "Extern överföring", + "Failed to create new account": "Det gick inte att skapa nytt konto", + "Fetching data ..": "Hämtar data ..", + "Filters": "Filter", + "From account": "Från konto", + "Funds will be transfered to default account.": "Pengarna kommer att överföras till ditt standardkonto.", + "General": "Allmänt", + "Handle accounts": "Hantera konton", + "Handle cards for your accounts": "Hantera kort för dina konton", + "Handle your unpaid invoices": "Hantera dina obetalda fakturor", + "Home": "Hem", + "Income": "Inkomst", + "Insufficent funds": "Medges ej", + "Internal transfer": "Intern överföring", + "Invalid account name": "Ogiltigt kontonamn", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Ogiltigt tal, formatet är xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Ogiltigt tal, formatet är: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Ogiltig pin", + "Invoice": "Faktura", + "Invoices": "Fakturor", + "Latest transactions": "Senaste transaktioner", + "Loading invoices": "Laddar fakturor", + "Loading transactions": "Laddar transaktioner", + "Loading {{name}} view ..": "Laddar {{name}} vy..", + "Message": "Meddelande", + "Name": "Namn", + "New account name": "Nytt kontonamn", + "New balance": "Nytt kontosaldo", + "New cash": "Ny summa kontanter", + "New pin": "Ny pinkod", + "No account found to receive transfer.": "Inget konto hittades för att ta emot överföring.", + "No invoices, yet.": "Inga fakturor, än.", + "No users found.": "Inga användare hittades.", + "Old pin": "Nuvarande pinkod", + "Open account": "Öppna konto", + "Open bank": "Öppna banken", + "Opened a new account": "Öppnade ett nytt konto", + "Order a new card": "Beställ ett nytt kort", + "Order new card": "Beställ ett nytt kort", + "Ordered new card": "Beställt nytt kort", + "PERSONAL": "Personligt", + "Paid": "Betalad", + "Paid invoice": "Betald faktura", + "Paid outgoing invoice to: {{to}}": "Betalade utgående faktura till: {{to}}", + "Pay invoice": "Betala faktura", + "Pay your bills": "Betala dina räkningar", + "Personal": "Personligt", + "Personal account": "Personligt konto", + "Pins do not match": "Pinkoderna matchar inte.", + "Quick withdraw": "Uttag", + "Received incoming invoice from: {{from}}": "Faktura mottagen från: {{from}}", + "Remaining funds from \"{{deletedAccount}}\"": "Återstående medel från ”{{deletedAccount}}”", + "Remove user": "Ta bort användaren", + "Remove user from a shared account": "Ta bort användare från ett delat konto", + "Remove user from account": "Ta bort användare från konto", + "Rename": "Byt namn", + "Rename account": "Byt namn på kontot", + "Report": "Rapportera", + "Role": "Roll", + "SHARED": "Delad", + "Search for a user": "Sök efter en användare", + "Select a card": "Välj kort", + "Select a card to handle, or order a new one.": "Välj ett kort att hantera, eller beställ ett nytt.", + "Select a user": "Välj en användare", + "Select account": "Välj konto", + "Set account to default": "Sätt konto som standardkonto", + "Shared": "Delad", + "Shared account": "Delat konto", + "Shared account actions": "Åtgärder för delat konto", + "Shared account cannot be default account": "Delat konto kan inte vara standardkonto", + "Something went wrong": "Något gick fel.", + "Something went wrong, please try again later.": "Något gick fel, försök igen senare.", + "Successfully blocked the card.": "Blockerade kortet framgångsrikt.", + "Successfully deleted the card.": "Raderade kortet.", + "Successfully deposited {{amount}} into selected account.": "Gjorde insättning på {{amount}} till valt konto.", + "Successfully transferred funds": "Överförda medel", + "Successfully transferred {{amount}}.": "Överförde {{amount}}.", + "Successfully updated pin.": "Uppdaterade pinkod", + "Successfully withdrew {{amount}}.": "Gjorde uttag på {{amount}}.", + "Summary": "Summering", + "The card is blocked": "Kortet är blockerat", + "The specified number does not match an existing account": "Det angivna numret matchar inte ett befintligt konto", + "There are currently no unpaid invoices!": "Det finns för nuvarande inga obetalda fakturor, jippi!", + "There is nothing to see here.": "Det finns inget att se här.", + "This is a shared account": "Detta är ett delat konto", + "This should be the default account": "Detta bör vara standardkontot", + "This will take cash from your person and insert into selected bank account": "Detta tar kontanter ifrån dig och sätter in på valt bankkonto", + "To account": "Till konto", + "Total": "Totalt", + "Total balance": "Totalt saldo", + "TransactionType.Incoming": "Inkommande", + "TransactionType.Outgoing": "Utgående", + "TransactionType.Transfer": "Intern överföring", + "Transactions": "Transaktioner", + "Transfer": "Överför", + "Transfer between internal & external accounts.": "Överföring mellan interna och externa konton.", + "Transfer funds": "Överför pengar", + "Unpaid invoices": "Obetalda fakturor", + "Update pin": "Uppdatera pin", + "View all": "Visa alla", + "Weekly summary": "Veckovis sammanfattning", + "Withdraw": "Ta ut", + "Withdrew {{amount}} from account.": "Tog ut {{amount}} från kontot.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "Tog ut {{amount}} från en bankomat med kort {{cardNumber}}.", + "Withdrew {{amount}} from an ATM.": "Tog ut {{amount}} från en bankomat.", + "You already have access to this account. Use internal transfer instead": "Du har redan tillgång till det här kontot. Använd intern överföring istället", + "You can create more accounts by visiting the nearest bank ..": "Du kan skapa ytterligare konton, vilket kommer visas här, genom att besöka närmaste bank!", + "You cannot delete the default account": "Du kan inte ta bort standardkontot", + "Your accounts": "Dina konton", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Ägare", + "{{from}}-{{to}} of {{total}}": "{{from}} - {{to}} av {{total}}" +} \ No newline at end of file diff --git a/locales/tr/default.json b/locales/tr/default.json new file mode 100644 index 00000000..eb1996ea --- /dev/null +++ b/locales/tr/default.json @@ -0,0 +1,173 @@ +{ + "Account": "Hesap", + "Account balance": "Hesap Bakiyesi", + "Account name": "Hesap Adı", + "Account name is required": "Hesap adı bulunması zorunludur.", + "Account name is too long": "Hesap adı çok uzun", + "Account users": "Hesap kullanıcıları", + "Accounts": "Hesaplar", + "Actions": "İşlemler", + "Add external account": "Ek hesap ekle", + "Add user": "Kullanıcı ekle", + "Add user to account": "Hesaba kullanıcı ekle", + "Add user to shared account": "Paylaşılan hesaba kullanıcı ekle", + "Admin": "Yönetici", + "Admin role required": "Yönetici rolü gerekli", + "Amount": "Tutar", + "An account for the specified number already exists": "Belirtilen hesap numarası sistemde mevcut.", + "Are you sure you want to block this card? This action cannot be undone.": "Bu kartı engellemek istediğinizden emin misiniz? Bu işlem geri alınamaz.", + "Are you sure you want to delete this card? This action cannot be undone.": "Bu kartı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.", + "Balance": "Bakiye", + "Block the card": "Kartı engelle", + "Block, update pin and more.": "Engelle, şifre güncelle ve daha fazlası.", + "Blocking card": "Kart engelleniyor", + "CREATE": "OLUŞTUR", + "Cancel": "İptal", + "Card holder": "Kart sahibi", + "Cards": "Kartlar", + "Choose role": "Görev seçin", + "Clearing- & account number": "Takas ve iban numarası", + "Clearing- & account number is required": "Takas ve iban gereklidir", + "Confirm new pin": "Yeni PIN\\'i doğrulayın", + "Confirm pin": "PIN'i onaylayın", + "Contributor": "Katılımcı", + "Contributors cannot use money in shared accounts.": "Katılımcı rolü hesaptaki parayı kullanamaz.", + "Copy account number": "Hesap numarasını kopyala", + "Cost": "Ücret:", + "Current cash": "Mevcut nakit", + "DATE_FORMAT": "DD/MM/YYYY", + "DATE_TIME_FORMAT": "DD/MM/YYYY HH:MM", + "Danger zone": "Tehlike Bölgesi", + "Dashboard": "Ana Sayfa", + "Default": "Varsayılan", + "Default account": "Varsayılan hesap", + "Delete account": "Hesabı sil", + "Delete the card": "Kartı sil", + "Deleting card": "Kart siliniyor…", + "Deposit": "Yatır", + "Deposited {{amount}} into account.": "{{amount}} hesaba yatırıldı.", + "Enter card pin to block the card.": "Kartı engellemek için kart pinini girin.", + "Enter pin": "PIN girin", + "Expense": "Gider:", + "Expenses": "Giderler", + "Expires": "Son buluyor", + "External account name": "Ek hesap adı", + "External accounts": "Ek Hesaplar", + "External transfer": "Farklı Hesaba Transfer", + "Failed to create new account": "Yeni hesap oluşturulamadı", + "Fetching data ..": "Veri alınıyor…", + "Filters": "Filtreler", + "From account": "Hesaptan", + "Funds will be transfered to default account.": "Para varsayılan hesaba aktarılacaktır.", + "General": "Genel", + "Handle accounts": "Hesapları yönetin", + "Handle cards for your accounts": "Hesaplarınız için kartları yönetin", + "Handle your unpaid invoices": "Ödenmemiş faturalarınızı yönetin", + "Home": "Ana Sayfa", + "Income": "Gelir", + "Insufficent funds": "Yetersiz para", + "Internal transfer": "Hesaplarım arası transfer", + "Invalid account name": "Geçersiz hesap adı", + "Invalid number, format is xxx, xxxx-xxxx-xxxx": "Geçersiz sayı, olması gereken format xxx, xxxx-xxxx-xxxx", + "Invalid number, format is: xxx, xxxx-xxxx-xxxx": "Geçersiz sayı, doğru format: xxx, xxxx-xxxx-xxxx", + "Invalid pin": "Geçersiz PIN", + "Invoice": "Fatura", + "Invoices": "Faturalar", + "Latest transactions": "Son işlemler", + "Loading invoices": "Faturalar Yükleniyor", + "Loading transactions": "Önceki işlemler yükleniyor...", + "Loading {{name}} view ..": "{{name}} Yükleniyor...", + "Message": "İleti", + "Name": "İsim", + "New account name": "Yeni hesap ismi:", + "New balance": "Yeni bakiye", + "New cash": "Yeni nakit", + "New pin": "Yeni PIN", + "No account found to receive transfer.": "Havale alacak hesap bulunamadı.", + "No invoices, yet.": "Henüz fatura yok", + "No users found.": "Kullanıcı bulunamadı.", + "Old pin": "Eski PIN", + "Open account": "Açık Hesap", + "Open bank": "Banka", + "Opened a new account": "Yeni bir hesap açıldı", + "Order a new card": "Yeni bir kart alın", + "Order new card": "Yeni bir kart alın", + "Ordered new card": "Yeni kart sipariş edildi", + "PERSONAL": "Şahsi", + "Paid": "Ödendi", + "Paid invoice": "Ödenmiş fatura", + "Paid outgoing invoice to: {{to}}": "Fatura için ödeme yapıldı: {{to}}", + "Pay invoice": "Faturayı ödeyin", + "Pay your bills": "Faturalarınızı ödeyin", + "Personal": "Şahsi", + "Personal account": "Şahsi Hesap", + "Pins do not match": "PIN'ler eşleşmiyor.", + "Quick withdraw": "Hızlı para çekme", + "Received incoming invoice from: {{from}}": "{{from}} size fatura gönderdi.", + "Remaining funds from \"{{deletedAccount}}\"": "{{deletedAccount}}'dan kalan para", + "Remove user": "Kullanıcıyı sil", + "Remove user from a shared account": "Kullanıcıyı paylaşımlı hesaptan kaldır", + "Remove user from account": "Kullanıcıyı hesaptan kaldır", + "Rename": "Yeniden adlandır", + "Rename account": "Hesabı yeniden adlandır", + "Report": "Rapor et", + "Role": "Rol", + "SHARED": "PAYLAŞIMLI", + "Search for a user": "Kullanıcı ara", + "Select a card": "Bir kart seçin", + "Select a card to handle, or order a new one.": "Yönetilecek bir kart seçin veya yeni bir kart sipariş edin.", + "Select a user": "Bir kullanıcı seçin", + "Select account": "Hesap seç", + "Set account to default": "Hesabı varsayılan olarak ayarla", + "Shared": "Paylaşımlı", + "Shared account": "Paylaşımlı hesap", + "Shared account actions": "Paylaşımlı hesap işlemleri", + "Shared account cannot be default account": "Paylaşımlı hesap varsayılan olarak ayarlanamaz.", + "Something went wrong": "Bir sorun oluştu.", + "Something went wrong, please try again later.": "Bir sorun oluştu. Lütfen daha sonra tekrar deneyin.", + "Successfully blocked the card.": "Kartı başarıyla bloke edildi.", + "Successfully deleted the card.": "Kart başarıyla silindi.", + "Successfully deposited {{amount}} into selected account.": "{{amount}} seçilen hesaba yatırıldı.", + "Successfully transferred funds": "Para transferi tamamlandı.", + "Successfully transferred {{amount}}.": "{{amount}} başarıyla transfer edildi.", + "Successfully updated pin.": "Pin başarıyla güncellendi.", + "Successfully withdrew {{amount}}.": "{{amount}} çektiniz.", + "Summary": "Özet", + "The card is blocked": "Kart bloke edildi", + "The specified number does not match an existing account": "Belirtilen numara mevcut bir hesapla uymuyor", + "There are currently no unpaid invoices!": "Şu anda ödenmemiş fatura yok!", + "There is nothing to see here.": "Görüntülenebilecek bir şey bulunmuyor.", + "This is a shared account": "Bu paylaşımlı bir hesaptır", + "This should be the default account": "Varsayılan hesap bu olmalıdır", + "This will take cash from your person and insert into selected bank account": "Bu, şahsınızdan nakit para alacak ve seçilen banka hesabına yatıracaktır", + "To account": "Alıcı hesap", + "Total": "Toplam", + "Total balance": "Toplam Bakiye", + "TransactionType.Incoming": "TransactionType.Incoming", + "TransactionType.Outgoing": "TransactionType.Outgoing", + "TransactionType.Transfer": "TransactionType.Transfer", + "Transactions": "İşlemler", + "Transfer": "Aktar", + "Transfer between internal & external accounts.": "Kendi hesaplarınız ve diğer hesaplar arasında transfer.", + "Transfer funds": "Para transferi", + "Unpaid invoices": "Ödenmemiş faturalar", + "Update pin": "Pin'i güncelle", + "View all": "Tümünü Gör", + "Weekly summary": "Haftalık Özet", + "Withdraw": "Para Çek", + "Withdrew {{amount}} from account.": "Hesaptan {{amount}} çekildi.", + "Withdrew {{amount}} from an ATM with card {{cardNumber}}.": "{{amount}} bir ATM'den {{cardNumber}} numaralı kart ile çekildi.", + "Withdrew {{amount}} from an ATM.": "{{amount}} ATM'den çekildi.", + "You already have access to this account. Use internal transfer instead": "Bu hesaba erişiminiz bulunuyor, hesaplarım arası transfer alanından transfer yapabilirsiniz.", + "You can create more accounts by visiting the nearest bank ..": "En yakın bankayı ziyaret ederek ek hesap oluşturabilirsiniz..", + "You cannot delete the default account": "Varsayılan hesabı silemezsiniz", + "Your accounts": "Hesaplarınız", + "calendar.lastDay": "calendar.lastDay", + "calendar.lastWeek": "calendar.lastWeek", + "calendar.nextDay": "calendar.nextDay", + "calendar.nextWeek": "calendar.nextWeek", + "calendar.sameDay": "calendar.sameDay", + "calendar.sameElse": "calendar.sameElse", + "owner": "Sahip", + "{{from}}-{{to}} of {{total}}": "{{from}}'dan {{to}}'e \"{{total}}\" gönderildi." +} \ No newline at end of file diff --git a/package.json b/package.json index 9a346dc7..d1ef4e67 100644 --- a/package.json +++ b/package.json @@ -9,11 +9,8 @@ "format": "prettier --write .", "prepare": "husky install", "postinstall": "husky install && yarn setup", - "translations:generate": "yarn i18next", "translations:generate-index": "node ./scripts/generateLocales.js", - "translations:pull": "localazy download", - "translations:push": "localazy upload -w $LOCALAZY_WRITE_KEY -r $LOCALAZY_READ_KEY", - "setup": "yarn nx run-many --target=setup --all && yarn translations:pull && yarn translations:generate-index", + "setup": "yarn nx run-many --target=setup --all", "build": "yarn nx run-many --target=build --all", "lint": "yarn nx run-many --target=lint --all", "dev": "yarn nx run-many --target=dev --all", @@ -27,7 +24,6 @@ "@citizenfx/client": "^2.0.5754-1", "@commitlint/cli": "^16.0.2", "@commitlint/config-conventional": "^16.0.0", - "@localazy/cli": "^1.6.0", "@types/node": "^18.6.1", "axios": "^0.26.1", "husky": "^7.0.4", @@ -39,4 +35,4 @@ "dependencies": { "i18next-parser": "^6.0.0" } -} \ No newline at end of file +} diff --git a/src/server/services/account/account.service.ts b/src/server/services/account/account.service.ts index 815dafea..ccf34d2c 100644 --- a/src/server/services/account/account.service.ts +++ b/src/server/services/account/account.service.ts @@ -629,8 +629,8 @@ export class AccountService { } async addMoneyByIdentifier(req: Request) { - logger.silly(`Adding money by identifier to ${req.data.identifier} ..`); - const { amount, message, identifier, fromIdentifier } = req.data; + logger.silly(`Adding money by identifier to ${req.data.toIdentifier} ..`); + const { amount, message, toIdentifier, fromIdentifier } = req.data; if (amount <= 0) { throw new ServerError(GenericErrors.BadInput); } @@ -638,7 +638,7 @@ export class AccountService { const t = await sequelize.transaction(); try { let fromAccount = undefined; - const account = await this._accountDB.getDefaultAccountByIdentifier(identifier ?? ''); + const account = await this._accountDB.getDefaultAccountByIdentifier(toIdentifier ?? ''); if (!account) { throw new ServerError(GenericErrors.NotFound); @@ -752,8 +752,8 @@ export class AccountService { } async removeMoneyByIdentifier(req: Request) { - const { amount, identifier, message, toIdentifier } = req.data; - logger.silly(`Removing ${amount} money by identifier from ${identifier} ..`); + const { amount, fromIdentifier, message, toIdentifier } = req.data; + logger.silly(`Removing ${amount} money by identifier from ${fromIdentifier} ..`); if (amount <= 0) { throw new ServerError(GenericErrors.BadInput); @@ -762,8 +762,8 @@ export class AccountService { const t = await sequelize.transaction(); try { let toAccount = undefined; - const account = await this._accountDB.getDefaultAccountByIdentifier(identifier ?? ''); - if (!account) { + const fromAccount = await this._accountDB.getDefaultAccountByIdentifier(fromIdentifier ?? ''); + if (!fromAccount) { throw new ServerError(GenericErrors.NotFound); } @@ -776,12 +776,12 @@ export class AccountService { await this._accountDB.decrement(toAccount, amount, t); } - await this._accountDB.decrement(account, amount, t); + await this._accountDB.decrement(fromAccount, amount, t); await this._transactionService.handleCreateTransaction( { amount, message, - fromAccount: account?.toJSON(), + fromAccount: fromAccount?.toJSON(), toAccount: toAccount?.toJSON(), type: TransactionType.Outgoing, }, diff --git a/typings/Account.ts b/typings/Account.ts index 9ebc3382..da998528 100644 --- a/typings/Account.ts +++ b/typings/Account.ts @@ -114,7 +114,8 @@ export interface ExternalAccountInput { export interface UpdateBankBalanceInput { amount: number; message: string; - identifier?: string; + toIdentifier?: string; + fromIdentifier?: string; } export interface UpdateBankBalanceByNumberInput { diff --git a/web/src/hooks/useNuiEvent.ts b/web/src/hooks/useNuiEvent.ts index 2153ad99..923a387e 100644 --- a/web/src/hooks/useNuiEvent.ts +++ b/web/src/hooks/useNuiEvent.ts @@ -34,9 +34,9 @@ export const useNuiEvent = (app: string, action: string, handler: (data const eventListener = (event: MessageEvent>) => { const { method: eventAction, app: tgtApp, data } = event.data; - if (savedHandler.current && savedHandler.current.call) { + if (savedHandler.current) { if (eventAction === action && tgtApp === app) { - savedHandler.current(data); + savedHandler.current?.(data); } } }; diff --git a/yarn.lock b/yarn.lock index 76955b4d..9724e87f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -198,16 +198,6 @@ dependencies: "@cspotcode/source-map-consumer" "0.8.0" -"@localazy/cli@^1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@localazy/cli/-/cli-1.6.0.tgz#6f82b34818379b7fa58315d7642a6cb797a305e8" - integrity sha512-kW4CUm+aWFu8RZLTdx71ojsx1H+UucaBNVpAxZYJSs8yZppI2Sm31MlTsWRxj2bpTtgxniPWhABSopoExYLhcg== - dependencies: - abort-controller "3.0.0" - node-fetch "2.6.1" - text-encoding "0.7.0" - ws "6.2.1" - "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -331,13 +321,6 @@ abbrev@1: resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -abort-controller@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - acorn-walk@^8.1.1: version "8.2.0" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" @@ -439,11 +422,6 @@ arrify@^2.0.1: resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== -async-limiter@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" - integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== - axios@^0.26.1: version "0.26.1" resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" @@ -1086,11 +1064,6 @@ escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - execa@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -2076,11 +2049,6 @@ node-addon-api@^3.2.1: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== -node-fetch@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - node-gyp-build@^4.3.0: version "4.5.0" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" @@ -2864,11 +2832,6 @@ tar-stream@~2.2.0: inherits "^2.0.3" readable-stream "^3.1.1" -text-encoding@0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643" - integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA== - text-extensions@^1.0.0: version "1.9.0" resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" @@ -3232,13 +3195,6 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -ws@6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" - integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== - dependencies: - async-limiter "~1.0.0" - xdg-basedir@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"