Compare commits

..

1 Commits

Author SHA1 Message Date
e03320d27b simplified deployment with docker (#639)
* updated Dockerfile and docker-compose.yml, replaced cron with ofelia and setup.sh with automatically executed startup.sh

* fixed permissions by setting them in setup-script
2022-03-16 18:29:21 +05:30
71 changed files with 3814 additions and 5941 deletions

View File

@ -1,162 +0,0 @@
name: Build PR Image
on:
pull_request:
types: [opened,synchronize,reopened,closed]
jobs:
build-application:
name: Build and Push `application`
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' || github.event.action != 'closed' }}
outputs:
tags: ${{ steps.meta.outputs.tags }}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Generate UUID image name
id: uuid
run: echo "UUID_TAG_APP=$(uuidgen)" >> $GITHUB_ENV
- name: Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: registry.uffizzi.com/${{ env.UUID_TAG_APP }}
tags: type=raw,value=60d
- name: Build and Push Image to registry.uffizzi.com ephemeral registry
uses: docker/build-push-action@v2
with:
push: true
context: ./
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./uffizzi/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
build-nginx:
name: Build and Push `nginx`
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' || github.event.action != 'closed' }}
outputs:
tags: ${{ steps.meta.outputs.tags }}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Generate UUID image name
id: uuid
run: echo "UUID_TAG_NGINX=$(uuidgen)" >> $GITHUB_ENV
- name: Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: registry.uffizzi.com/${{ env.UUID_TAG_NGINX }}
tags: type=raw,value=60d
- name: Build and Push Image to Uffizzi ephemeral registry
uses: docker/build-push-action@v2
with:
push: true
context: ./
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./uffizzi/nginx/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
build-crond:
name: Build and Push `crond`
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' || github.event.action != 'closed' }}
outputs:
tags: ${{ steps.meta.outputs.tags }}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Generate UUID image name
id: uuid
run: echo "UUID_TAG_CROND=$(uuidgen)" >> $GITHUB_ENV
- name: Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: registry.uffizzi.com/${{ env.UUID_TAG_CROND }}
tags: type=raw,value=60d
- name: Build and Push Image to registry.uffizzi.com ephemeral registry
uses: docker/build-push-action@v2
with:
push: true
context: ./
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./uffizzi/crond/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
render-compose-file:
name: Render Docker Compose File
# Pass output of this workflow to another triggered by `workflow_run` event.
runs-on: ubuntu-latest
outputs:
compose-file-cache-key: ${{ steps.hash.outputs.hash }}
needs:
- build-application
- build-nginx
- build-crond
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Render Compose File
run: |
APP_IMAGE=$(echo ${{ needs.build-application.outputs.tags }})
export APP_IMAGE
NGINX_IMAGE=$(echo ${{ needs.build-nginx.outputs.tags }})
export NGINX_IMAGE
CROND_IMAGE=$(echo ${{ needs.build-crond.outputs.tags }})
export CROND_IMAGE
# Render simple template from environment variables.
envsubst < ./uffizzi/docker-compose.uffizzi.yml > docker-compose.rendered.yml
cat docker-compose.rendered.yml
- name: Upload Rendered Compose File as Artifact
uses: actions/upload-artifact@v3
with:
name: preview-spec
path: docker-compose.rendered.yml
retention-days: 2
- name: Serialize PR Event to File
run: |
cat << EOF > event.json
${{ toJSON(github.event) }}
EOF
- name: Upload PR Event as Artifact
uses: actions/upload-artifact@v3
with:
name: preview-spec
path: event.json
retention-days: 2
delete-preview:
name: Call for Preview Deletion
runs-on: ubuntu-latest
if: ${{ github.event.action == 'closed' }}
steps:
# If this PR is closing, we will not render a compose file nor pass it to the next workflow.
- name: Serialize PR Event to File
run: echo '${{ toJSON(github.event) }}' > event.json
- name: Upload PR Event as Artifact
uses: actions/upload-artifact@v3
with:
name: preview-spec
path: event.json
retention-days: 2

View File

@ -1,84 +0,0 @@
name: Deploy Uffizzi Preview
on:
workflow_run:
workflows:
- "Build PR Image"
types:
- completed
jobs:
cache-compose-file:
name: Cache Compose File
runs-on: ubuntu-latest
outputs:
compose-file-cache-key: ${{ env.COMPOSE_FILE_HASH }}
pr-number: ${{ env.PR_NUMBER }}
steps:
- name: 'Download artifacts'
# Fetch output (zip archive) from the workflow run that triggered this workflow.
uses: actions/github-script@v6
with:
script: |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
});
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
return artifact.name == "preview-spec"
})[0];
let download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
let fs = require('fs');
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/preview-spec.zip`, Buffer.from(download.data));
- name: 'Unzip artifact'
run: unzip preview-spec.zip
- name: Read Event into ENV
run: |
echo 'EVENT_JSON<<EOF' >> $GITHUB_ENV
cat event.json >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Hash Rendered Compose File
id: hash
# If the previous workflow was triggered by a PR close event, we will not have a compose file artifact.
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
run: echo "COMPOSE_FILE_HASH=$(md5sum docker-compose.rendered.yml | awk '{ print $1 }')" >> $GITHUB_ENV
- name: Cache Rendered Compose File
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
uses: actions/cache@v3
with:
path: docker-compose.rendered.yml
key: ${{ env.COMPOSE_FILE_HASH }}
- name: Read PR Number From Event Object
id: pr
run: echo "PR_NUMBER=${{ fromJSON(env.EVENT_JSON).number }}" >> $GITHUB_ENV
- name: DEBUG - Print Job Outputs
if: ${{ runner.debug }}
run: |
echo "PR number: ${{ env.PR_NUMBER }}"
echo "Compose file hash: ${{ env.COMPOSE_FILE_HASH }}"
cat event.json
deploy-uffizzi-preview:
name: Use Remote Workflow to Preview on Uffizzi
needs:
- cache-compose-file
uses: UffizziCloud/preview-action/.github/workflows/reusable.yaml@v2.6.1
with:
# If this workflow was triggered by a PR close event, cache-key will be an empty string
# and this reusable workflow will delete the preview deployment.
compose-file-cache-key: ${{ needs.cache-compose-file.outputs.compose-file-cache-key }}
compose-file-cache-path: docker-compose.rendered.yml
server: https://app.uffizzi.com/
pr-number: ${{ needs.cache-compose-file.outputs.pr-number }}
permissions:
contents: read
pull-requests: write
id-token: write

1
.gitignore vendored
View File

@ -16,4 +16,3 @@ Homestead.yaml
.gitkeep
/public/docs
/.scribe
!storage/fonts/.gitkeep

30
Dockerfile Normal file → Executable file
View File

@ -1,8 +1,9 @@
FROM php:8.1-fpm
FROM php:7.4-fpm
# Arguments defined in docker-compose.yml
ARG user
ARG uid
WORKDIR /var/www
COPY ./docker-compose/php/uploads.ini /usr/local/etc/php/conf.d/uploads.ini
# Install system dependencies
RUN apt-get update && apt-get install -y \
@ -15,26 +16,21 @@ RUN apt-get update && apt-get install -y \
unzip \
libzip-dev \
libmagickwand-dev \
mariadb-client
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
mariadb-client \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pecl install imagick \
&& docker-php-ext-enable imagick
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring zip exif pcntl bcmath gd
RUN rmdir html && docker-php-ext-install pdo_mysql mbstring zip exif pcntl bcmath gd
# Get latest Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Create system user to run Composer and Artisan Commands
RUN useradd -G www-data,root -u $uid -d /home/$user $user
RUN mkdir -p /home/$user/.composer && \
chown -R $user:$user /home/$user
RUN useradd -G www-data,root -u 1000 -d /home/crater crater && chmod 777 /var/www/ && chown 1000:1000 /var/www/
USER 0
# Set working directory
WORKDIR /var/www
USER $user
COPY ./docker-compose/startup.sh /startup.sh
CMD ["/startup.sh"]

View File

@ -3,18 +3,18 @@
namespace Crater\Http\Controllers\V1\Admin\Modules;
use Crater\Http\Controllers\Controller;
use Crater\Http\Requests\UnzipUpdateRequest;
use Crater\Space\ModuleInstaller;
use Illuminate\Http\Request;
class UnzipModuleController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Crater\Http\Requests\UnzipUpdateRequest $request
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function __invoke(UnzipUpdateRequest $request)
public function __invoke(Request $request)
{
$this->authorize('manage modules');

View File

@ -3,18 +3,18 @@
namespace Crater\Http\Controllers\V1\Admin\Modules;
use Crater\Http\Controllers\Controller;
use Crater\Http\Requests\UploadModuleRequest;
use Crater\Space\ModuleInstaller;
use Illuminate\Http\Request;
class UploadModuleController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Crater\Http\Requests\UploadModuleRequest $request
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function __invoke(UploadModuleRequest $request)
public function __invoke(Request $request)
{
$this->authorize('manage modules');

View File

@ -2,25 +2,24 @@
namespace Crater\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use Crater\Http\Controllers\Controller;
use Crater\Models\Company;
use Crater\Models\Currency;
use Crater\Models\CompanySetting;
use Crater\Models\Customer;
use Illuminate\Http\Request;
use Crater\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use Crater\Http\Controllers\Controller;
use PDF;
class CustomerSalesReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
public function __invoke(Request $request, $hash)
{
$company = Company::where('unique_hash', $hash)->first();
@ -57,7 +56,6 @@ class CustomerSalesReportController extends Controller
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
$colors = [
'primary_text_color',
@ -82,7 +80,6 @@ class CustomerSalesReportController extends Controller
'company' => $company,
'from_date' => $from_date,
'to_date' => $to_date,
'currency' => $currency,
]);
$pdf = PDF::loadView('app.pdf.reports.sales-customers');

View File

@ -2,25 +2,24 @@
namespace Crater\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use Crater\Models\Company;
use Crater\Models\Expense;
use Crater\Models\Currency;
use Illuminate\Http\Request;
use Crater\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use Crater\Http\Controllers\Controller;
use Crater\Models\Company;
use Crater\Models\CompanySetting;
use Crater\Models\Expense;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use PDF;
class ExpensesReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
public function __invoke(Request $request, $hash)
{
$company = Company::where('unique_hash', $hash)->first();
@ -44,7 +43,6 @@ class ExpensesReportController extends Controller
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
$colors = [
'primary_text_color',
@ -68,7 +66,6 @@ class ExpensesReportController extends Controller
'company' => $company,
'from_date' => $from_date,
'to_date' => $to_date,
'currency' => $currency,
]);
$pdf = PDF::loadView('app.pdf.reports.expenses');

View File

@ -2,25 +2,24 @@
namespace Crater\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use Crater\Models\Company;
use Crater\Models\Currency;
use Illuminate\Http\Request;
use Crater\Models\InvoiceItem;
use Crater\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use Crater\Http\Controllers\Controller;
use Crater\Models\Company;
use Crater\Models\CompanySetting;
use Crater\Models\InvoiceItem;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use PDF;
class ItemSalesReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
public function __invoke(Request $request, $hash)
{
$company = Company::where('unique_hash', $hash)->first();
@ -44,7 +43,6 @@ class ItemSalesReportController extends Controller
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
$colors = [
'primary_text_color',
@ -68,7 +66,6 @@ class ItemSalesReportController extends Controller
'company' => $company,
'from_date' => $from_date,
'to_date' => $to_date,
'currency' => $currency,
]);
$pdf = PDF::loadView('app.pdf.reports.sales-items');

View File

@ -2,26 +2,25 @@
namespace Crater\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use Crater\Http\Controllers\Controller;
use Crater\Models\Company;
use Crater\Models\CompanySetting;
use Crater\Models\Expense;
use Crater\Models\Payment;
use Crater\Models\Currency;
use Illuminate\Http\Request;
use Crater\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use Crater\Http\Controllers\Controller;
use PDF;
class ProfitLossReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
public function __invoke(Request $request, $hash)
{
$company = Company::where('unique_hash', $hash)->first();
@ -50,8 +49,6 @@ class ProfitLossReportController extends Controller
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
$colors = [
'primary_text_color',
@ -77,7 +74,6 @@ class ProfitLossReportController extends Controller
'company' => $company,
'from_date' => $from_date,
'to_date' => $to_date,
'currency' => $currency,
]);
$pdf = PDF::loadView('app.pdf.reports.profit-loss');

View File

@ -2,25 +2,24 @@
namespace Crater\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use Crater\Models\Tax;
use Crater\Models\Company;
use Crater\Models\Currency;
use Illuminate\Http\Request;
use Crater\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use Crater\Http\Controllers\Controller;
use Crater\Models\Company;
use Crater\Models\CompanySetting;
use Crater\Models\Tax;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use PDF;
class TaxSummaryReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
public function __invoke(Request $request, $hash)
{
$company = Company::where('unique_hash', $hash)->first();
@ -45,8 +44,6 @@ class TaxSummaryReportController extends Controller
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
$colors = [
'primary_text_color',
@ -71,7 +68,6 @@ class TaxSummaryReportController extends Controller
'company' => $company,
'from_date' => $from_date,
'to_date' => $to_date,
'currency' => $currency,
]);
$pdf = PDF::loadView('app.pdf.reports.tax-summary');

View File

@ -1,37 +0,0 @@
<?php
namespace Crater\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UnzipUpdateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'path' => [
'required',
'regex:/^[\.\/\w\-]+$/'
],
'module' => [
'required',
'string'
]
];
}
}

View File

@ -25,7 +25,7 @@ class UploadExpenseReceiptRequest extends FormRequest
public function rules()
{
return [
'attachment_receipt' => [
'upload_receipt' => [
'nullable',
new Base64Mime(['gif', 'jpg', 'png'])
]

View File

@ -1,40 +0,0 @@
<?php
namespace Crater\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UploadModuleRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'avatar' => [
'required',
'file',
'mimes:zip',
'max:20000'
],
'module' => [
'required',
'string',
'max:100'
]
];
}
}

View File

@ -443,8 +443,7 @@ class Invoice extends Model implements HasMedia
$data['invoice'] = $this->toArray();
$data['customer'] = $this->customer->toArray();
$data['company'] = Company::find($this->company_id);
$data['subject'] = $this->getEmailString($data['subject']);
$data['body'] = $this->getEmailString($data['body']);
$data['body'] = $this->getEmailBody($data['body']);
$data['attach']['data'] = ($this->getEmailAttachmentSetting()) ? $this->getPDFData() : null;
return $data;
@ -636,7 +635,7 @@ class Invoice extends Model implements HasMedia
return $this->getFormattedString($this->notes);
}
public function getEmailString($body)
public function getEmailBody($body)
{
$values = array_merge($this->getFieldsArray(), $this->getExtraFields());

View File

@ -38,15 +38,15 @@
"barryvdh/laravel-ide-helper": "^2.6",
"beyondcode/laravel-dump-server": "^1.0",
"facade/ignition": "^2.3.6",
"friendsofphp/php-cs-fixer": "^3.8",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.0",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.0",
"pestphp/pest-plugin-parallel": "^0.2.1",
"phpunit/phpunit": "^9.3"
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
@ -81,14 +81,11 @@
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
}
}
}

2361
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -71,7 +71,6 @@ return [
["code" => "cs", "name" => "Czech"],
["code" => "el", "name" => "Greek"],
["code" => "hr", "name" => "Crotian"],
["code" => "th", "name" => "ไทย"],
],
/*

View File

@ -170,7 +170,7 @@ class CountriesTableSeeder extends Seeder
['id' => 152,'code' => 'NR','name' => "Nauru",'phonecode' => 674],
['id' => 153,'code' => 'NP','name' => "Nepal",'phonecode' => 977],
['id' => 154,'code' => 'AN','name' => "Netherlands Antilles",'phonecode' => 599],
['id' => 155,'code' => 'NL','name' => "Netherlands",'phonecode' => 31],
['id' => 155,'code' => 'NL','name' => "Netherlands The",'phonecode' => 31],
['id' => 156,'code' => 'NC','name' => "New Caledonia",'phonecode' => 687],
['id' => 157,'code' => 'NZ','name' => "New Zealand",'phonecode' => 64],
['id' => 158,'code' => 'NI','name' => "Nicaragua",'phonecode' => 505],

View File

@ -275,14 +275,6 @@ class CurrenciesTableSeeder extends Seeder
'thousand_separator' => '.',
'decimal_separator' => ',',
],
[
'name' => 'Central African Franc',
'code' => 'XAF',
'symbol' => 'CFA ',
'precision' => '2',
'thousand_separator' => ',',
'decimal_separator' => '.',
],
[
'name' => 'West African Franc',
'code' => 'XOF',

View File

@ -1,25 +1,22 @@
version: '3'
services:
app:
build:
args:
user: crater-user
uid: 1000
context: ./
dockerfile: Dockerfile
image: crater-php
build: .
image: craterapp/crater
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
- ./docker-compose/php/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:rw,delegated
- ./:/var/www:z
labels:
ofelia.enabled: "true"
ofelia.job-exec.somecron.schedule: "@every 60s"
ofelia.job-exec.somecron.command: "php artisan schedule:run"
networks:
- crater
db:
image: mariadb
restart: always
restart: unless-stopped
volumes:
- db:/var/lib/mysql
# If you want to persist data on the host, comment the line above this one...
@ -41,19 +38,19 @@ services:
ports:
- 80:80
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
- ./:/var/www:z
- ./docker-compose/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
networks:
- crater
cron:
build:
context: ./
dockerfile: ./docker-compose/cron.dockerfile
ofelia:
image: mcuadros/ofelia
restart: unless-stopped
command: daemon --docker
volumes:
- ./:/var/www
networks:
- crater
- /var/run/docker.sock:/var/run/docker.sock:ro
depends_on:
- app
volumes:
db:

View File

@ -1,10 +0,0 @@
FROM php:8.0-fpm-alpine
RUN apk add --no-cache \
php8-bcmath
RUN docker-php-ext-install pdo pdo_mysql bcmath
COPY docker-compose/crontab /etc/crontabs/root
CMD ["crond", "-f"]

View File

@ -1 +0,0 @@
* * * * * cd /var/www && php artisan schedule:run >> /dev/stdout 2>&1

View File

@ -1,6 +0,0 @@
#!/bin/sh
docker-compose exec app composer install --no-interaction --prefer-dist --optimize-autoloader
docker-compose exec app php artisan storage:link || true
docker-compose exec app php artisan key:generate

16
docker-compose/startup.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
chmod 775 /var/www/ -R
chown 1000:33 /var/www -R
if [ ! -f ".env" ]; then
cp .env.example .env
echo "created .env from .env.example"
fi
composer install --no-interaction --prefer-dist --optimize-autoloader
php artisan storage:link || true
php artisan key:generate
php-fpm

502
package-lock.json generated
View File

@ -65,13 +65,6 @@
"to-fast-properties": "^2.0.0"
}
},
"@esbuild/linux-loong64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz",
"integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==",
"dev": true,
"optional": true
},
"@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
@ -221,23 +214,6 @@
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.9.3.tgz",
"integrity": "sha512-xDu17cEfh7Kid/d95kB6tZsLOmSWKCZKtprnhVepjsSaCij+lM3mItSJDuuHDMbCWTh8Ejmebwb+KONcCJ0eXQ=="
},
"@rvxlab/tailwind-plugin-ios-full-height": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rvxlab/tailwind-plugin-ios-full-height/-/tailwind-plugin-ios-full-height-1.1.0.tgz",
"integrity": "sha512-jPIxXn0raN/YTk8nXesqM+JbS2WWd5XaUk/MbaAgVDDPyYtsPfeN3B26xIhSa2oE2+JB66tegPUMSOmixzroXg==",
"dev": true
},
"@stripe/stripe-js": {
"version": "1.44.1",
"resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.44.1.tgz",
"integrity": "sha512-DKj3U6tS+sCNsSXsoZbOl5gDrAVD3cAZ9QCiVSykLC3iJo085kkmw/3BAACRH54Bq2bN34yySuH6G1SLh2xHXA=="
},
"@tailwindcss/aspect-ratio": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz",
"integrity": "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==",
"dev": true
},
"@tailwindcss/forms": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.4.0.tgz",
@ -247,35 +223,6 @@
"mini-svg-data-uri": "^1.2.3"
}
},
"@tailwindcss/line-clamp": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.3.1.tgz",
"integrity": "sha512-pNr0T8LAc3TUx/gxCfQZRe9NB2dPEo/cedPHzUGIPxqDMhgjwNm6jYxww4W5l0zAsAddxr+XfZcqttGiFDgrGg=="
},
"@tailwindcss/typography": {
"version": "0.5.8",
"resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.8.tgz",
"integrity": "sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==",
"dev": true,
"requires": {
"lodash.castarray": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.merge": "^4.6.2",
"postcss-selector-parser": "6.0.10"
},
"dependencies": {
"postcss-selector-parser": {
"version": "6.0.10",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
"integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
"dev": true,
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
}
}
}
},
"@tiptap/core": {
"version": "2.0.0-beta.99",
"resolved": "https://registry.npmjs.org/@tiptap/core/-/core-2.0.0-beta.99.tgz",
@ -439,11 +386,6 @@
"resolved": "https://registry.npmjs.org/@tiptap/extension-text/-/extension-text-2.0.0-beta.13.tgz",
"integrity": "sha512-0EtAwuRldCAoFaL/iXgkRepEeOd55rPg5N4FQUN1xTwZT7PDofukP0DG/2jff/Uj17x4uTaJAa9qlFWuNnDvjw=="
},
"@tiptap/extension-text-align": {
"version": "2.0.0-beta.202",
"resolved": "https://registry.npmjs.org/@tiptap/extension-text-align/-/extension-text-align-2.0.0-beta.202.tgz",
"integrity": "sha512-cB5SBKRTn730BBwtPQaKfc7uYgI7bGuD1UbsdF8UY93vIsRjdRO4McNlvgfDrb8WrD460PsOOXx18YwX1+3T/Q=="
},
"@tiptap/starter-kit": {
"version": "2.0.0-beta.97",
"resolved": "https://registry.npmjs.org/@tiptap/starter-kit/-/starter-kit-2.0.0-beta.97.tgz",
@ -595,12 +537,6 @@
"@types/prosemirror-transform": "*"
}
},
"@vitejs/plugin-vue": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.10.2.tgz",
"integrity": "sha512-/QJ0Z9qfhAFtKRY+r57ziY4BSbGUTGsPRMpB/Ron3QPwBZM4OZAZHdTa4a8PafCwU5DTatXG8TMDoP8z+oDqJw==",
"dev": true
},
"@vue/compiler-core": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.4.tgz",
@ -622,70 +558,6 @@
"@vue/shared": "3.2.4"
}
},
"@vue/compiler-sfc": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz",
"integrity": "sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==",
"dev": true,
"requires": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.45",
"@vue/compiler-dom": "3.2.45",
"@vue/compiler-ssr": "3.2.45",
"@vue/reactivity-transform": "3.2.45",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7",
"postcss": "^8.1.10",
"source-map": "^0.6.1"
},
"dependencies": {
"@babel/parser": {
"version": "7.20.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz",
"integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==",
"dev": true
},
"@vue/compiler-core": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz",
"integrity": "sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==",
"dev": true,
"requires": {
"@babel/parser": "^7.16.4",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
}
},
"@vue/compiler-dom": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz",
"integrity": "sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==",
"dev": true,
"requires": {
"@vue/compiler-core": "3.2.45",
"@vue/shared": "3.2.45"
}
},
"@vue/compiler-ssr": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz",
"integrity": "sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==",
"dev": true,
"requires": {
"@vue/compiler-dom": "3.2.45",
"@vue/shared": "3.2.45"
}
},
"@vue/shared": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz",
"integrity": "sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==",
"dev": true
}
}
},
"@vue/compiler-ssr": {
"version": "3.2.19",
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.19.tgz",
@ -735,45 +607,6 @@
"@vue/shared": "3.2.4"
}
},
"@vue/reactivity-transform": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz",
"integrity": "sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==",
"dev": true,
"requires": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.45",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7"
},
"dependencies": {
"@babel/parser": {
"version": "7.20.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz",
"integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==",
"dev": true
},
"@vue/compiler-core": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz",
"integrity": "sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==",
"dev": true,
"requires": {
"@babel/parser": "^7.16.4",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
}
},
"@vue/shared": {
"version": "3.2.45",
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz",
"integrity": "sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==",
"dev": true
}
}
},
"@vue/ref-transform": {
"version": "3.2.19",
"resolved": "https://registry.npmjs.org/@vue/ref-transform/-/ref-transform-3.2.19.tgz",
@ -844,44 +677,6 @@
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.4.tgz",
"integrity": "sha512-j2j1MRmjalVKr3YBTxl/BClSIc8UQ8NnPpLYclxerK65JIowI4O7n8O8lElveEtEoHxy1d7BelPUDI0Q4bumqg=="
},
"@vuelidate/components": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@vuelidate/components/-/components-1.2.3.tgz",
"integrity": "sha512-QE+oSzJVYZUfYcIAsM+QCrB3xRJoesFzUTNtfuYbhWfdMmTHxA9YtKuKWlTsR1nK8+SmHMJROIG8PnL77ZLSuQ==",
"requires": {
"@vuelidate/core": "^2.0.0"
}
},
"@vuelidate/core": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@vuelidate/core/-/core-2.0.0.tgz",
"integrity": "sha512-xIFgdQlScO0aaSZ0wTGPJh8YcTMNAj5veI8yPgiAyxOT+GV7vNQFiU1vpYWCL4cklkkhYvRRSC2OEX7YOZNmPQ==",
"requires": {
"vue-demi": "^0.13.11"
},
"dependencies": {
"vue-demi": {
"version": "0.13.11",
"resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz",
"integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A=="
}
}
},
"@vuelidate/validators": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@vuelidate/validators/-/validators-2.0.0.tgz",
"integrity": "sha512-fQQcmDWfz7pyH5/JPi0Ng2GEgNK1pUHn/Z/j5rG/Q+HwhgIXvJblTPcZwKOj1ABL7V4UVuGKECvZCDHNGOwdrg==",
"requires": {
"vue-demi": "^0.13.11"
},
"dependencies": {
"vue-demi": {
"version": "0.13.11",
"resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz",
"integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A=="
}
}
},
"@vueuse/core": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@vueuse/core/-/core-6.0.0.tgz",
@ -1445,175 +1240,6 @@
}
}
},
"esbuild": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz",
"integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==",
"dev": true,
"requires": {
"@esbuild/linux-loong64": "0.14.54",
"esbuild-android-64": "0.14.54",
"esbuild-android-arm64": "0.14.54",
"esbuild-darwin-64": "0.14.54",
"esbuild-darwin-arm64": "0.14.54",
"esbuild-freebsd-64": "0.14.54",
"esbuild-freebsd-arm64": "0.14.54",
"esbuild-linux-32": "0.14.54",
"esbuild-linux-64": "0.14.54",
"esbuild-linux-arm": "0.14.54",
"esbuild-linux-arm64": "0.14.54",
"esbuild-linux-mips64le": "0.14.54",
"esbuild-linux-ppc64le": "0.14.54",
"esbuild-linux-riscv64": "0.14.54",
"esbuild-linux-s390x": "0.14.54",
"esbuild-netbsd-64": "0.14.54",
"esbuild-openbsd-64": "0.14.54",
"esbuild-sunos-64": "0.14.54",
"esbuild-windows-32": "0.14.54",
"esbuild-windows-64": "0.14.54",
"esbuild-windows-arm64": "0.14.54"
}
},
"esbuild-android-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz",
"integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==",
"dev": true,
"optional": true
},
"esbuild-android-arm64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz",
"integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==",
"dev": true,
"optional": true
},
"esbuild-darwin-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz",
"integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==",
"dev": true,
"optional": true
},
"esbuild-darwin-arm64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz",
"integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==",
"dev": true,
"optional": true
},
"esbuild-freebsd-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz",
"integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==",
"dev": true,
"optional": true
},
"esbuild-freebsd-arm64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz",
"integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==",
"dev": true,
"optional": true
},
"esbuild-linux-32": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz",
"integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==",
"dev": true,
"optional": true
},
"esbuild-linux-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz",
"integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==",
"dev": true,
"optional": true
},
"esbuild-linux-arm": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz",
"integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==",
"dev": true,
"optional": true
},
"esbuild-linux-arm64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz",
"integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==",
"dev": true,
"optional": true
},
"esbuild-linux-mips64le": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz",
"integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==",
"dev": true,
"optional": true
},
"esbuild-linux-ppc64le": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz",
"integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==",
"dev": true,
"optional": true
},
"esbuild-linux-riscv64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz",
"integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==",
"dev": true,
"optional": true
},
"esbuild-linux-s390x": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz",
"integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==",
"dev": true,
"optional": true
},
"esbuild-netbsd-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz",
"integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==",
"dev": true,
"optional": true
},
"esbuild-openbsd-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz",
"integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==",
"dev": true,
"optional": true
},
"esbuild-sunos-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz",
"integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==",
"dev": true,
"optional": true
},
"esbuild-windows-32": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz",
"integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==",
"dev": true,
"optional": true
},
"esbuild-windows-64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz",
"integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==",
"dev": true,
"optional": true
},
"esbuild-windows-arm64": {
"version": "0.14.54",
"resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz",
"integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==",
"dev": true,
"optional": true
},
"escalade": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
@ -2321,24 +1947,12 @@
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
"integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
},
"lodash.castarray": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz",
"integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==",
"dev": true
},
"lodash.clonedeep": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
"integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=",
"dev": true
},
"lodash.isplainobject": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
"dev": true
},
"lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
@ -2404,9 +2018,9 @@
"integrity": "sha512-+fA2oRcR1dJI/7ITmeQJDrYWks0wodlOz0pAEhKYJ2IVc1z0AnwJUsKY2fzFmPAM3Jo9J0rBx8JAA9QQSJ5PuA=="
},
"minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"dev": true,
"requires": {
"brace-expansion": "^1.1.7"
@ -2591,22 +2205,6 @@
"integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
"dev": true
},
"pinia": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/pinia/-/pinia-2.0.24.tgz",
"integrity": "sha512-DDLd4Iphyc+6PYYYbx7jkb6WP9gecgu9bz9huyB5rb7CdJI3DhzYiZI+/Ih8MLewRrP9DSpslF/BgSNrJtZU7A==",
"requires": {
"@vue/devtools-api": "^6.4.5",
"vue-demi": "*"
},
"dependencies": {
"@vue/devtools-api": {
"version": "6.4.5",
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.4.5.tgz",
"integrity": "sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ=="
}
}
},
"postcss": {
"version": "8.4.5",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz",
@ -2910,15 +2508,6 @@
"glob": "^7.1.3"
}
},
"rollup": {
"version": "2.77.3",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.3.tgz",
"integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==",
"dev": true,
"requires": {
"fsevents": "~2.3.2"
}
},
"rope-sequence": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.2.tgz",
@ -3079,12 +2668,6 @@
"has-flag": "^3.0.0"
}
},
"supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"dev": true
},
"table": {
"version": "6.7.2",
"resolved": "https://registry.npmjs.org/table/-/table-6.7.2.tgz",
@ -3351,86 +2934,12 @@
"resolved": "https://registry.npmjs.org/v-money3/-/v-money3-3.16.1.tgz",
"integrity": "sha512-U0GjmdybvEwfxCpZiTUbKugSglJbX6wxlyMeg0YJdLTAKlnjMRDph3hpNJlTlg5Gs8MQRpDVdaLysBjV749HLg=="
},
"v-tooltip": {
"version": "4.0.0-beta.17",
"resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-4.0.0-beta.17.tgz",
"integrity": "sha512-d7v/6KEXQOtcj3NT3Z1LpbDv8SBh8JgbsD+3s/zGIGCxiXC2SoVW6wGV4X0MlCo97PiosibcSe+VKbFiy4AKnQ==",
"requires": {
"@popperjs/core": "^2.11.0",
"vue-resize": "^2.0.0-alpha.1"
},
"dependencies": {
"@popperjs/core": {
"version": "2.11.6",
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
"integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw=="
}
}
},
"v8-compile-cache": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
"integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
"dev": true
},
"vite": {
"version": "2.9.15",
"resolved": "https://registry.npmjs.org/vite/-/vite-2.9.15.tgz",
"integrity": "sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==",
"dev": true,
"requires": {
"esbuild": "^0.14.27",
"fsevents": "~2.3.2",
"postcss": "^8.4.13",
"resolve": "^1.22.0",
"rollup": ">=2.59.0 <2.78.0"
},
"dependencies": {
"is-core-module": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
"integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
"dev": true,
"requires": {
"has": "^1.0.3"
}
},
"nanoid": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
"integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
"dev": true
},
"postcss": {
"version": "8.4.19",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz",
"integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==",
"dev": true,
"requires": {
"nanoid": "^3.3.4",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
}
},
"resolve": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
"dev": true,
"requires": {
"is-core-module": "^2.9.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
},
"source-map-js": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
"integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
"dev": true
}
}
},
"vue": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/vue/-/vue-3.2.4.tgz",
@ -3493,11 +3002,6 @@
"@vue/devtools-api": "^6.0.0-beta.7"
}
},
"vue-resize": {
"version": "2.0.0-alpha.1",
"resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz",
"integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg=="
},
"vue-router": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.0.11.tgz",

View File

@ -17,7 +17,18 @@
<td class="px-5 py-4 text-left align-top">
<div class="flex justify-start">
<div
class="flex items-center justify-center w-5 h-5 mt-2 mr-2 text-gray-300 cursor-move handle"
class="
flex
items-center
justify-center
w-5
h-5
mt-2
text-gray-300
cursor-move
handle
mr-2
"
>
<DragIcon />
</div>
@ -97,7 +108,7 @@
<BaseIcon
name="ChevronDownIcon"
class="w-4 h-4 ml-1 text-gray-500"
class="w-4 h-4 text-gray-500 ml-1"
/>
</span>
</BaseButton>
@ -144,7 +155,7 @@
<BaseContentPlaceholders v-if="loading">
<BaseContentPlaceholdersText
:lines="1"
class="w-24 h-8 border rounded-md"
class="w-24 h-8 rounded-md border"
/>
</BaseContentPlaceholders>
@ -164,7 +175,6 @@
:ability="abilities.CREATE_INVOICE"
:store="store"
:store-prop="storeProp"
:discount="discount"
@update="updateTax"
/>
</td>

View File

@ -30,13 +30,24 @@
<template v-if="userStore.hasAbilities(ability)" #action>
<button
type="button"
class="flex items-center justify-center w-full px-2 py-2 bg-gray-200 border-none outline-none cursor-pointer "
class="
flex
items-center
justify-center
w-full
px-2
cursor-pointer
py-2
bg-gray-200
border-none
outline-none
"
@click="openTaxModal"
>
<BaseIcon name="CheckCircleIcon" class="h-5 text-primary-400" />
<label
class="ml-2 text-sm leading-none cursor-pointer text-primary-400"
class="ml-2 text-sm leading-none text-primary-400 cursor-pointer"
>{{ $t('invoices.add_new_tax') }}</label
>
</button>
@ -104,10 +115,6 @@ const props = defineProps({
type: Number,
default: 0,
},
discountedTotal: {
type: Number,
default: 0,
},
currency: {
type: [Object, String],
required: true,
@ -146,19 +153,19 @@ const filteredTypes = computed(() => {
})
const taxAmount = computed(() => {
if (localTax.compound_tax && props.discountedTotal) {
return ((props.discountedTotal + props.totalTax) * localTax.percent) / 100
if (localTax.compound_tax && props.total) {
return ((props.total + props.totalTax) * localTax.percent) / 100
}
if (props.discountedTotal && localTax.percent) {
return (props.discountedTotal * localTax.percent) / 100
if (props.total && localTax.percent) {
return (props.total * localTax.percent) / 100
}
return 0
})
watch(
() => props.discountedTotal,
() => props.total,
() => {
updateRowTax()
}

View File

@ -29,7 +29,14 @@
<label
v-else
class="flex items-center justify-center m-0 text-lg text-black uppercase "
class="
flex
items-center
justify-center
m-0
text-lg text-black
uppercase
"
>
<BaseFormatMoney
:amount="store.getSubTotal"
@ -59,7 +66,14 @@
<label
v-else-if="store[storeProp].tax_per_item === 'YES'"
class="flex items-center justify-center m-0 text-lg text-black uppercase "
class="
flex
items-center
justify-center
m-0
text-lg text-black
uppercase
"
>
<BaseFormatMoney :amount="tax.amount" :currency="defaultCurrency" />
</label>
@ -84,7 +98,7 @@
<BaseContentPlaceholders v-if="isLoading">
<BaseContentPlaceholdersText
:lines="1"
class="w-24 h-8 border rounded-md"
class="w-24 h-8 rounded-md border"
/>
</BaseContentPlaceholders>
<div v-else class="flex" style="width: 140px" role="group">
@ -100,7 +114,7 @@
<BaseDropdown position="bottom-end">
<template #activator>
<BaseButton
class="p-2 rounded-none rounded-tr-md rounded-br-md"
class="rounded-tr-md rounded-br-md p-2 rounded-none"
type="button"
variant="white"
>
@ -113,7 +127,7 @@
<BaseIcon
name="ChevronDownIcon"
class="w-4 h-4 ml-1 text-gray-500"
class="w-4 h-4 text-gray-500 ml-1"
/>
</span>
</BaseButton>
@ -166,7 +180,15 @@
</div>
<div
class="flex items-center justify-between w-full pt-2 mt-5 border-t border-gray-200 border-solid "
class="
flex
items-center
justify-between
w-full
pt-2
mt-5
border-t border-gray-200 border-solid
"
>
<BaseContentPlaceholders v-if="isLoading">
<BaseContentPlaceholdersText :lines="1" class="w-16 h-5" />
@ -182,7 +204,14 @@
</BaseContentPlaceholders>
<label
v-else
class="flex items-center justify-center text-lg uppercase text-primary-400"
class="
flex
items-center
justify-center
text-lg
uppercase
text-primary-400
"
>
<BaseFormatMoney :amount="store.getTotal" :currency="defaultCurrency" />
</label>
@ -305,7 +334,6 @@ function selectPercentage() {
function onSelectTax(selectedTax) {
let amount = 0
if (selectedTax.compound_tax && props.store.getSubtotalWithDiscount) {
amount = Math.round(
((props.store.getSubtotalWithDiscount + props.store.getTotalSimpleTax) *

View File

@ -143,7 +143,7 @@
<template #activator>
<img
:src="previewAvatar"
class="block w-8 h-8 rounded md:h-9 md:w-9 object-cover"
class="block w-8 h-8 rounded md:h-9 md:w-9"
/>
</template>

View File

@ -54,6 +54,8 @@
label="name"
:options="itemStore.itemUnits"
value-prop="id"
:can-deselect="false"
:can-clear="false"
:placeholder="$t('items.select_a_unit')"
searchable
track-by="name"

View File

@ -12,7 +12,7 @@
"settings": "Nastavení",
"logout": "Odhlásit se",
"users": "Uživatelé",
"modules": "Moduly"
"modules": "Modules"
},
"general": {
"add_company": "Přidat firmu",
@ -93,14 +93,14 @@
"no_note_found": "Nebyly nalezeny žádné poznámky",
"insert_note": "Vložit poznámku",
"copied_pdf_url_clipboard": "Adresa PDF zkopírována do schránky!",
"copied_url_clipboard": "Zkopírováno do schránky!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Dokumentace",
"do_you_wish_to_continue": "Přejete si pokračovat?",
"note": "Poznámka",
"pay_invoice": "Zaplatit fakturu",
"login_successfully": "Přihlášení proběhlo úspěšně!",
"logged_out_successfully": "Odhlášení proběhlo úspěšně",
"mark_as_default": "Označit jako výchozí"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Vybrat rok",
@ -108,8 +108,8 @@
"due_amount": "Částka k zaplacení",
"customers": "Zákazníci",
"invoices": "Faktury",
"estimates": "Nabídky",
"payments": "Platby"
"estimates": "Odhady",
"payments": "Payments"
},
"chart_info": {
"total_sales": "Slevy",
@ -187,7 +187,7 @@
"website": "Webová stránka",
"overview": "Přehled",
"invoice_prefix": "Prefix pro faktury",
"estimate_prefix": "Prefix pro nabídky",
"estimate_prefix": "Prefix pro odhady",
"payment_prefix": "Prefix pro platby",
"enable_portal": "Povolit portál",
"country": "Země",
@ -208,10 +208,10 @@
"new_customer": "Nový zákazník",
"edit_customer": "Upravit zákazníka",
"basic_info": "Základní informace",
"portal_access": "Přístup do portálu",
"portal_access_text": "Chcete povolit tomuto zákazníkovi možnost přihlásit se na zákaznický portál?",
"portal_access_url": "URL pro přihlášení do zákaznického portálu",
"portal_access_url_help": "Zkopírujte a pošlete výše uvedenou adresu URL vašemu zákazníkovi pro poskytnutí přístupu.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "Fakturační adresa",
"shipping_address": "Doručovací adresa",
"copy_billing_address": "Zkopírovat z fakturace",
@ -231,7 +231,7 @@
"confirm_delete": "Nebudete moci obnovit tohoto zákazníka a všechny jeho faktury, odhady a platby. | Nebudete moci obnovit tyto zákazníky a všechny jejich faktury, odhady a platby.",
"created_message": "Zákazník úspěšně vytvořen",
"updated_message": "Zákazník úspěšně upraven",
"address_updated_message": "Adresa úspěšně aktualizována",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Zákazník úspěšně smazán | Zákazníci úspěšně smazáni",
"edit_currency_not_allowed": "Po vytvoření transakce nelze změnit měnu."
},
@ -264,11 +264,11 @@
"deleted_message": "Položka byla úspěšně odstraněna | Položky byly úspěšně odstraněny"
},
"estimates": {
"title": "Nabídky",
"accept_estimate": "Přijmout nabídku",
"reject_estimate": "Odmítnout nabídku",
"estimate": "Nabídka | Nabídky",
"estimates_list": "Seznam nabídek",
"title": "Odhady",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Odhad | Odhady",
"estimates_list": "Seznam odhadů",
"days": "{days} dní",
"months": "{months} měsíc",
"years": "{years} rok",
@ -283,7 +283,7 @@
"total": "Celkem",
"discount": "Sleva",
"sub_total": "Mezisoučet",
"estimate_number": "Číslo nabídky",
"estimate_number": "Odhadované číslo",
"ref_number": "Referenční číslo",
"contact": "Kontakt",
"add_item": "Přidat položku",
@ -299,11 +299,11 @@
"estimate_template": "Šablona",
"convert_to_invoice": "Převést na fakturu",
"mark_as_sent": "Označit jako odeslané",
"send_estimate": "Odeslat nabídku",
"resend_estimate": "Znovu odeslat nabídku",
"send_estimate": "Odeslat odhad",
"resend_estimate": "Znovu odeslat odhad",
"record_payment": "Zaznamenat platbu",
"add_estimate": "Přidat nabídku",
"save_estimate": "Uložit nabídku",
"add_estimate": "Přidat odhad",
"save_estimate": "Uložit odhad",
"confirm_conversion": "Tento odhad bude použit k vytvoření nové faktury.",
"conversion_message": "Faktura byla úspěšně vytvořena",
"confirm_send_estimate": "Tento odhad bude zaslán e-mailem zákazníkovi",
@ -318,10 +318,10 @@
},
"accepted": "Přijato",
"rejected": "Odmítnuto",
"expired": "Vypršela platnost",
"expired": "Expired",
"sent": "Odesláno",
"draft": "Koncept",
"viewed": "Zobrazené",
"viewed": "Viewed",
"declined": "Odmítnuto",
"new_estimate": "Nový odhad",
"add_new_estimate": "Přidat nový odhad",
@ -355,14 +355,14 @@
"select_an_item": "Pište nebo klikněte pro výběr položky",
"type_item_description": "Zadejte popis položky (volitelné)"
},
"mark_as_default_estimate_template_description": "Je-li povoleno, bude vybraná šablona automaticky vybrána pro nové nabídky."
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Faktury",
"download": "Stáhnout",
"pay_invoice": "Zaplatit fakturu",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "Seznam faktur",
"invoice_information": "Informace o faktuře",
"invoice_information": "Invoice Information",
"days": "{days} dní",
"months": "{months} měsíc",
"years": "{years} rok",
@ -447,7 +447,7 @@
"marked_as_sent_message": "Faktura označena jako úspěšně odeslaná",
"something_went_wrong": "něco se nezdařilo",
"invalid_due_amount_message": "Celková částka faktury nemůže být nižší než celková částka zaplacená za tuto fakturu. Chcete-li pokračovat, upravte fakturu nebo smažte související platby.",
"mark_as_default_invoice_template_description": "Je-li povoleno, bude vybraná šablona automaticky vybrána pro nové faktury."
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Opakující se faktury",
@ -526,7 +526,7 @@
"cloned_successfully": "Opakující se faktura úspěšně naklonována",
"clone_invoice": "Naklonovat opakující se fakturu",
"confirm_clone": "Tato opakující se faktura bude naklonována do nové opakující se faktury",
"add_customer_email": "Pro automatické odesílání faktur prosím přidejte e-mailovou adresu tohoto zákazníka.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Název položky",
"description": "Popis",
@ -658,49 +658,49 @@
"retype_password": "Zadejte heslo znovu"
},
"modules": {
"buy_now": "Koupit",
"install": "Instalovat",
"price": "Cena",
"download_zip_file": "Stáhnout soubor ZIP",
"unzipping_package": "Rozbalování balíku",
"copying_files": "Kopírování souborů",
"deleting_files": "Odstraňování nepoužitých souborů",
"completing_installation": "Dokončování instalace",
"update_failed": "Aktualizace se nezdařila",
"install_success": "Modul byl úspěšně nainstalován!",
"customer_reviews": "Recenze",
"license": "Licence",
"faq": "Často kladené dotazy (FAQ)",
"monthly": "Měsíčně",
"yearly": "Ročně",
"updated": "Aktualizováno",
"version": "Verze",
"disable": "Zakázat",
"module_disabled": "Modul zakázán",
"enable": "Povolit",
"module_enabled": "Modul povolen",
"update_to": "Aktualizovat na",
"module_updated": "Modul byl úspěšně aktualizován!",
"title": "Moduly",
"module": "Modul | Moduly",
"buy_now": "Buy Now",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API token",
"invalid_api_token": "Neplatný API token.",
"other_modules": "Další moduly",
"view_all": "Zobrazit vše",
"no_reviews_found": "Pro tento modul zatím neexistují žádné recenze!",
"module_not_purchased": "Modul není zakoupený",
"module_not_found": "Modul nebyl nalezen",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Naposledy aktualizováno",
"connect_installation": "Připojte vaši instalaci",
"api_token_description": "Přihlaste se k {url} a připojte tuto instalaci zadáním API tokenu. Vaše zakoupené moduly se zde zobrazí po navázání připojení.",
"view_module": "Zobrazit modul",
"update_available": "Je k dispozici aktualizace",
"purchased": "Zakoupeno",
"installed": "Nainstalováno",
"no_modules_installed": "Nejsou nainstalovány žádné moduly!",
"disable_warning": "Všechna nastavení pro tuto konkrétní položku budou vrácena zpět.",
"what_you_get": "Co získáte"
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Uživatelé",
@ -731,7 +731,7 @@
"companies": "Společnosti"
},
"reports": {
"title": "Hlášení",
"title": "Report",
"from_date": "Datum od",
"to_date": "Do data",
"status": "Stav",
@ -739,8 +739,8 @@
"unpaid": "Nezaplaceno",
"download_pdf": "Stáhnout PDF",
"view_pdf": "Zobrazit PDF",
"update_report": "Upravit hlášení",
"report": "Hlášení | Hlášení",
"update_report": "Upravit report",
"report": "Report | Reporty",
"profit_loss": {
"profit_loss": "Zisk a ztráta",
"to_date": "Do data",
@ -752,7 +752,7 @@
"date_range": "Vybrat časový rozsah",
"to_date": "Do data",
"from_date": "Od data",
"report_type": "Typ hlášení"
"report_type": "Typ reportu"
},
"taxes": {
"taxes": "Daně",
@ -807,10 +807,10 @@
"payment_modes": "Způsoby plateb",
"notes": "Poznámky",
"exchange_rate": "Směnný kurz",
"address_information": "Adresa"
"address_information": "Address Information"
},
"address_information": {
"section_description": " Adresu můžete aktualizovat pomocí formuláře níže."
"section_description": " You can update Your Address information using form below."
},
"title": "Nastavení",
"setting": "Nastavení | Nastavení",
@ -1114,7 +1114,7 @@
"exchange_help_text": "Zadejte směnný kurz pro převod z {currency} do {baseCurrency}",
"currency_freak": "Currency Freak",
"currency_layer": "Currency Layer",
"open_exchange_rate": "Otevřít směnný kurz",
"open_exchange_rate": "Open Exchange Rate",
"currency_converter": "Převodník měn",
"server": "Server",
"url": "URL",
@ -1150,8 +1150,8 @@
"payment_mode_added": "Platební metoda přidána",
"payment_mode_updated": "Platební metoda upravena",
"payment_mode_confirm_delete": "Nebudete moci obnovit tuto platební metodu",
"payments_attached": "Tento způsob platby je již připojen k platbám. Chcete-li pokračovat v odstranění, odstraňte připojené platby.",
"expenses_attached": "Tento způsob platby je již připojen k výdajům. Chcete-li pokračovat v odstranění, odstraňte připojené výdaje.",
"payments_attached": "This payment method is already attached to payments. Please delete the attached payments to proceed with deletion.",
"expenses_attached": "This payment method is already attached to expenses. Please delete the attached expenses to proceed with deletion.",
"deleted_message": "Platební metoda byla úspěšně odstraněna"
},
"expense_category": {
@ -1178,8 +1178,8 @@
"discount_setting": "Nastavení slev",
"discount_per_item": "Sleva za položku ",
"discount_setting_description": "Povolte tuto možnost, pokud chcete přidat slevu do jednotlivých položek faktury. Ve výchozím nastavení je sleva přidána přímo na fakturu.",
"expire_public_links": "Automaticky zrušit platnost veřejných odkazů",
"expire_setting_description": "Určete, zda chcete zrušit všechny odkazy odeslané aplikací k zobrazení faktur, odhadů, plateb atd. po stanovené době trvání.",
"expire_public_links": "Automatically Expire Public Links",
"expire_setting_description": "Specify whether you would like to expire all the links sent by application to view invoices, estimates & payments, etc after a specified duration.",
"save": "Uložit",
"preference": "Předvolba | Předvolby",
"general_settings": "Výchozí předvolby systému.",
@ -1301,16 +1301,16 @@
"invalid_disk_credentials": "Nesprávné přihlašovací údaje pro vybraný disk"
},
"taxations": {
"add_billing_address": "Zadejte fakturační adresu",
"add_shipping_address": "Zadejte doručovací adresu",
"add_company_address": "Zadejte adresu firmy",
"modal_description": "Níže uvedené informace jsou vyžadovány pro načtení daně z prodeje.",
"add_address": "Přidat adresu pro načtení daně z prodeje.",
"address_placeholder": "Například: Moje Ulice 123",
"city_placeholder": "Například: Praha",
"state_placeholder": "Například: CZ",
"zip_placeholder": "Například: 90024",
"invalid_address": "Zadejte prosím platnou adresu."
"add_billing_address": "Enter Billing Address",
"add_shipping_address": "Enter Shipping Address",
"add_company_address": "Enter Company Address",
"modal_description": "The information below is required in order to fetch sales tax.",
"add_address": "Add Address for fetching sales tax.",
"address_placeholder": "Example: 123, My Street",
"city_placeholder": "Example: Los Angeles",
"state_placeholder": "Example: CA",
"zip_placeholder": "Example: 90024",
"invalid_address": "Please provide valid address details."
}
},
"wizard": {
@ -1470,17 +1470,17 @@
"not_allowed": "Není povoleno",
"login_invalid_credentials": "Tyto údaje neodpovídají našim záznamům.",
"enter_valid_cron_format": "Zadejte platný formát cronu",
"email_could_not_be_sent": "E-mail nemohl být odeslán na tuto e-mailovou adresu.",
"invalid_address": "Zadejte prosím platnou adresu.",
"invalid_key": "Zadejte prosím platný klíč.",
"invalid_state": "Zadejte prosím platný název státu.",
"invalid_city": "Zadejte prosím platný název města.",
"invalid_postal_code": "Zadejte prosím platné PSČ.",
"invalid_format": "Zadejte prosím data v platném formátu.",
"api_error": "Server neodpovídá.",
"feature_not_enabled": "Funkce není zapnuta.",
"request_limit_met": "Limit požadavků API překročen.",
"address_incomplete": "Neúplná adresa"
"email_could_not_be_sent": "Email could not be sent to this email address.",
"invalid_address": "Please enter a valid address.",
"invalid_key": "Please enter valid key.",
"invalid_state": "Please enter a valid state.",
"invalid_city": "Please enter a valid city.",
"invalid_postal_code": "Please enter a valid zip.",
"invalid_format": "Please enter valid query string format.",
"api_error": "Server not responding.",
"feature_not_enabled": "Feature not enabled.",
"request_limit_met": "Api request limit exceeded.",
"address_incomplete": "Incomplete Address"
},
"pdf_estimate_label": "Odhad",
"pdf_estimate_number": "Číslo odhadu",
@ -1504,18 +1504,18 @@
"pdf_payment_number": "Číslo platby",
"pdf_payment_mode": "Platební metoda",
"pdf_payment_amount_received_label": "Obdržená částka",
"pdf_expense_report_label": "HLÁŠENÍ VÝDAJŮ",
"pdf_expense_report_label": "REPORT VÝDAJŮ",
"pdf_total_expenses_label": "VÝDAJE CELKEM",
"pdf_profit_loss_label": "HLÁŠENÍ ZISKU A ZTRÁT",
"pdf_sales_customers_label": "Hlášení o zákaznících prodeje",
"pdf_sales_items_label": "Hlášení o položkách prodeje",
"pdf_tax_summery_label": "Hlášení o daních",
"pdf_profit_loss_label": "REPORT ZISKU A ZTRÁT",
"pdf_sales_customers_label": "Report o zákaznících prodeje",
"pdf_sales_items_label": "Report o položkách prodeje",
"pdf_tax_summery_label": "Report o shrnutí daní",
"pdf_income_label": "PŘÍJEM",
"pdf_net_profit_label": "ČISTÝ ZISK",
"pdf_customer_sales_report": "Hlášení o prodeji: Podle zákazníka",
"pdf_customer_sales_report": "Report o prodeji: Podle zákazníka",
"pdf_total_sales_label": "PRODEJE CELKEM",
"pdf_item_sales_label": "Hlášení o prodeji: Podle položky",
"pdf_tax_report_label": "DAŇOVÉ HLÁŠENÍ",
"pdf_item_sales_label": "Report o prodeji: Podle položky",
"pdf_tax_report_label": "DAŇOVÝ REPORT",
"pdf_total_tax_label": "DANĚ CELKEM",
"pdf_tax_types_label": "Typy daní",
"pdf_expenses_label": "Výdaje",

View File

@ -526,7 +526,7 @@
"cloned_successfully": "Serienrechnung erfolgreich kopiert",
"clone_invoice": "Serienrechnung kopieren",
"confirm_clone": "Diese Serienrechnung wird in eine neue Serienrechnung kopiert",
"add_customer_email": "Bitte fügen Sie eine E-Mail-Adresse für diesen Kunden hinzu, um Rechnungen automatisch zu senden.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Titel des Artikels",
"description": "Beschreibung",
@ -682,25 +682,25 @@
"update_to": "Update auf",
"module_updated": "Modul erfolgreich aktualisiert!",
"title": "Module",
"module": "Modul | Module",
"module": "Module | Modules",
"api_token": "API Schlüssel",
"invalid_api_token": "Ungültiger API-Schlüssel.",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Weitere Module",
"view_all": "Alle Anzeigen",
"no_reviews_found": "Für dieses Modul gibt es noch keine Bewertungen!",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Modul nicht gefunden",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Zuletzt aktualisiert am",
"connect_installation": "Installation verbinden",
"api_token_description": "Melden Sie sich bei {url} an und verbinden Sie diese Installation durch Eingabe des API-Token. Ihre gekauften Module werden hier angezeigt, nachdem die Verbindung hergestellt wurde.",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "Modul anzeigen",
"update_available": "Aktualisierung verfügbar",
"purchased": "Gekauft",
"installed": "Installiert",
"no_modules_installed": "Noch keine Module installiert!",
"disable_warning": "Alle Einstellungen für diesen speziellen Wert werden zurückgesetzt.",
"what_you_get": "Was Sie erhalten"
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Benutzer",
@ -1304,8 +1304,8 @@
"add_billing_address": "Rechnungsadresse eingeben",
"add_shipping_address": "Lieferadresse eingeben",
"add_company_address": "Firmenadresse eingeben",
"modal_description": "Die untenstehenden Informationen sind erforderlich, um die Steuer berücksichtigen zu können.",
"add_address": "Fügen Sie eine Adresse hinzu, um die Steuer abrufen zu können.",
"modal_description": "The information below is required in order to fetch sales tax.",
"add_address": "Add Address for fetching sales tax.",
"address_placeholder": "Beispiel: 123, meine Straße",
"city_placeholder": "Beispiel: Los Angeles",
"state_placeholder": "Beispiel: CA",
@ -1471,21 +1471,21 @@
"login_invalid_credentials": "Diese Anmeldeinformationen stimmen nicht mit unseren Aufzeichnungen überein.",
"enter_valid_cron_format": "Bitte geben Sie ein gültiges Cron-Format ein",
"email_could_not_be_sent": "Die E-Mail konnte nicht an diese Adresse gesendet werden.",
"invalid_address": "Bitte geben Sie eine gültige Adresse ein.",
"invalid_key": "Bitte geben Sie einen gültigen Schlüssel ein.",
"invalid_state": "Bitte geben Sie ein gültiges Bundesland ein.",
"invalid_city": "Bitte geben Sie eine gültige Stadt an.",
"invalid_postal_code": "Bitte geben Sie eine gültige PLZ an.",
"invalid_format": "Bitte geben Sie ein gültiges Abfrageformat ein.",
"invalid_address": "Please enter a valid address.",
"invalid_key": "Please enter valid key.",
"invalid_state": "Please enter a valid state.",
"invalid_city": "Please enter a valid city.",
"invalid_postal_code": "Please enter a valid zip.",
"invalid_format": "Please enter valid query string format.",
"api_error": "Der Server antwortet nicht.",
"feature_not_enabled": "Funktion nicht aktiviert.",
"request_limit_met": "Api Anfragelimit überschritten.",
"request_limit_met": "Api request limit exceeded.",
"address_incomplete": "Unvollständige Adresse"
},
"pdf_estimate_label": "Angebot",
"pdf_estimate_number": "Angebotsnummer",
"pdf_estimate_date": "Angebotsdatum",
"pdf_estimate_expire_date": "Gültig bis",
"pdf_estimate_expire_date": "Ablaufdatum",
"pdf_invoice_label": "Rechnung",
"pdf_invoice_number": "Rechnungsnummer",
"pdf_invoice_date": "Rechnungsdatum",
@ -1519,8 +1519,8 @@
"pdf_total_tax_label": "Gesamte Umsatzsteuer",
"pdf_tax_types_label": "Steuersätze",
"pdf_expenses_label": "Ausgaben",
"pdf_bill_to": "Rechnungsanschrift",
"pdf_ship_to": "Lieferanschrift",
"pdf_bill_to": "Rechnungsempfänger:",
"pdf_ship_to": "Versand an:",
"pdf_received_from": "Erhalten von:",
"pdf_tax_label": "Steuer"
}

View File

@ -6,13 +6,13 @@
"invoices": "Τιμολόγια",
"recurring-invoices": "Επαναλαμβανόμενα τιμολόγια",
"expenses": "Έξοδα",
"estimates": "Προσφορές",
"estimates": "Εκτιμήσεις",
"payments": "Πληρωμές",
"reports": "Αναφορές",
"settings": "Ρυθμίσεις",
"logout": "Αποσύνδεση",
"users": "Χρήστες",
"modules": "Πρόσθετα"
"modules": "Modules"
},
"general": {
"add_company": "Προσθήκη Εταιρείας",
@ -93,14 +93,14 @@
"no_note_found": "Δεν Βρέθηκε Σημείωση",
"insert_note": "Εισαγωγή Σημείωσης",
"copied_pdf_url_clipboard": "Αντιγράφηκε το url του PDF στo πρόχειρο!",
"copied_url_clipboard": "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Έγγραφα",
"do_you_wish_to_continue": "Θέλετε να συνεχίσετε;",
"note": "Σημείωση",
"pay_invoice": "Πληρωμή τιμολογίου",
"login_successfully": "Η είσοδος ήταν επιτυχής!",
"logged_out_successfully": "Η έξοδος ήταν επιτυχής",
"mark_as_default": "Σημείωση ως προεπιλογή"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Επιλογή έτους",
@ -108,8 +108,8 @@
"due_amount": "Οφειλόμενο Ποσό",
"customers": "Πελάτες",
"invoices": "Τιμολόγια",
"estimates": "Προσφορές",
"payments": "Πληρωμές"
"estimates": "Εκτιμήσεις",
"payments": "Payments"
},
"chart_info": {
"total_sales": "Πωλήσεις",
@ -130,7 +130,7 @@
"view_all": "Προβολή Όλων"
},
"recent_estimate_card": {
"title": "Πρόσφατες προσφορές",
"title": "Πρόσφατες Εκτιμήσεις",
"date": "Ημερομηνία",
"customer": "Πελάτης",
"amount_due": "Οφειλόμενο Ποσό",
@ -264,18 +264,18 @@
"deleted_message": "Ο υπολογισμός διαγράφηκε επιτυχώς"
},
"estimates": {
"title": "Προσφορές",
"title": "Εκτιμήσεις",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Προσφορά | Προσφορές",
"estimates_list": "Λίστα προσφορών",
"estimate": "Εκτίμηση | Εκτιμήσεις",
"estimates_list": "Λίστα Εκτιμήσεων",
"days": "{days} Ημέρες",
"months": "{months} Μήνας",
"years": "{years} Έτος",
"all": "Όλα",
"paid": "Εξοφλημένο",
"unpaid": "Ανεξόφλητο",
"customer": "Πελάτης",
"customer": "ΤΕΛΩΝΕΙΑΚΗ",
"ref_no": "REF NO.",
"number": "ΑΡΙΘΜΟΣ",
"amount_due": "ΠΟΣΟ ΠΡΟΣ ΠΛΗΡΩΜΗ",
@ -300,7 +300,7 @@
"convert_to_invoice": "Μετατράπηκε σε Τιμολόγιο",
"mark_as_sent": "Σήμανση ως απεσταλμένου",
"send_estimate": "Νέα Εκτίμηση",
"resend_estimate": "Πρόσφατες προσφορές",
"resend_estimate": "Πρόσφατες Εκτιμήσεις",
"record_payment": "Καταγραφή Πληρωμής",
"add_estimate": "Νέα Εκτίμηση",
"save_estimate": "Νέα Εκτίμηση",
@ -310,7 +310,7 @@
"confirm_mark_as_sent": "Η εκτίμηση αυτή θα επισημανθεί ως εστάλη",
"confirm_mark_as_accepted": "Αυτό το τιμολόγιο θα επισημανθεί ως Απορριπτόμενο",
"confirm_mark_as_rejected": "Αυτό το τιμολόγιο θα επισημανθεί ως Απορριπτόμενο",
"no_matching_estimates": "Δεν υπάρχουν αντίστοιχες προσφορές!",
"no_matching_estimates": "Δεν υπάρχουν αντίστοιχες εκτιμήσεις!",
"mark_as_sent_successfully": "Το τιμολόγιο επισημάνθηκε ως απεσταλμένο επιτυχώς",
"send_estimate_successfully": "Το τιμολόγιο εστάλη επιτυχώς",
"errors": {
@ -328,9 +328,9 @@
"update_Estimate": "Ενημέρωση εκτίμησης",
"edit_estimate": "Επεξεργασία Εκτίμησης",
"items": "στοιχεία",
"Estimate": "Προσφορά | Προσφορές",
"Estimate": "Εκτίμηση | Εκτιμήσεις",
"add_new_tax": "Προσθήκη Νέου Φόρου",
"no_estimates": "Δεν υπάρχουν προσφορές ακόμα!",
"no_estimates": "Δεν υπάρχουν εκτιμήσεις ακόμα!",
"list_of_estimates": "Αυτή η ενότητα θα περιέχει τη λίστα των στοιχείων.",
"mark_as_rejected": "Σήμανση ως απορρίφθηκε",
"mark_as_accepted": "Σήμανση ως αποδεκτό",
@ -372,7 +372,7 @@
"viewed": "Προβλήθηκαν",
"overdue": "Εκπρόθεσμα",
"completed": "Ολοκληρώθηκε",
"customer": "Πελάτης",
"customer": "ΤΕΛΩΝΕΙΑΚΗ",
"paid_status": "ΚΑΤΑΣΤΑΣΗ ΠΛΗΡΩΜΗΣ",
"ref_no": "REF NO.",
"number": "ΑΡΙΘΜΟΣ",
@ -462,7 +462,7 @@
"overdue": "Εκπρόθεσμα",
"active": "Ενεργή",
"completed": "Ολοκληρώθηκε",
"customer": "Πελάτης",
"customer": "ΤΕΛΩΝΕΙΑΚΗ",
"paid_status": "ΚΑΤΑΣΤΑΣΗ ΠΛΗΡΩΜΗΣ",
"ref_no": "REF NO.",
"number": "ΑΡΙΘΜΟΣ",
@ -681,7 +681,7 @@
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Πρόσθετα",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API token",
"invalid_api_token": "Invalid API Token.",
@ -692,13 +692,13 @@
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Last Updated On",
"connect_installation": "Σύνδεση της εγκατάστασης σας",
"api_token_description": "Συνδεθείτε στο {url} και συνδέστε αυτήν την εγκατάσταση εισάγοντας το API Token. Τα πρόσθετα που αγοράσατε θα εμφανιστούν εδώ μετά την ολοκλήρωση της σύνδεσης.",
"view_module": "Δείτε το πρόσθετο",
"update_available": "Διαθέσιμη ανανέωση",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Εγκαταστάθηκε",
"no_modules_installed": "Δεν υπάρχουν ακόμα εγκατεστημένα πρόσθετα!",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
@ -815,7 +815,7 @@
"title": "Ρυθμίσεις",
"setting": "Ρύθμιση Ρυθμίσεων",
"general": "General",
"language": "Γλώσσα",
"language": "Language",
"primary_currency": "Κύριο Νόμισμα",
"timezone": "Ζώνη Ώρας",
"date_format": "Μορφή Ημερομηνίας",

View File

@ -1485,7 +1485,7 @@
"pdf_estimate_label": "Estimate",
"pdf_estimate_number": "Estimate Number",
"pdf_estimate_date": "Estimate Date",
"pdf_estimate_expire_date": "Expiry Date",
"pdf_estimate_expire_date": "Expiry date",
"pdf_invoice_label": "Invoice",
"pdf_invoice_number": "Invoice Number",
"pdf_invoice_date": "Invoice Date",

View File

@ -12,7 +12,7 @@
"settings": "Ajustes",
"logout": "Cerrar sesión",
"users": "Usuarios",
"modules": "Módulos"
"modules": "Modules"
},
"general": {
"add_company": "Añadir empresa",
@ -49,7 +49,7 @@
"view": "Ver",
"add_new_item": "Agregar ítem nuevo",
"clear_all": "Limpiar todo",
"showing": "Mostrar",
"showing": "Mostrando",
"of": "de",
"actions": "Acciones",
"subtotal": "SUBTOTAL",
@ -93,14 +93,14 @@
"no_note_found": "No se encontró ninguna nota",
"insert_note": "Insertar una nota",
"copied_pdf_url_clipboard": "Copiar Url al portapapeles",
"copied_url_clipboard": "¡URL copiada al portapapeles!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Documentación",
"do_you_wish_to_continue": "¿Deseas continuar?",
"note": "Nota",
"pay_invoice": "Pagar factura",
"login_successfully": "Logeado Satisfactoriamente!",
"logged_out_successfully": "Logeado Satisfactoriamente",
"mark_as_default": "Marcar como predeterminado"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Seleccionar año",
@ -109,7 +109,7 @@
"customers": "Clientes",
"invoices": "Facturas",
"estimates": "Presupuestos",
"payments": "Ver Medios de Pago"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Ventas",
@ -208,10 +208,10 @@
"new_customer": "Nuevo cliente",
"edit_customer": "Editar cliente",
"basic_info": "Información básica",
"portal_access": "Acceso al portal",
"portal_access_text": "¿Le gustaría permitir que este cliente inicie sesión en el Portal del Cliente?",
"portal_access_url": "Portal URL del cliente",
"portal_access_url_help": "Por favor, copie y reenvíe la URL anterior a su cliente para proporcionar acceso.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "Dirección de Facturación",
"shipping_address": "Dirección de Envío",
"copy_billing_address": "Copia de facturación",
@ -231,7 +231,7 @@
"confirm_delete": "No podrá recuperar este cliente y todas las facturas, estimaciones y pagos relacionados. | No podrá recuperar estos clientes y todas las facturas, estimaciones y pagos relacionados.",
"created_message": "Cliente creado con éxito",
"updated_message": "Cliente actualizado con éxito",
"address_updated_message": "Información del domicilio actualizado correctamente",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Cliente eliminado correctamente | Clientes eliminados exitosamente",
"edit_currency_not_allowed": "No se puede cambiar la divisa una vez creadas las transacciones."
},
@ -265,8 +265,8 @@
},
"estimates": {
"title": "Presupuestos",
"accept_estimate": "Aceptar cotización",
"reject_estimate": "Rechazar cotización",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Presupuesto | Presupuestos",
"estimates_list": "Lista de presupuestos",
"days": "{días} Días",
@ -318,10 +318,10 @@
},
"accepted": "Aceptado",
"rejected": "Rechazado",
"expired": "Caducado",
"expired": "Expired",
"sent": "Enviado",
"draft": "Borrador",
"viewed": "Visto",
"viewed": "Viewed",
"declined": "Rechazado",
"new_estimate": "Nuevo presupuesto",
"add_new_estimate": "Añadir nuevo presupuesto",
@ -355,14 +355,14 @@
"select_an_item": "Escriba o haga clic para seleccionar un elemento",
"type_item_description": "Descripción del tipo de elemento(opcional)"
},
"mark_as_default_estimate_template_description": "Si se activa, esta plantilla se selccionará automáticamente para nuevos presupuestos. "
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Facturas",
"download": "Descargar",
"pay_invoice": "Pagar factura",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "Lista de facturas",
"invoice_information": "Información de la factura",
"invoice_information": "Invoice Information",
"days": "{días} Días",
"months": "{meses} Mes",
"years": "{años} Año",
@ -447,7 +447,7 @@
"marked_as_sent_message": "Factura marcada como enviada con éxito",
"something_went_wrong": "Algo fue mal",
"invalid_due_amount_message": "El pago introducido es mayor que el importe total pendiente de esta factura. Por favor, verificalo y vuelve a intentarlo.",
"mark_as_default_invoice_template_description": "Si se activa, esta plantilla se seleccionará automáticamente para nuevas facturas. "
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Facturas recurrentes",
@ -526,7 +526,7 @@
"cloned_successfully": "Factura recurrente clonada con éxito",
"clone_invoice": "Clonar factura recurrente",
"confirm_clone": "Esta factura recurrente será clonada en una nueva factura recurrente",
"add_customer_email": "Por favor, agregue una dirección de correo electrónico para que este cliente envíe las facturas automáticamente.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Título del artículo",
"description": "Descripción",
@ -658,49 +658,49 @@
"retype_password": "Reescriba la contraseña"
},
"modules": {
"buy_now": "Comprar ahora",
"install": "Instalar",
"price": "Precio",
"download_zip_file": "Descargar archivo ZIP",
"unzipping_package": "Descomprimir paquete",
"copying_files": "Copiando archivos",
"deleting_files": "Eliminando archivos no usados",
"completing_installation": "Completando la instalación",
"update_failed": "Falló la actualización",
"install_success": "¡El módulo se ha instalado correctamente!",
"customer_reviews": "Reseñas",
"license": "Licencia",
"faq": "Preguntas Frecuentes (FAQ)",
"monthly": "Mensual",
"yearly": "Anual",
"updated": "Actualizado",
"version": "Versión",
"disable": "Deshabilitar",
"module_disabled": "Módulo desactivado",
"enable": "Habilitar",
"module_enabled": "Módulo habilitado",
"update_to": "Actualizar a",
"module_updated": "¡Módulo actualizado correctamente!",
"title": "Módulos",
"module": "Módulo | Módulos",
"buy_now": "Buy Now",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API token",
"invalid_api_token": "API Token inválido.",
"other_modules": "Otros módulos",
"view_all": "Ver todo",
"no_reviews_found": "¡Este módulo aún no tiene reseñas!",
"module_not_purchased": "Módulo no comprado",
"module_not_found": "Módulo no encontrado",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Actualizado",
"connect_installation": "Conecte su instalación",
"api_token_description": "Inicie sesión en {url} y conecte esta instalación introduciendo el token de API. Los módulos comprados aparecerán aquí después de establecer la conexión.",
"view_module": "Ver módulo",
"update_available": "Actualización disponible",
"purchased": "Comprado",
"installed": "Instalado",
"no_modules_installed": "¡No hay módulos instalados todavía!",
"disable_warning": "Se revertirán todos los ajustes para este particular.",
"what_you_get": "Beneficios que obtiene"
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Usuarios",
@ -807,10 +807,10 @@
"payment_modes": "Formas de pago",
"notes": "Notas",
"exchange_rate": "Tasa de cambio",
"address_information": "Información de dirección"
"address_information": "Address Information"
},
"address_information": {
"section_description": "Puede actualizar la información de su dirección utilizando el siguiente formulario."
"section_description": " You can update Your Address information using form below."
},
"title": "Configuraciones",
"setting": "Configuraciones | Configuraciones",
@ -1112,9 +1112,9 @@
"error": " No puede eliminar el controlador activo",
"default_currency_error": "Esta moneda ya se usa en uno de los proveedores activos",
"exchange_help_text": "Ingrese el tipo de cambio para convertir de {currency} a {baseCurrency}",
"currency_freak": "Moneda",
"currency_layer": "Capa de moneda",
"open_exchange_rate": "Tasa de cambio",
"currency_freak": "Currency Freak",
"currency_layer": "Currency Layer",
"open_exchange_rate": "Open Exchange Rate",
"currency_converter": "Conversor de moneda",
"server": "Servidor",
"url": "URL",
@ -1150,8 +1150,8 @@
"payment_mode_added": "Forma de pago añadida",
"payment_mode_updated": "Forma de pago actualizada",
"payment_mode_confirm_delete": "No podrás recuperar este Modo de Pago",
"payments_attached": "Esta forma de pago ya está vinculada a los pagos. Por favor, elimine los pagos adjuntos para proceder con la eliminación.",
"expenses_attached": "Esta forma de pago ya está adjunta a los gastos. Por favor, elimine los gastos adjuntos para proceder con la eliminación.",
"payments_attached": "This payment method is already attached to payments. Please delete the attached payments to proceed with deletion.",
"expenses_attached": "This payment method is already attached to expenses. Please delete the attached expenses to proceed with deletion.",
"deleted_message": "Método de pago eliminado correctamente"
},
"expense_category": {
@ -1178,8 +1178,8 @@
"discount_setting": "Ajuste de descuento",
"discount_per_item": "Descuento por artículo",
"discount_setting_description": "Habilítelo si desea agregar Descuento a artículos de factura individuales. Por defecto, los descuentos se agregan directamente a la factura.",
"expire_public_links": "Expirar automáticamente enlaces públicos",
"expire_setting_description": "Especifique si desea expirar todos los enlaces enviados por la aplicación para ver facturas, estimaciones y pagos, etc. después de una duración especificada.",
"expire_public_links": "Automatically Expire Public Links",
"expire_setting_description": "Specify whether you would like to expire all the links sent by application to view invoices, estimates & payments, etc after a specified duration.",
"save": "Guardar",
"preference": "Preferencia | Preferencias",
"general_settings": "Preferencias predeterminadas para el sistema.",
@ -1301,16 +1301,16 @@
"invalid_disk_credentials": "Credencial no válida del disco seleccionado"
},
"taxations": {
"add_billing_address": "Introduzca su dirección de facturación",
"add_shipping_address": "Introduzca la dirección de envío",
"add_company_address": "Introduzca la dirección de la empresa",
"modal_description": "La siguiente información es requerida para obtener el impuesto de venta.",
"add_address": "Añadir dirección para obtener impuestos de venta.",
"address_placeholder": "Ejemplo: 123, Mi Calle",
"city_placeholder": "Ejemplo: Los Angeles",
"state_placeholder": "Ejemplo: CA",
"zip_placeholder": "Ejemplo: 90024",
"invalid_address": "Proporciona una dirección válida."
"add_billing_address": "Enter Billing Address",
"add_shipping_address": "Enter Shipping Address",
"add_company_address": "Enter Company Address",
"modal_description": "The information below is required in order to fetch sales tax.",
"add_address": "Add Address for fetching sales tax.",
"address_placeholder": "Example: 123, My Street",
"city_placeholder": "Example: Los Angeles",
"state_placeholder": "Example: CA",
"zip_placeholder": "Example: 90024",
"invalid_address": "Please provide valid address details."
}
},
"wizard": {
@ -1470,17 +1470,17 @@
"not_allowed": "No permitido",
"login_invalid_credentials": "Estas credenciales no coinciden con nuestros registros.",
"enter_valid_cron_format": "Por favor, introduzca un formato cron válido",
"email_could_not_be_sent": "No se pudo enviar el correo a esta dirección de correo electrónico.",
"invalid_address": "Por favor, introduzca una dirección válida.",
"invalid_key": "Por favor, introduzca una clave válida.",
"invalid_state": "Por favor, introduzca un estado válido.",
"invalid_city": "Por favor, introduzca una ciudad válida.",
"invalid_postal_code": "Por favor, introduzca un código postal válido.",
"invalid_format": "Por favor, introduzca un formato de consulta válido.",
"api_error": "El servidor no responde.",
"feature_not_enabled": "Característica no habilitada.",
"request_limit_met": "Ha alcanzado el límite de solicitudes.",
"address_incomplete": "Dirección incompleta"
"email_could_not_be_sent": "Email could not be sent to this email address.",
"invalid_address": "Please enter a valid address.",
"invalid_key": "Please enter valid key.",
"invalid_state": "Please enter a valid state.",
"invalid_city": "Please enter a valid city.",
"invalid_postal_code": "Please enter a valid zip.",
"invalid_format": "Please enter valid query string format.",
"api_error": "Server not responding.",
"feature_not_enabled": "Feature not enabled.",
"request_limit_met": "Api request limit exceeded.",
"address_incomplete": "Incomplete Address"
},
"pdf_estimate_label": "Presupuestar",
"pdf_estimate_number": "Número de Presupuesto",

View File

@ -100,7 +100,7 @@
"pay_invoice": "Payer facture",
"login_successfully": "Identifié avec succès!",
"logged_out_successfully": "Déconnecté avec succès",
"mark_as_default": "Marquer par défaut"
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Sélectionnez l'année",
@ -109,7 +109,7 @@
"customers": "Clients",
"invoices": "Factures",
"estimates": "Devis",
"payments": "Paiements"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Ventes",
@ -318,10 +318,10 @@
},
"accepted": "Accepté",
"rejected": "Refusé",
"expired": "Expiré",
"expired": "Expired",
"sent": "Envoyé",
"draft": "Brouillon",
"viewed": "Consultée",
"viewed": "Viewed",
"declined": "Refusé",
"new_estimate": "Nouveau devis",
"add_new_estimate": "Nouveau devis",
@ -658,49 +658,49 @@
"retype_password": "Retaper le mot de passe"
},
"modules": {
"buy_now": "Acheter maintenant",
"install": "Installer",
"price": "Prix",
"download_zip_file": "Télécharger le fichier ZIP",
"unzipping_package": "Décompresser le fichier",
"copying_files": "Copie de fichiers en cours",
"deleting_files": "Supprimer les fichiers inutilisés",
"completing_installation": "Terminer l'installation",
"update_failed": "Échec de la mise à jour",
"install_success": "Votre module a été correctement installé !",
"customer_reviews": "Évaluations",
"buy_now": "Buy Now",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Mensuel",
"yearly": "Annuel",
"updated": "Mis à jour",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Désactiver",
"module_disabled": "Module désactivé",
"enable": "Activer",
"module_enabled": "Module activé",
"update_to": "Mise à jour vers",
"module_updated": "Le module a bien été mis à jour !",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "Jeton API",
"invalid_api_token": "Jeton API invalide.",
"other_modules": "Autres modules",
"view_all": "Tout afficher",
"no_reviews_found": "Il n'y a pas encore d'avis pour ce module !",
"module_not_purchased": "Module non acheté",
"module_not_found": "Module non trouvé",
"api_token": "API token",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Mis à jour le",
"connect_installation": "Connectez votre installation",
"api_token_description": "Rendez-vous à {url} et connectez votre application en entrant le jeton d'API. Vos modules achetés apparaîtront ici une fois la connexion établie.",
"view_module": "Afficher le module",
"update_available": "Mise à jour disponible",
"purchased": "Acheté",
"installed": "Installé",
"no_modules_installed": "Aucun module installé !",
"disable_warning": "Tous les paramètres de ce module seront réinitialisés.",
"what_you_get": "Ce que vous obtenez"
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Utilisateurs",
@ -807,7 +807,7 @@
"payment_modes": "Modes de paiement",
"notes": "Notes de bas de page",
"exchange_rate": "Taux de change",
"address_information": "Information d'adresse"
"address_information": "Address Information"
},
"address_information": {
"section_description": " Vous pouvez mettre à jour vos informations d'adresse via le formulaire ci dessous."
@ -842,7 +842,7 @@
"port": "Port",
"driver": "Fournisseur",
"secret": "Secret",
"mailgun_secret": "Secret Mailgun",
"mailgun_secret": "Mailgun Secret",
"mailgun_domain": "Domaine",
"mailgun_endpoint": "Mailgun Endpoint",
"ses_secret": "SES Secret",

View File

@ -4,7 +4,7 @@
"customers": "ग्राहक",
"items": "चीज़ें",
"invoices": "चालान",
"recurring-invoices": "आवर्ती बिल",
"recurring-invoices": "Recurring Invoices",
"expenses": "लागत",
"estimates": "अनुमान",
"payments": "भुगतान",
@ -12,7 +12,7 @@
"settings": "समायोजन",
"logout": "लॉग आउट",
"users": "कर्मचारी",
"modules": "मॉड्यूल"
"modules": "Modules"
},
"general": {
"add_company": "कंपनी जोड़ें",
@ -29,9 +29,9 @@
"to_date": "इस तारीख तक",
"from": "से",
"to": "के लिये",
"ok": "ठीक",
"yes": "हां",
"no": "नहीं",
"ok": "Ok",
"yes": "Yes",
"no": "No",
"sort_by": "इसके अनुसार क्रमबद्ध करें",
"ascending": "आरोही",
"descending": "उतरते",
@ -39,7 +39,7 @@
"body": "बॉडी",
"message": "संदेश",
"send": "भेजे",
"preview": "पूर्व दर्शन",
"preview": "Preview",
"go_back": "पिचे जाओ",
"back_to_login": "लॉगिन पर वापस जाएं",
"home": "होम",
@ -65,7 +65,7 @@
"sent": "भेजा गया",
"all": "सभी",
"select_all": "सभी चुनें",
"select_template": "टेंपलेट चुने",
"select_template": "Select Template",
"choose_file": "फ़ाइल चुनने के लिए यहां क्लिक करें",
"choose_template": "एक टेम्पलेट चुनें",
"choose": "चुनें",
@ -93,14 +93,14 @@
"no_note_found": "कोई नोट नहीं मिला",
"insert_note": "टिप्पणी डालें...",
"copied_pdf_url_clipboard": "पीडीएफ यूआरएल\nको क्लिपबोर्ड पर कॉपी किया गया!",
"copied_url_clipboard": "यूआरएल को क्लिपबोर्ड पर कॉपी किया गया!",
"docs": "डॉक्स",
"do_you_wish_to_continue": "क्या आप जारी रखना चाहते हैं?",
"note": "ध्यान दें",
"pay_invoice": "बिल का भुगतान करो",
"login_successfully": "सफलतापूर्वक लॉगिन किया गया",
"logged_out_successfully": "सफलतापूर्वक लॉग आउट किया गया",
"mark_as_default": "डिफ़ॉल्ट के रूप में चिह्नित करें"
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Docs",
"do_you_wish_to_continue": "Do you wish to continue?",
"note": "Note",
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "वर्ष चुनें",
@ -109,7 +109,7 @@
"customers": "ग्राहक",
"invoices": "चालान",
"estimates": "अनुमान",
"payments": "भुगतान"
"payments": "Payments"
},
"chart_info": {
"total_sales": "बिक्री",
@ -151,27 +151,27 @@
"no_results_found": "कोई परिणाम नहीं मिला"
},
"company_switcher": {
"label": "स्विच कंपनी",
"no_results_found": "कोई परिणाम नहीं मिला",
"add_new_company": "नई कंपनी जोड़ें",
"new_company": "नई कंपनी",
"created_message": "कंपनी सफलतापूर्वक बनाई गई"
"label": "SWITCH COMPANY",
"no_results_found": "No Results Found",
"add_new_company": "Add new company",
"new_company": "New company",
"created_message": "Company created successfully"
},
"dateRange": {
"today": "आज",
"this_week": "इस सप्ताह",
"this_month": "इस महीने",
"this_quarter": "इस तिमाही",
"this_year": "इस वर्ष",
"previous_week": "पिछला सप्ताह",
"previous_month": "पिछला महीना",
"previous_quarter": "पिछली तिमाही",
"previous_year": "पिछला साल",
"custom": "कस्टम"
"today": "Today",
"this_week": "This Week",
"this_month": "This Month",
"this_quarter": "This Quarter",
"this_year": "This Year",
"previous_week": "Previous Week",
"previous_month": "Previous Month",
"previous_quarter": "Previous Quarter",
"previous_year": "Previous Year",
"custom": "Custom"
},
"customers": {
"title": "ग्राहक",
"prefix": "प्रीफ़िक्स",
"prefix": "Prefix",
"add_customer": "ग्राहक जोड़ें",
"contacts_list": "ग्राहक सूची",
"name": "नाम",
@ -186,9 +186,9 @@
"phone": "फ़ोन",
"website": "वेबसाइट",
"overview": "अवलोकन",
"invoice_prefix": "बिल उपसर्ग",
"estimate_prefix": "अनुमान उपसर्ग",
"payment_prefix": "भुगतान उपसर्ग",
"invoice_prefix": "Invoice Prefix",
"estimate_prefix": "Estimate Prefix",
"payment_prefix": "Payment Prefix",
"enable_portal": "पोर्टल सक्षम करें",
"country": "देश",
"state": "राज्य",
@ -197,7 +197,7 @@
"added_on": "पर जोड़ा",
"action": "कार्य",
"password": "पासवर्ड",
"confirm_password": "पासवर्ड की पुष्टि करें",
"confirm_password": "Confirm Password",
"street_number": "गली संख्या",
"primary_currency": "प्राथमिक मुद्रा",
"description": "विवरण",
@ -208,10 +208,10 @@
"new_customer": "नए ग्राहक",
"edit_customer": "ग्राहक संपादित करें",
"basic_info": "आधारभूत जानकारी",
"portal_access": "पोर्टल एक्सेस",
"portal_access_text": "क्या आप इस ग्राहक को ग्राहक पोर्टल में लॉगिन करने की अनुमति देना चाहेंगे?",
"portal_access_url": "ग्राहक पोर्टल लॉगिन URL",
"portal_access_url_help": "कृपया ऊपर दिए गए URL को कॉपी करके अपने ग्राहक को एक्सेस प्रदान करने के लिए अग्रेषित करें।",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "बिल भेजने का पता",
"shipping_address": "शिपिंग पता",
"copy_billing_address": "बिलिंग से प्रतिलिपि",
@ -231,9 +231,9 @@
"confirm_delete": "आप इस ग्राहक और सभी संबंधित चालानों, अनुमानों और भुगतानों को पुनर्प्राप्त नहीं कर पाएंगे। | आप इन ग्राहकों और सभी संबंधित चालानों, अनुमानों और भुगतानों को पुनर्प्राप्त नहीं कर पाएंगे।",
"created_message": "सफलतापूर्वक प्रेषित",
"updated_message": "सफलतापूर्वक प्रेषित",
"address_updated_message": "पते की जानकारी सफलतापूर्वक अपडेट की गई",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "ग्राहक सफलतापूर्वक हटा दिया गया | ग्राहक सफलतापूर्वक हटा दिए गए",
"edit_currency_not_allowed": "एक बार लेन-देन करने के बाद मुद्रा नहीं बदल सकते।"
"edit_currency_not_allowed": "Cannot change currency once transactions created."
},
"items": {
"title": "चीज़ें",
@ -265,8 +265,8 @@
},
"estimates": {
"title": "अनुमान",
"accept_estimate": "अनुमान स्वीकार करें",
"reject_estimate": "अनुमान अस्वीकार करें",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "अनुमान | अनुमान",
"estimates_list": "अनुमान सूची",
"days": "{days} दिनों",
@ -318,10 +318,10 @@
},
"accepted": "स्वीकृत",
"rejected": "अस्वीकृत",
"expired": "समाप्त हुआ",
"expired": "Expired",
"sent": "भेजा गया",
"draft": "प्रारूप",
"viewed": "देखा गया",
"viewed": "Viewed",
"declined": "नामंज़ूर किया गया",
"new_estimate": "नया अनुमान",
"add_new_estimate": "नया अनुमान जोड़ें",
@ -355,14 +355,14 @@
"select_an_item": "चुनने के लिए टाइप करें या क्लिक करें",
"type_item_description": "आइटम विवरण टाइप करें (वैकल्पिक)"
},
"mark_as_default_estimate_template_description": "यदि सक्षम किया गया है, तो चयनित टेम्पलेट स्वचालित रूप से नए अनुमानों के लिए चयनित हो जाएगा।"
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "चालान",
"download": "डाउनलोड",
"pay_invoice": "रसीद का भुगतान करो",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "चालान सूची",
"invoice_information": "चालान जानकारी",
"invoice_information": "Invoice Information",
"days": "{days} दिनों",
"months": "{months} महीने",
"years": "{years} साल",
@ -379,7 +379,7 @@
"amount_due": "देय राशि",
"partially_paid": "आंशिक रूप से भुगतान किया",
"total": "कुल",
"discount": "छूट",
"discount": "Discount",
"sub_total": "उप राशि",
"invoice": "चालान | चालान",
"invoice_number": "इनवॉयस संख्या:",
@ -397,13 +397,13 @@
"send_invoice": "चालान भेजें",
"resend_invoice": "चालान फिर से भेजें",
"invoice_template": "चालान टेम्पलेट",
"conversion_message": "बिल क्लोन सफल",
"conversion_message": "Invoice cloned successful",
"template": "टेम्प्लेट",
"mark_as_sent": "भेजे गए के रूप में चिह्नित करें",
"confirm_send_invoice": "यह चालान ग्राहक को ईमेल के माध्यम से भेजा जाएगा",
"invoice_mark_as_sent": "यह चालान भेजा के रूप में चिह्नित किया जाएगा",
"confirm_mark_as_accepted": "इस बिल को स्वीकृत के रूप में चिह्नित किया जाएगा",
"confirm_mark_as_rejected": "इस बिल को अस्वीकृत के रूप में चिह्नित किया जाएगा",
"confirm_mark_as_accepted": "This invoice will be marked as Accepted",
"confirm_mark_as_rejected": "This invoice will be marked as Rejected",
"confirm_send": "यह चालान ग्राहक को ईमेल के माध्यम से भेजा जाएगा",
"invoice_date": "चालान की तारीख",
"record_payment": "रिकॉर्ड भुगतान",
@ -415,13 +415,13 @@
"update_invoice": "चालान संपादित करें",
"add_new_tax": "नया टैक्स जोड़ें",
"no_invoices": "अभी तक कोई चालान नहीं!",
"mark_as_rejected": "अस्वीकृत के रूप में चिह्नित करें",
"mark_as_accepted": "स्वीकृत के रूप में चिह्नित करें",
"mark_as_rejected": "Mark as rejected",
"mark_as_accepted": "Mark as accepted",
"list_of_invoices": "इस खंड में वस्तुओं की सूची होगी।",
"select_invoice": "चालान का चयन करें",
"no_matching_invoices": "कोई मेल खाने वाले ग्राहक नहीं हैं!",
"mark_as_sent_successfully": "चालान को सफलतापूर्वक भेजा गया के रूप में चिह्नित किया गया",
"invoice_sent_successfully": "चालान सफलतापूर्वक भेजा गया",
"invoice_sent_successfully": "Invoice sent successfully",
"cloned_successfully": "चालान सफलतापूर्वक क्लोन किया गया",
"clone_invoice": "क्लोन चालान",
"confirm_clone": "यह चालान एक नए चालान में क्लोन किया जाएगा",
@ -447,66 +447,66 @@
"marked_as_sent_message": "अनुमान को सफलतापूर्वक भेजा गया के रूप में चिह्नित किया गया",
"something_went_wrong": "कुछ गलत हो गया",
"invalid_due_amount_message": "कुल चालान राशि इस चालान के लिए कुल भुगतान की गई राशि से कम नहीं हो सकती है। जारी रखने के लिए कृपया इनवॉइस अपडेट करें या संबद्ध भुगतानों को हटा दें।",
"mark_as_default_invoice_template_description": "यदि सक्षम किया गया है, तो चयनित टेम्पलेट स्वचालित रूप से नए चालानों के लिए चयनित हो जाएगा।"
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "आवर्ती बिल",
"invoices_list": "आवर्ती बिल सूची",
"days": "{days} दिन",
"months": "{months} महीना",
"years": "{years} वर्ष",
"all": "सभी",
"paid": "भुगतान किया गया",
"unpaid": "अवैतनिक",
"viewed": "देखा गया",
"overdue": "अतिदेय",
"active": "सक्रिय",
"completed": "पूर्ण",
"customer": "ग्राहक",
"paid_status": "भुगतान की स्थिति",
"ref_no": "प्रसंग संख्या",
"number": "संख्या",
"amount_due": "देय राशि",
"partially_paid": "आंशिक रूप से भुगतान किया",
"total": "संपूर्ण",
"discount": "छूट",
"sub_total": "उप-योग",
"invoice": "आवर्ती बिल",
"invoice_number": "आवर्ती बिल संख्या",
"next_invoice_date": "अगली बिल तिथि",
"ref_number": "संदर्भ संख्या",
"contact": "संपर्क",
"add_item": "आइटम जोड़ें",
"date": "दिनांक",
"limit_by": "द्वारा सीमित करें",
"limit_date": "सीमा तिथि",
"limit_count": "सीमा गिनती",
"count": "गिनती",
"status": "स्थिति",
"select_a_status": "स्टेटस चुनें",
"working": "काम कर रहा है",
"on_hold": "रुका हुआ है",
"complete": "पूर्ण",
"add_tax": "कर जोड़ें",
"amount": "मात्रा",
"action": "कार्य",
"notes": "नोट्स",
"view": "देखे",
"basic_info": "आधारभूत जानकारी",
"send_invoice": "आवर्ती चालान भेजें",
"auto_send": "ऑटो भेजें",
"resend_invoice": "आवर्ती चालान फिर से भेजें",
"invoice_template": "आवर्ती चालान टेम्पलेट",
"conversion_message": "आवर्ती चालान क्लोन सफल",
"template": "टेम्प्लेट",
"mark_as_sent": "भेजे गए के रूप में चिह्नित करें",
"confirm_send_invoice": "यह आवर्ती चालान ग्राहक को ईमेल के माध्यम से भेजा जाएगा",
"invoice_mark_as_sent": "यह आवर्ती चालान भेजा गया के रूप में चिह्नित किया जाएगा",
"confirm_send": "यह आवर्ती चालान ग्राहक को ईमेल के माध्यम से भेजा जाएगा",
"starts_at": "आरंभ करने की तिथि",
"due_date": "बिल की देय तिथि",
"record_payment": "भुगतान रिकॉर्ड करें",
"add_new_invoice": "आवर्ती बिल फिर से भेजें",
"title": "Recurring Invoices",
"invoices_list": "Recurring Invoices List",
"days": "{days} Days",
"months": "{months} Month",
"years": "{years} Year",
"all": "All",
"paid": "Paid",
"unpaid": "Unpaid",
"viewed": "Viewed",
"overdue": "Overdue",
"active": "Active",
"completed": "Completed",
"customer": "CUSTOMER",
"paid_status": "PAID STATUS",
"ref_no": "REF NO.",
"number": "NUMBER",
"amount_due": "AMOUNT DUE",
"partially_paid": "Partially Paid",
"total": "Total",
"discount": "Discount",
"sub_total": "Sub Total",
"invoice": "Recurring Invoice | Recurring Invoices",
"invoice_number": "Recurring Invoice Number",
"next_invoice_date": "Next Invoice Date",
"ref_number": "Ref Number",
"contact": "Contact",
"add_item": "Add an Item",
"date": "Date",
"limit_by": "Limit by",
"limit_date": "Limit Date",
"limit_count": "Limit Count",
"count": "Count",
"status": "Status",
"select_a_status": "Select a status",
"working": "Working",
"on_hold": "On Hold",
"complete": "Completed",
"add_tax": "Add Tax",
"amount": "Amount",
"action": "Action",
"notes": "Notes",
"view": "View",
"basic_info": "Basic Info",
"send_invoice": "Send Recurring Invoice",
"auto_send": "Auto Send",
"resend_invoice": "Resend Recurring Invoice",
"invoice_template": "Recurring Invoice Template",
"conversion_message": "Recurring Invoice cloned successful",
"template": "Template",
"mark_as_sent": "Mark as sent",
"confirm_send_invoice": "This recurring invoice will be sent via email to the customer",
"invoice_mark_as_sent": "This recurring invoice will be marked as sent",
"confirm_send": "This recurring invoice will be sent via email to the customer",
"starts_at": "Start Date",
"due_date": "Invoice Due Date",
"record_payment": "Record Payment",
"add_new_invoice": "Add New Recurring Invoice",
"update_expense": "Update Expense",
"edit_invoice": "Edit Recurring Invoice",
"new_invoice": "New Recurring Invoice",
@ -659,46 +659,46 @@
},
"modules": {
"buy_now": "Buy Now",
"install": "इंस्टॉल",
"price": "मूल्य",
"download_zip_file": "ज़िप डाउनलोड करे",
"unzipping_package": "पैकेज खोल रहा है",
"copying_files": "फ़ाइलें कॉपी हो रही है",
"deleting_files": "अप्रयुक्त फाइलों को हटाना",
"completing_installation": "स्थापना पूर्ण करना",
"update_failed": "अद्यतनीकरण असफल रहा",
"install_success": "मॉड्यूल सफलतापूर्वक स्थापित किया गया है!",
"customer_reviews": "समीक्षा",
"license": "लाइसेन्स",
"faq": "हमेशा पूछे जाने वाले प्रश्न",
"monthly": "महीने के",
"yearly": "हर वर्ष",
"updated": "अपडेट किया गया",
"version": "वर्ज़न",
"disable": "अक्षम करें",
"module_disabled": "मॉड्यूल अक्षम",
"enable": "सक्षम",
"module_enabled": "मॉड्यूल सक्षम",
"update_to": "अपडेट करें",
"module_updated": "मॉड्यूल सफलतापूर्वक अपडेट किया गया!",
"title": "मॉड्यूल",
"module": "मॉड्यूल | मॉड्यूल",
"api_token": "एपीआई टोकन",
"invalid_api_token": "अमान्य एपीआई टोकन।",
"other_modules": "अन्य मॉड्यूल",
"view_all": "सभी को देखें",
"no_reviews_found": "इस मॉड्युल के लिए अभी तक वहां कोई समीक्षा नहीं है!",
"module_not_purchased": "मॉड्यूल खरीदा नहीं गया",
"module_not_found": "मॉड्यूल नहीं मिला",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API token",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "अंतिम बार अद्यतन किया गया",
"connect_installation": "अपनी स्थापना कनेक्ट करें",
"api_token_description": "{url} में लॉग इन करें और API टोकन दर्ज करके इस इंस्टॉलेशन को कनेक्ट करें। कनेक्शन स्थापित होने के बाद आपके खरीदे गए मॉड्यूल यहां दिखाई देंगे।",
"view_module": "मॉड्यूल देखें",
"update_available": "उपलब्ध अद्यतन",
"purchased": "खरीदी",
"installed": "इंस्टॉल हुआ।",
"no_modules_installed": "अभी तक कोई मॉड्यूल स्थापित नहीं है!",
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},

View File

@ -12,7 +12,7 @@
"settings": "Pengaturan",
"logout": "Keluar",
"users": "Pengguna",
"modules": "Modul"
"modules": "Modules"
},
"general": {
"add_company": "Tambahkan Perusahaan",
@ -93,14 +93,14 @@
"no_note_found": "Tidak ada catatan yang ditemukan",
"insert_note": "Sisipkan Catatan",
"copied_pdf_url_clipboard": "URL file PDF disalin ke clipboard!",
"copied_url_clipboard": "Disalin ke clipboard!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Dokumen",
"do_you_wish_to_continue": "Apakah anda ingin melanjutkan?",
"note": "Catatan",
"pay_invoice": "Bayar tagihan",
"login_successfully": "Login berhasil!",
"logged_out_successfully": "Berhasil keluar",
"mark_as_default": "Tandai sebagai default"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Pilih tahun",
@ -109,7 +109,7 @@
"customers": "Pelanggan",
"invoices": "Faktur",
"estimates": "Perkiraan",
"payments": "Pembayaran"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Penjualan",
@ -208,10 +208,10 @@
"new_customer": "Pelanggan Baru",
"edit_customer": "Ubah Pelanggan",
"basic_info": "Info dasar",
"portal_access": "Akses Portal",
"portal_access_text": "Apakah Anda ingin mengizinkan pelanggan ini untuk masuk ke Portal Pelanggan?",
"portal_access_url": "URL Masuk Portal Pelanggan",
"portal_access_url_help": "Harap salin & teruskan URL yang diberikan di atas kepada pelanggan Anda untuk memberikan akses.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "Alamat Tagihan",
"shipping_address": "Alamat Pengiriman",
"copy_billing_address": "Menyalin dari Tagihan",
@ -231,7 +231,7 @@
"confirm_delete": "Anda tidak akan dapat mengembalikan pelanggan dan semua tagihan terkait. | Anda tidak akan dapat mengembalikan pelanggan dan semua Tagihan terkait, Penawaran dan Pembayaran.",
"created_message": "Pelanggan berhasil dibuat",
"updated_message": "Pelanggan berhasil diperbarui",
"address_updated_message": "Informasi Alamat Berhasil Diperbarui",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Pelanggan berhasil dihapus",
"edit_currency_not_allowed": "Ketika transaksi telah dibuat, mata uang tidak dapat dirubah."
},
@ -265,8 +265,8 @@
},
"estimates": {
"title": "Perkiraan",
"accept_estimate": "Perkiraan",
"reject_estimate": "Tolak Perkiraan",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Estimasi",
"estimates_list": "Daftar Penawaran",
"days": "{days} Hari",
@ -276,7 +276,7 @@
"paid": "Lunas",
"unpaid": "Belum lunas",
"customer": "PELANGGAN",
"ref_no": "NO. REF.",
"ref_no": "REF NO.",
"number": "NOMOR",
"amount_due": "Jumlah yang harus dibayar",
"partially_paid": "Pembayaran Sebagian",
@ -318,10 +318,10 @@
},
"accepted": "Diterima",
"rejected": "Ditolak",
"expired": "Kadaluarsa",
"expired": "Expired",
"sent": "Terkirim",
"draft": "Draf",
"viewed": "Dilihat",
"viewed": "Viewed",
"declined": "Ditolak",
"new_estimate": "Penawaran Baru",
"add_new_estimate": "Tambah Penawaran Baru",
@ -355,14 +355,14 @@
"select_an_item": "Ketik atau klik untuk memilih",
"type_item_description": "Ketik Deskripsi Item (opsional)"
},
"mark_as_default_estimate_template_description": "Jika diaktifkan, template terpilih akan secara otomatis digunakan saat pembuatan estimate baru."
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Faktur",
"download": "Unduh",
"pay_invoice": "Bayar tagihan",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "Daftar Faktur",
"invoice_information": "Informasi tagihan",
"invoice_information": "Invoice Information",
"days": "{days} Hari",
"months": "{months} Bulan",
"years": "{years} Tahun",
@ -374,7 +374,7 @@
"completed": "Selesai",
"customer": "PELANGGAN",
"paid_status": "STATUS PEMBAYARAN",
"ref_no": "NO. REF.",
"ref_no": "REF NO.",
"number": "NOMOR",
"amount_due": "Jumlah yang harus dibayar",
"partially_paid": "Pembayaran Sebagian",
@ -439,19 +439,19 @@
"select_an_item": "Ketik atau klik untuk memilih",
"type_item_description": "Ketik Deskripsi Item (opsional)"
},
"payment_attached_message": "Salah satu faktur yang dipilih sudah memiliki pembayaran yang menyertainya. Pastikan untuk menghapus pembayaran terlampir terlebih dahulu untuk melanjutkan penghapusan",
"confirm_delete": "Anda tidak akan dapat memulihkan Faktur ini | Anda tidak akan dapat memulihkan Faktur ini",
"created_message": "Faktur berhasil dibuat",
"updated_message": "Faktur berhasil diperbarui",
"deleted_message": "Faktur berhasil dihapus | Faktur berhasil dihapus",
"marked_as_sent_message": "Tandai Faktur sudah dikirim",
"something_went_wrong": "terjadi kesalahan",
"invalid_due_amount_message": "Jumlah Total Faktur tidak boleh kurang dari jumlah total yang dibayarkan untuk Faktur ini. Harap perbarui faktur atau hapus pembayaran terkait untuk melanjutkan.",
"mark_as_default_invoice_template_description": "Jika diaktifkan, template terpilih akan secara otomatis digunakan saat pembuatan estimate baru."
"payment_attached_message": "One of the selected invoices already have a payment attached to it. Make sure to delete the attached payments first in order to go ahead with the removal",
"confirm_delete": "You will not be able to recover this Invoice | You will not be able to recover these Invoices",
"created_message": "Invoice created successfully",
"updated_message": "Invoice updated successfully",
"deleted_message": "Invoice deleted successfully | Invoices deleted successfully",
"marked_as_sent_message": "Invoice marked as sent successfully",
"something_went_wrong": "something went wrong",
"invalid_due_amount_message": "Total Invoice amount cannot be less than total paid amount for this Invoice. Please update the invoice or delete the associated payments to continue.",
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Tagihan-Tagihan Berulang",
"invoices_list": "Daftar Faktur Berulang",
"title": "Recurring Invoices",
"invoices_list": "Recurring Invoices List",
"days": "{days} Hari",
"months": "{months} Bulan",
"years": "{years} Tahun",
@ -459,61 +459,61 @@
"paid": "Lunas",
"unpaid": "Belum lunas",
"viewed": "Dilihat",
"overdue": "Lewat jatuh tempo",
"overdue": "Overdue",
"active": "Aktif",
"completed": "Selesai",
"customer": "PELANGGAN",
"paid_status": "STATUS PEMBAYARAN",
"ref_no": "NO. REF.",
"paid_status": "PAID STATUS",
"ref_no": "REF NO.",
"number": "NOMOR",
"amount_due": "Jumlah yang harus dibayar",
"partially_paid": "Angsuran",
"amount_due": "AMOUNT DUE",
"partially_paid": "Partially Paid",
"total": "Total",
"discount": "Diskon",
"sub_total": "Sub Total",
"invoice": "Faktur Berulang | Faktur Berulang",
"invoice_number": "Nomor Faktur Berulang",
"next_invoice_date": "Tanggal Faktur Berikutnya",
"ref_number": "Nomor Referensi",
"invoice": "Recurring Invoice | Recurring Invoices",
"invoice_number": "Recurring Invoice Number",
"next_invoice_date": "Next Invoice Date",
"ref_number": "Ref Number",
"contact": "Kontak",
"add_item": "Tambah Barang",
"date": "Tanggal",
"limit_by": "Batasi oleh",
"limit_date": "Batas Tanggal",
"limit_count": "Batas Jumlah",
"count": "Hitung",
"limit_by": "Limit by",
"limit_date": "Limit Date",
"limit_count": "Limit Count",
"count": "Count",
"status": "Status",
"select_a_status": "Pilih status",
"working": "Sedang mengerjakan",
"on_hold": "Ditangguhkan",
"working": "Working",
"on_hold": "On Hold",
"complete": "Selesai",
"add_tax": "Tambah Pajak",
"amount": "Jumlah",
"action": "Aksi",
"notes": "Catatan",
"view": "Tampilan",
"basic_info": "Informasi dasar",
"send_invoice": "Kirim Ulang Faktur Berulang",
"auto_send": "Kirim Otomatis",
"resend_invoice": "Kirim Ulang Faktur Berulang",
"invoice_template": "Nomor Faktur Berulang",
"conversion_message": "Faktur Berulang berhasil dikloning",
"view": "View",
"basic_info": "Basic Info",
"send_invoice": "Send Recurring Invoice",
"auto_send": "Auto Send",
"resend_invoice": "Resend Recurring Invoice",
"invoice_template": "Recurring Invoice Template",
"conversion_message": "Recurring Invoice cloned successful",
"template": "Template",
"mark_as_sent": "Tandai sebagai terkirim",
"confirm_send_invoice": "Faktur berulang ini akan dikirim melalui email ke pelanggan",
"invoice_mark_as_sent": "Faktur berulang ini akan ditandai sebagai terkirim",
"confirm_send": "Faktur berulang ini akan dikirim melalui email ke pelanggan",
"mark_as_sent": "Mark as sent",
"confirm_send_invoice": "This recurring invoice will be sent via email to the customer",
"invoice_mark_as_sent": "This recurring invoice will be marked as sent",
"confirm_send": "This recurring invoice will be sent via email to the customer",
"starts_at": "Tanggal Mulai",
"due_date": "Tanggal Jatuh Tempo Faktur",
"record_payment": "Rekam Pembayaran",
"add_new_invoice": "Tambahkan Faktur Berulang Baru",
"update_expense": "Perbarui Biaya",
"due_date": "Invoice Due Date",
"record_payment": "Record Payment",
"add_new_invoice": "Add New Recurring Invoice",
"update_expense": "Update Expense",
"edit_invoice": "Edit Recurring Invoice",
"new_invoice": "New Recurring Invoice",
"send_automatically": "Send Automatically",
"send_automatically_desc": "Enable this, if you would like to send the invoice automatically to the customer when its created.",
"save_invoice": "Save Recurring Invoice",
"update_invoice": "Perbarui Faktur Berulang",
"update_invoice": "Update Recurring Invoice",
"add_new_tax": "Tambah Pajak Baru",
"no_invoices": "Belum ada Faktur Berulang!",
"mark_as_rejected": "Ditandai telah ditolak",
@ -526,7 +526,7 @@
"cloned_successfully": "Faktur Berulang berhasil digandakan",
"clone_invoice": "Gandakan Faktur Berulang",
"confirm_clone": "Faktur Berulang ini akan digandakan menjadi Faktur Berulang yang baru",
"add_customer_email": "Tambahkan alamat email pelanggan untuk mengirimkan tagihan secara otomatis.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Judul item",
"description": "Deskripsi",
@ -550,19 +550,19 @@
"month": "Bulan",
"day_week": "Hari dalam minggu"
},
"confirm_delete": "Anda tidak akan dapat memulihkan Faktur ini | Anda tidak akan dapat memulihkan Faktur ini",
"created_message": "Faktur Berulang berhasil dibuat",
"updated_message": "Faktur Berulang berhasil diperbaharui",
"deleted_message": "Faktur Berulang berhasil dihapus | Faktur Berulang berhasil dihapus",
"marked_as_sent_message": "Tandai Faktur Berulang sudah dikirim",
"user_email_does_not_exist": "Email pengguna tidak ada",
"something_went_wrong": "terjadi kesalahan",
"invalid_due_amount_message": "Jumlah Total Faktur Berulang tidak boleh kurang dari jumlah total yang dibayarkan untuk Faktur Berulang ini. Harap perbarui faktur atau hapus pembayaran terkait untuk melanjutkan."
"confirm_delete": "You will not be able to recover this Invoice | You will not be able to recover these Invoices",
"created_message": "Recurring Invoice created successfully",
"updated_message": "Recurring Invoice updated successfully",
"deleted_message": "Recurring Invoice deleted successfully | Recurring Invoices deleted successfully",
"marked_as_sent_message": "Recurring Invoice marked as sent successfully",
"user_email_does_not_exist": "User email does not exist",
"something_went_wrong": "something went wrong",
"invalid_due_amount_message": "Total Recurring Invoice amount cannot be less than total paid amount for this Recurring Invoice. Please update the invoice or delete the associated payments to continue."
},
"payments": {
"title": "Pembayaran",
"payments_list": "Daftar Pembayaran",
"record_payment": "Rekam Pembayaran",
"record_payment": "Record Payment",
"customer": "Pelanggan",
"date": "Tanggal",
"amount": "Jumlah",
@ -573,29 +573,29 @@
"note": "Catatan",
"add_payment": "Tambah Pembayaran",
"new_payment": "Pembayaran Baru",
"edit_payment": "Edit Pembayaran",
"view_payment": "Lihat Pembayaran",
"add_new_payment": "Tambahkan Pembayaran Baru",
"send_payment_receipt": "Kirim Tanda Terima Pembayaran",
"send_payment": "Kirim Pembayaran",
"save_payment": "Simpan Pembayaran",
"update_payment": "Perbaharui Pembayaran",
"edit_payment": "Edit Payment",
"view_payment": "View Payment",
"add_new_payment": "Add New Payment",
"send_payment_receipt": "Send Payment Receipt",
"send_payment": "Send Payment",
"save_payment": "Save Payment",
"update_payment": "Update Payment",
"payment": "Pembayaran",
"no_payments": "Belum ada pembayaran!",
"no_payments": "No payments yet!",
"not_selected": "Tidak dipilih",
"no_invoice": "Tidak ada faktur",
"no_matching_payments": "Tidak ada pembayaran yang cocok!",
"list_of_payments": "Bagian ini akan berisi daftar pembayaran.",
"select_payment_mode": "Pilih mode pembayaran",
"confirm_mark_as_sent": "Penawaran ini akan ditandai telah dikirim",
"confirm_send_payment": "Pembayaran ini akan dikirim melalui email ke pelanggan",
"send_payment_successfully": "Pembayaran berhasil dikirim",
"something_went_wrong": "terjadi kesalahan",
"confirm_delete": "Anda tidak akan dapat memulihkan Pembayaran ini | Anda tidak akan dapat memulihkan Pembayaran ini",
"created_message": "Pembayaran berhasil dibuat",
"updated_message": "Pembayaran berhasil diperbaharui",
"deleted_message": "Pembayaran berhasil dihapus | Pembayaran berhasil dihapus",
"invalid_amount_message": "Jumlah pembayaran tidak valid"
"no_matching_payments": "There are no matching payments!",
"list_of_payments": "This section will contain the list of payments.",
"select_payment_mode": "Select payment mode",
"confirm_mark_as_sent": "This estimate will be marked as sent",
"confirm_send_payment": "This payment will be sent via email to the customer",
"send_payment_successfully": "Payment sent successfully",
"something_went_wrong": "something went wrong",
"confirm_delete": "You will not be able to recover this Payment | You will not be able to recover these Payments",
"created_message": "Payment created successfully",
"updated_message": "Payment updated successfully",
"deleted_message": "Payment deleted successfully | Payments deleted successfully",
"invalid_amount_message": "Payment amount is invalid"
},
"expenses": {
"title": "Pengeluaran",
@ -610,29 +610,29 @@
"to_date": "Sampai Tanggal",
"expense_date": "Tanggal",
"description": "Deskripsi",
"receipt": "Tanda Terima",
"receipt": "Receipt",
"amount": "Jumlah",
"action": "Aksi",
"not_selected": "Tidak dipilih",
"note": "Catatan",
"category_id": "Id kategori",
"category_id": "Category Id",
"date": "Tanggal",
"add_expense": "Tambahkan pengeluaran",
"add_new_expense": "Tambah Pengeluaran Baru",
"save_expense": "Simpan Pengeluaran",
"update_expense": "Edit Pengeluaran",
"download_receipt": "Unduh Tanda Terima",
"edit_expense": "Edit Pengeluaran",
"new_expense": "Pengeluaran Baru",
"expense": "Biaya | Pengeluaran",
"no_expenses": "Belum ada pengeluaran!",
"list_of_expenses": "Bagian ini akan berisi daftar pengeluaran.",
"confirm_delete": "Anda tidak akan dapat memulihkan Pengeluaran ini | Anda tidak akan dapat memulihkan Pengeluaran ini",
"created_message": "Pengeluaran berhasil dibuat",
"updated_message": "Pengeluaran berhasil diperbaharui",
"deleted_message": "Pengeluaran berhasil dihapus | Pengeluaran berhasil dihapus",
"add_expense": "Add Expense",
"add_new_expense": "Add New Expense",
"save_expense": "Save Expense",
"update_expense": "Update Expense",
"download_receipt": "Download Receipt",
"edit_expense": "Edit Expense",
"new_expense": "New Expense",
"expense": "Expense | Expenses",
"no_expenses": "No expenses yet!",
"list_of_expenses": "This section will contain the list of expenses.",
"confirm_delete": "You will not be able to recover this Expense | You will not be able to recover these Expenses",
"created_message": "Expense created successfully",
"updated_message": "Expense updated successfully",
"deleted_message": "Expense deleted successfully | Expenses deleted successfully",
"categories": {
"categories_list": "Daftar Kategori",
"categories_list": "Categories List",
"title": "Title",
"name": "Name",
"description": "Description",
@ -694,65 +694,65 @@
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "Lihat Module",
"update_available": "Pembaruan Tersedia",
"purchased": "Pembelian",
"installed": "Terinstal",
"no_modules_installed": "Belum Ada Modul yang Terpasang!",
"disable_warning": "Semua pengaturan untuk saat ini akan dikembalikan.",
"what_you_get": "Apa yang bisa Anda dapatkan"
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Pengguna",
"users_list": "Daftar Pengguna",
"name": "Nama",
"description": "Deskripsi",
"added_on": "Ditambahkan Pada",
"date_of_creation": "Tanggal pembuatan",
"action": "Aksi",
"add_user": "Tambah Pengguna",
"save_user": "Simpan Pengguna",
"update_user": "Edit Pengguna",
"user": "Pengguna | Pengguna",
"add_new_user": "Tambahkan pengguna baru",
"new_user": "Pengguna baru",
"edit_user": "Edit Pengguna",
"no_users": "Belum ada pengguna!",
"list_of_users": "Bagian ini akan berisi daftar pengguna.",
"title": "Users",
"users_list": "Users List",
"name": "Name",
"description": "Description",
"added_on": "Added On",
"date_of_creation": "Date Of Creation",
"action": "Action",
"add_user": "Add User",
"save_user": "Save User",
"update_user": "Update User",
"user": "User | Users",
"add_new_user": "Add New User",
"new_user": "New User",
"edit_user": "Edit User",
"no_users": "No users yet!",
"list_of_users": "This section will contain the list of users.",
"email": "Email",
"phone": "Telepon",
"password": "Kata Sandi",
"user_attached_message": "Tidak dapat menghapus item yang sudah digunakan",
"confirm_delete": "Anda tidak akan dapat memulihkan Pengguna ini | Anda tidak akan dapat memulihkan Pengguna ini",
"created_message": "Pengguna berhasil dibuat",
"updated_message": "Pengguna berhasil diedit",
"deleted_message": "Pengguna berhasil dihapus | Pengguna berhasil dihapus",
"select_company_role": "Pilih Peran untuk {company}",
"companies": "Perusahaan"
"user_attached_message": "Cannot delete an item which is already in use",
"confirm_delete": "You will not be able to recover this User | You will not be able to recover these Users",
"created_message": "User created successfully",
"updated_message": "User updated successfully",
"deleted_message": "User deleted successfully | Users deleted successfully",
"select_company_role": "Select Role for {company}",
"companies": "Companies"
},
"reports": {
"title": "Laporan",
"from_date": "Dari tanggal",
"to_date": "Sampai tanggal",
"title": "Report",
"from_date": "From Date",
"to_date": "To Date",
"status": "Status",
"paid": "Lunas",
"unpaid": "Belum dibayar",
"paid": "Paid",
"unpaid": "Unpaid",
"download_pdf": "Download PDF",
"view_pdf": "Lihat PDF",
"update_report": "Update Laporan",
"report": "Laporan | Laporan",
"view_pdf": "View PDF",
"update_report": "Update Report",
"report": "Report | Reports",
"profit_loss": {
"profit_loss": "Laba rugi",
"to_date": "Sampai tanggal",
"from_date": "Dari tanggal",
"date_range": "Pilih Rentang Tanggal"
"profit_loss": "Profit & Loss",
"to_date": "To Date",
"from_date": "From Date",
"date_range": "Select Date Range"
},
"sales": {
"sales": "Penjualan",
"date_range": "Pilih Rentang Tanggal",
"to_date": "Sampai tanggal",
"from_date": "Dari tanggal",
"report_type": "Jenis laporan"
"sales": "Sales",
"date_range": "Select Date Range",
"to_date": "To Date",
"from_date": "From Date",
"report_type": "Report Type"
},
"taxes": {
"taxes": "Taxes",

View File

@ -17,7 +17,6 @@ import sk from './sk.json'
import vi from './vi.json'
import el from './el.json'
import hr from './hr.json'
import th from './th.json'
export default {
cs,
@ -38,6 +37,5 @@ export default {
vi,
pl,
el,
hr,
th
hr
}

View File

@ -12,7 +12,7 @@
"settings": "Nustatymai",
"logout": "Atsijungti",
"users": "Vartotojai",
"modules": "Moduliai"
"modules": "Modules"
},
"general": {
"add_company": "Pridėti įmonę",
@ -93,14 +93,14 @@
"no_note_found": "Jokių žinučių nerasta",
"insert_note": "Terpti prierašą",
"copied_pdf_url_clipboard": "Nukopijuotas PDF url į iškarpinę!",
"copied_url_clipboard": "Nuoroda nukopijuota!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Dokumentacija",
"do_you_wish_to_continue": "Ar norite tęsti?",
"note": "Užrašas",
"pay_invoice": "Apmokėti",
"login_successfully": "Prisijungta sėkmingai!",
"logged_out_successfully": "Atsijungta sėkmingai",
"mark_as_default": "Pažymėti kaip numatytąjį"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Pasirinkite metus",
@ -109,7 +109,7 @@
"customers": "Klientai",
"invoices": "Sąskaitos",
"estimates": "Įverčiai",
"payments": "Mokėjimai"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Pardavimai",

View File

@ -93,14 +93,14 @@
"no_note_found": "Geen notitie gevonden",
"insert_note": "Notitie invoegen",
"copied_pdf_url_clipboard": "PDF link naar klembord gekopieerd!",
"copied_url_clipboard": "URL naar klembord gekopieerd!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Documenten",
"do_you_wish_to_continue": "Wilt u Doorgaan?",
"note": "Notitie",
"pay_invoice": "Betaal factuur",
"login_successfully": "Succesvol ingelogd!",
"logged_out_successfully": "Succesvol afgemeld",
"mark_as_default": "Markeren als standaard"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Selecteer jaar",
@ -109,7 +109,7 @@
"customers": "Klanten",
"invoices": "Facturen",
"estimates": "Offertes",
"payments": "Betalingen"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Verkoop",
@ -208,10 +208,10 @@
"new_customer": "Nieuwe klant",
"edit_customer": "Klant bewerken",
"basic_info": "Basis informatie",
"portal_access": "Portaaltoegang",
"portal_access_text": "Wilt u deze klant toestaan om in te loggen op het Klantenportaal?",
"portal_access_url": "Klantenportaal login URL",
"portal_access_url_help": "Kopieer & stuur de bovenstaande URL door naar uw klant om toegang te geven.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "factuur adres",
"shipping_address": "Verzendingsadres",
"copy_billing_address": "Kopiëren van facturering",
@ -231,7 +231,7 @@
"confirm_delete": "Deze klant en alle gerelateerde facturen, offertes en betalingen worden permanent verwijderd. | Deze klanten en alle gerelateerde facturen, offertes en betalingen worden permanent verwijderd.",
"created_message": "Klant succesvol aangemaakt",
"updated_message": "Klant succesvol geüpdatet",
"address_updated_message": "Adresinformatie succesvol bijgewerkt",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Klant succesvol verwijderd | Klanten zijn succesvol verwijderd",
"edit_currency_not_allowed": "Kan valuta niet wijzigen zodra de transacties zijn aangemaakt."
},
@ -265,8 +265,8 @@
},
"estimates": {
"title": "Offertes",
"accept_estimate": "Offerte accepteren",
"reject_estimate": "Offerte afwijzen",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Offerte | Offertes",
"estimates_list": "Lijst met offertes",
"days": "{dagen} dagen",
@ -318,10 +318,10 @@
},
"accepted": "Geaccepteerd",
"rejected": "Afgewezen",
"expired": "Verlopen",
"expired": "Expired",
"sent": "Verzonden",
"draft": "Concept",
"viewed": "Bekeken",
"viewed": "Viewed",
"declined": "Geweigerd",
"new_estimate": "Nieuwe offerte",
"add_new_estimate": "Offerte toevoegen",
@ -355,14 +355,14 @@
"select_an_item": "Typ of klik om een item te selecteren",
"type_item_description": "Type Item Beschrijving (optioneel)"
},
"mark_as_default_estimate_template_description": "Indien ingeschakeld, zal het geselecteerde sjabloon automatisch worden gekozen voor nieuwe offertes."
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Facturen",
"download": "Download",
"pay_invoice": "Betaal factuur",
"pay_invoice": "Pay Invoice",
"invoices_list": "Facturenlijst",
"invoice_information": "Factuurgegevens",
"invoice_information": "Invoice Information",
"days": "{dagen} dagen",
"months": "{months} Maand",
"years": "{jaar} jaar",
@ -447,7 +447,7 @@
"marked_as_sent_message": "Factuur gemarkeerd als succesvol verzonden",
"something_went_wrong": "Er is iets fout gegaan",
"invalid_due_amount_message": "Het totale factuurbedrag mag niet lager zijn dan het totale betaalde bedrag voor deze factuur. Werk de factuur bij of verwijder de bijbehorende betalingen om door te gaan.",
"mark_as_default_invoice_template_description": "Indien ingeschakeld, zal het geselecteerde sjabloon automatisch worden gekozen voor nieuwe offertes."
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Periodieke facturen",
@ -526,7 +526,7 @@
"cloned_successfully": "Terugkerende factuur succesvol gekopieerd",
"clone_invoice": "Kopieer periodieke factuur",
"confirm_clone": "Deze periodieke factuur wordt gekopieerd naar een nieuwe periodieke factuur",
"add_customer_email": "Voeg een e-mailadres aan deze klant toe, zodat facturen automatisch verzonden kunnen worden.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Item titel",
"description": "Beschrijving",
@ -658,49 +658,49 @@
"retype_password": "Geef nogmaals het wachtwoord"
},
"modules": {
"buy_now": "Nu kopen",
"install": "Installeer",
"price": "Prijs",
"download_zip_file": "Download ZIP-bestand",
"unzipping_package": "Pakket uitpakken",
"copying_files": "Bestanden kopiëren",
"deleting_files": "Ongebruikte bestanden verwijderen",
"completing_installation": "Installatie voltooien",
"update_failed": "Update mislukt",
"install_success": "Module is succesvol geïnstalleerd!",
"customer_reviews": "Beoordelingen",
"license": "Licentie",
"faq": "Veelgestelde vragen",
"monthly": "Maandelijks",
"yearly": "Jaarlijks",
"updated": "Bijgewerkt",
"version": "Versie",
"disable": "Uitschakelen",
"module_disabled": "Module uitgeschakeld",
"enable": "Inschakelen",
"module_enabled": "Module ingeschakeld",
"update_to": "Update naar",
"module_updated": "Module succesvol bijgewerkt!",
"buy_now": "Buy Now",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API-token",
"invalid_api_token": "Ongeldig API-token.",
"other_modules": "Andere modules",
"view_all": "Toon alles",
"no_reviews_found": "Er zijn nog geen beoordelingen voor deze module!",
"module_not_purchased": "Module niet gekocht",
"module_not_found": "Module niet gevonden",
"api_token": "API token",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Laatst bijgewerkt op",
"connect_installation": "Verbind uw installatie",
"api_token_description": "Log in op {url} en verbind deze installatie door het API Token in te voeren. Uw gekochte modules zullen hier verschijnen nadat de verbinding is gemaakt.",
"view_module": "Bekijk Module",
"update_available": "Update beschikbaar",
"purchased": "Gekocht",
"installed": "Geïnstalleerd",
"no_modules_installed": "Nog geen modules geïnstalleerd!",
"disable_warning": "Alle instellingen voor dit specifiek zullen worden teruggedraaid.",
"what_you_get": "Wat je krijgt"
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
"update_available": "Update Available",
"purchased": "Purchased",
"installed": "Installed",
"no_modules_installed": "No Modules Installed Yet!",
"disable_warning": "All the settings for this particular will be reverted.",
"what_you_get": "What you get"
},
"users": {
"title": "Gebruikers",
@ -807,10 +807,10 @@
"payment_modes": "Betaalmethodes",
"notes": "Opmerkingen",
"exchange_rate": "Wisselkoers",
"address_information": "Adresgegevens"
"address_information": "Address Information"
},
"address_information": {
"section_description": " U kunt uw adresgegevens bijwerken via het onderstaande formulier."
"section_description": " You can update Your Address information using form below."
},
"title": "Instellingen",
"setting": "Instellingen | Instellingen",
@ -839,13 +839,13 @@
},
"mail": {
"host": "Mail host",
"port": "E-mail poort",
"port": "Mail Port",
"driver": "Mail-stuurprogramma",
"secret": "Geheim",
"mailgun_secret": "Mailgun geheim",
"mailgun_secret": "Mailgun Secret",
"mailgun_domain": "Domein",
"mailgun_endpoint": "Mailgun-eindpunt",
"ses_secret": "SES geheim",
"ses_secret": "SES Secret",
"ses_key": "SES-sleutel",
"password": "Mail wachtwoord",
"username": "Mail gebruikersnaam",
@ -1113,7 +1113,7 @@
"default_currency_error": "Deze valuta wordt al gebruikt in een van de Actieve Provider",
"exchange_help_text": "Voer de wisselkoers in om te converteren van {currency} naar {baseCurrency}",
"currency_freak": "Valuta Freak",
"currency_layer": "Valuta-laag",
"currency_layer": "Currency Layer",
"open_exchange_rate": "Open Exchange Rate",
"currency_converter": "Valuta omzetter",
"server": "Server",
@ -1263,7 +1263,7 @@
"media_root": "Media schijf",
"aws_driver": "AWS Stuurprogramma",
"aws_key": "AWS Sleutel",
"aws_secret": "AWS-geheim",
"aws_secret": "AWS Secret",
"aws_region": "AWS Regio",
"aws_bucket": "AWS Bucket",
"aws_root": "AWS Root",
@ -1273,13 +1273,13 @@
"do_spaces_region": "Do Spaces Regio",
"do_spaces_bucket": "Do Spaces Bucket",
"do_spaces_endpoint": "Do Spaces Endpoint",
"do_spaces_root": "Do Spaces hoofdmap",
"do_spaces_root": "Do Spaces Root",
"dropbox_type": "Dropbox Type",
"dropbox_token": "Dropbox Token",
"dropbox_key": "Dropbox Sleutel",
"dropbox_secret": "Dropbox Geheim",
"dropbox_key": "Dropbox Key",
"dropbox_secret": "Dropbox Secret",
"dropbox_app": "Dropbox App",
"dropbox_root": "Dropbox Hoofdmap",
"dropbox_root": "Dropbox Root",
"default_driver": "Standaard stuurprogramma",
"is_default": "IS STANDAARD",
"set_default_disk": "Standaardschijf instellen",
@ -1301,16 +1301,16 @@
"invalid_disk_credentials": "Ongeldige inloggegevens voor geselecteerde schijf"
},
"taxations": {
"add_billing_address": "Vul factuuradres in",
"add_shipping_address": "Vul bezorgadres in",
"add_company_address": "Vul bedrijfsadres in",
"modal_description": "De onderstaande informatie is vereist om de verkoopbelasting op te halen.",
"add_address": "Voeg adres toe voor het ophalen van verkoopbelasting.",
"address_placeholder": "Voorbeeld: 123, Mijn Straat",
"city_placeholder": "Voorbeeld: Amsterdam",
"state_placeholder": "Voorbeeld: Noord-Holland",
"zip_placeholder": "Voorbeeld: 1234 AB",
"invalid_address": "Vul een geldig adres in a.u.b."
"add_billing_address": "Enter Billing Address",
"add_shipping_address": "Enter Shipping Address",
"add_company_address": "Enter Company Address",
"modal_description": "The information below is required in order to fetch sales tax.",
"add_address": "Add Address for fetching sales tax.",
"address_placeholder": "Example: 123, My Street",
"city_placeholder": "Example: Los Angeles",
"state_placeholder": "Example: CA",
"zip_placeholder": "Example: 90024",
"invalid_address": "Please provide valid address details."
}
},
"wizard": {
@ -1328,7 +1328,7 @@
"logo_preview": "Logo Voorbeeld",
"preferences": "Voorkeuren",
"preferences_desc": "Standaardvoorkeuren voor het systeem.",
"currency_set_alert": "De valuta van het bedrijf kan later niet worden gewijzigd.",
"currency_set_alert": "The company's currency cannot be changed later.",
"country": "Land",
"state": "Provincie",
"city": "Stad",
@ -1372,7 +1372,7 @@
"app_domain": "App Domein",
"verify_now": "Nu verifiëren",
"success": "E-mailadres succesvol geverifieerd.",
"failed": "Domeinverificatie is mislukt. Voer een geldige domeinnaam in.",
"failed": "Domain verification failed. Please enter valid domain name.",
"verify_and_continue": "Verifiëren en doorgaan"
},
"mail": {
@ -1380,10 +1380,10 @@
"port": "E-mail Poort",
"driver": "Mail-stuurprogramma",
"secret": "Geheim",
"mailgun_secret": "Mailgun geheim",
"mailgun_secret": "Mailgun Secret",
"mailgun_domain": "Domein",
"mailgun_endpoint": "Mailgun-eindpunt",
"ses_secret": "SES geheim",
"ses_secret": "SES Secret",
"ses_key": "SES-sleutel",
"password": "Mail wachtwoord",
"username": "Mail gebruikersnaam",
@ -1425,7 +1425,7 @@
"not_yet": "Nog niet? Stuur het opnieuw",
"password_min_length": "Wachtwoord moet {count} tekens bevatten",
"name_min_length": "Naam moet minimaal {count} letters bevatten.",
"prefix_min_length": "Voorvoegsel moet minstens {count} letters bevatten.",
"prefix_min_length": "Prefix must have at least {count} letters.",
"enter_valid_tax_rate": "Voer een geldig belastingtarief in",
"numbers_only": "Alleen nummers.",
"characters_only": "Alleen tekens.",
@ -1440,7 +1440,7 @@
"price_minvalue": "Prijs moet hoger zijn dan 0.",
"amount_maxlength": "Bedrag mag niet groter zijn dan 20 cijfers.",
"amount_minvalue": "Bedrag moet groter zijn dan 0.",
"discount_maxlength": "Korting mag niet meer zijn dan maximale korting",
"discount_maxlength": "Discount should not be greater than max discount",
"description_maxlength": "De beschrijving mag niet meer dan 255 tekens bevatten.",
"subject_maxlength": "Het onderwerp mag niet meer dan 100 tekens bevatten.",
"message_maxlength": "Bericht mag niet groter zijn dan 255 tekens.",
@ -1451,9 +1451,9 @@
"prefix_maxlength": "Het voorvoegsel mag niet meer dan 5 tekens bevatten.",
"something_went_wrong": "Er is iets fout gegaan",
"number_length_minvalue": "Het getal moet groter zijn dan 0",
"at_least_one_ability": "Selecteer minstens één machtiging.",
"valid_driver_key": "Voer een geldige {driver} sleutel in.",
"valid_exchange_rate": "Voer a.u.b. een geldige wisselkoers in.",
"at_least_one_ability": "Please select atleast one Permission.",
"valid_driver_key": "Please enter a valid {driver} key.",
"valid_exchange_rate": "Please enter a valid exchange rate.",
"company_name_not_same": "Bedrijfsnaam moet overeenkomen met de opgegeven naam."
},
"errors": {
@ -1461,26 +1461,26 @@
"invalid_provider_key": "Voer een geldige API-sleutel in.",
"estimate_number_used": "Dit offertenummer is reeds in gebruik.",
"invoice_number_used": "Dit factuurnummer is reeds in gebruik.",
"payment_attached": "Deze factuur heeft al een betaling gekoppeld. Zorg ervoor dat u de bijgevoegde betalingen eerst verwijdert om door te gaan met de verwijdering.",
"payment_attached": "This invoice already has a payment attached to it. Make sure to delete the attached payments first in order to go ahead with the removal.",
"payment_number_used": "Dit factuurnummer is reeds in gebruik.",
"name_already_taken": "Deze naam is reeds in gebruik.",
"receipt_does_not_exist": "Kwitantie bestaat niet.",
"customer_cannot_be_changed_after_payment_is_added": "Klant kan niet worden gewijzigd nadat een betaling is toegevoegd",
"receipt_does_not_exist": "Receipt does not exist.",
"customer_cannot_be_changed_after_payment_is_added": "Customer cannot be change after payment is added",
"invalid_credentials": "Inloggegevens ongeldig.",
"not_allowed": "Niet toegestaan",
"login_invalid_credentials": "Deze gegevens zijn niet correct.",
"enter_valid_cron_format": "Voer een geldig cron-formaat in",
"email_could_not_be_sent": "E-mail kon niet naar dit e-mailadres worden verzonden.",
"invalid_address": "Vul een geldig adres in.",
"invalid_key": "Vul een geldige sleutel in.",
"invalid_state": "Vul een geldige provincie in.",
"invalid_city": "Vul een geldige woonplaats in.",
"invalid_postal_code": "Vul een geldige postcode in.",
"invalid_format": "Vul een geldig query-string-formaat in.",
"api_error": "Server reageert niet.",
"feature_not_enabled": "Functie niet ingeschakeld.",
"request_limit_met": "API-verzoeklimiet overschreden.",
"address_incomplete": "Onvolledig adres"
"enter_valid_cron_format": "Please enter a valid cron format",
"email_could_not_be_sent": "Email could not be sent to this email address.",
"invalid_address": "Please enter a valid address.",
"invalid_key": "Please enter valid key.",
"invalid_state": "Please enter a valid state.",
"invalid_city": "Please enter a valid city.",
"invalid_postal_code": "Please enter a valid zip.",
"invalid_format": "Please enter valid query string format.",
"api_error": "Server not responding.",
"feature_not_enabled": "Feature not enabled.",
"request_limit_met": "Api request limit exceeded.",
"address_incomplete": "Incomplete Address"
},
"pdf_estimate_label": "Offerte",
"pdf_estimate_number": "Offerte nummer",

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@
"settings": "Настройки",
"logout": "Выйти",
"users": "Пользователи",
"modules": "Инструменты"
"modules": "Modules"
},
"general": {
"add_company": "Добавить компанию",
@ -29,9 +29,9 @@
"to_date": "До даты",
"from": "Отправитель",
"to": "Получатель",
"ok": "Ок",
"yes": "Да",
"no": "Нет",
"ok": "Ok",
"yes": "Yes",
"no": "No",
"sort_by": "Сортировать",
"ascending": "По возрастанию",
"descending": "По убыванию",
@ -39,7 +39,7 @@
"body": "Содержание",
"message": "Сообщение",
"send": "Отправить",
"preview": "Предпросмотр",
"preview": "Preview",
"go_back": "Назад",
"back_to_login": "Вернуться к логину?",
"home": "Домой",
@ -65,7 +65,7 @@
"sent": "Отправлено",
"all": "Все",
"select_all": "Выбрать всё",
"select_template": "Выбрать шаблон",
"select_template": "Select Template",
"choose_file": "Нажмите сюда чтобы выбрать файлы",
"choose_template": "Выберите шаблон",
"choose": "Выбор",
@ -93,14 +93,14 @@
"no_note_found": "Заметка не найдена",
"insert_note": "Вставить заметку",
"copied_pdf_url_clipboard": "Ссылка на PDF скопирована в буфер обмена!",
"copied_url_clipboard": "Ссылка скопирована!",
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Docs",
"do_you_wish_to_continue": "Хотите продолжить?",
"do_you_wish_to_continue": "Do you wish to continue?",
"note": "Note",
"pay_invoice": "Оплатить счет",
"login_successfully": "Вход выполнен!",
"logged_out_successfully": "Вы успешно вышли",
"mark_as_default": "Установить по умолчанию"
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Выберите год",
@ -109,7 +109,7 @@
"customers": "Клиенты",
"invoices": "Счет-фактуры",
"estimates": "Заказы",
"payments": "Платежи"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Продажи",
@ -151,27 +151,27 @@
"no_results_found": "Ничего не найдено"
},
"company_switcher": {
"label": "СМЕНИТЬ КОМПАНИЮ",
"no_results_found": "Результаты не найдены",
"add_new_company": "Добавить новую компанию",
"new_company": "Новая компания",
"created_message": "Компания создана успешно"
"label": "SWITCH COMPANY",
"no_results_found": "No Results Found",
"add_new_company": "Add new company",
"new_company": "New company",
"created_message": "Company created successfully"
},
"dateRange": {
"today": "Сегодня",
"this_week": "На этой неделе",
"this_month": "В этом месяце",
"this_quarter": "Текущий квартал",
"this_year": "В этом году",
"previous_week": "Предыдущая неделя",
"previous_month": "Предыдущий месяц",
"previous_quarter": "Предыдущий квартал",
"previous_year": "Предыдущий год",
"custom": "Выбор"
"today": "Today",
"this_week": "This Week",
"this_month": "This Month",
"this_quarter": "This Quarter",
"this_year": "This Year",
"previous_week": "Previous Week",
"previous_month": "Previous Month",
"previous_quarter": "Previous Quarter",
"previous_year": "Previous Year",
"custom": "Custom"
},
"customers": {
"title": "Клиенты",
"prefix": "Префикс",
"prefix": "Prefix",
"add_customer": "Добавить клиента",
"contacts_list": "Список клиентов",
"name": "Имя",
@ -186,9 +186,9 @@
"phone": "Телефон",
"website": "Сайт",
"overview": "Обзор",
"invoice_prefix": "Префикс счета",
"invoice_prefix": "Invoice Prefix",
"estimate_prefix": "Estimate Prefix",
"payment_prefix": "Префикс платежа",
"payment_prefix": "Payment Prefix",
"enable_portal": "Разрешить портал",
"country": "Страна",
"state": "Область",
@ -197,7 +197,7 @@
"added_on": "Добавлено",
"action": "Действие",
"password": "Пароль",
"confirm_password": "Подтвердить пароль",
"confirm_password": "Confirm Password",
"street_number": "Номер дома",
"primary_currency": "Основная валюта",
"description": "Описание",
@ -208,10 +208,10 @@
"new_customer": "New Клиент",
"edit_customer": "Редактировать клиента",
"basic_info": "Основное",
"portal_access": "Доступ к порталу",
"portal_access_text": "Хотите ли вы разрешить данному клиенту доступ к порталу для клиентов?",
"portal_access_url": "URL для входа на портал клиента",
"portal_access_url_help": "Пожалуйста, скопируйте и перешлите вышеуказанный URL вашему клиенту для предоставления доступа.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "Адрес плательщика",
"shipping_address": "Адрес доставки",
"copy_billing_address": "Скопировать из биллинга",
@ -231,9 +231,9 @@
"confirm_delete": "Восстановление клиента вместе со всеми его оплатами, сметами и счетами-фактурами будет невозможно. | Восстановление клиентов вместе со всеми их оплатами, сметами и счетами-фактурами будет невозможно.",
"created_message": "Клиент добавлен",
"updated_message": "Клиент обновлён",
"address_updated_message": "Информация об адресе успешно обновлена",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Клиент удалён | Клиенты удалены",
"edit_currency_not_allowed": "Невозможно изменить валюту после создания транзакций."
"edit_currency_not_allowed": "Cannot change currency once transactions created."
},
"items": {
"title": "Товары",
@ -265,8 +265,8 @@
},
"estimates": {
"title": "Заказы",
"accept_estimate": "Принять заказ",
"reject_estimate": "Отклонить заказ",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Заказ | Заказы",
"estimates_list": "Список заказов",
"days": "{days} дней",
@ -318,10 +318,10 @@
},
"accepted": "Принято",
"rejected": "Отклонено",
"expired": "Истёк",
"expired": "Expired",
"sent": "Отправлено",
"draft": "Черновик",
"viewed": "Просмотрено",
"viewed": "Viewed",
"declined": "Отказано",
"new_estimate": "Новый заказ",
"add_new_estimate": "Добавить новый заказ",
@ -355,14 +355,14 @@
"select_an_item": "Выберите товар",
"type_item_description": "Описание товара (необязательно)"
},
"mark_as_default_estimate_template_description": "Если включено, выбранный шаблон будет автоматически выбираться для новых заказов."
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Счет-фактуры",
"download": "Загрузить",
"pay_invoice": "Оплатить счет",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "Список счетов",
"invoice_information": "Информация о счете",
"invoice_information": "Invoice Information",
"days": "{days} дн.",
"months": "{months} мес.",
"years": "{years} г.",
@ -397,16 +397,16 @@
"send_invoice": "Отправить счёт",
"resend_invoice": "Повторно отправить счет",
"invoice_template": "Шаблон счета",
"conversion_message": "Счет успешно скопирован",
"conversion_message": "Invoice cloned successful",
"template": "Шаблон",
"mark_as_sent": "Пометить как отправленное",
"confirm_send_invoice": "Этот счет будет отправлен клиенту по электронной почте",
"invoice_mark_as_sent": "Этот счет будет помечен как отправленный",
"confirm_mark_as_accepted": "Данный счет будет помечен как принятый",
"confirm_mark_as_rejected": "Данный счет будет помечен как отклоненный",
"confirm_mark_as_accepted": "This invoice will be marked as Accepted",
"confirm_mark_as_rejected": "This invoice will be marked as Rejected",
"confirm_send": "Этот счет будет отправлен клиенту по электронной почте",
"invoice_date": "Дата счета-фактуры",
"record_payment": "Добавить платёж",
"record_payment": "Record Payment",
"add_new_invoice": "Добавить новый счёт",
"update_expense": "Обновить расходы",
"edit_invoice": "Редактировать счет-фактуру",
@ -415,13 +415,13 @@
"update_invoice": "Обновить счет",
"add_new_tax": "Добавить новый налог",
"no_invoices": "Пока нет счетов!",
"mark_as_rejected": "Пометить как отклонённый",
"mark_as_accepted": "Пометить как принятый",
"mark_as_rejected": "Mark as rejected",
"mark_as_accepted": "Mark as accepted",
"list_of_invoices": "Этот раздел будет содержать список счетов-фактур.",
"select_invoice": "Выберите счет",
"no_matching_invoices": "Нет соответствующих счетов!",
"mark_as_sent_successfully": "Счет помечен как успешно отправленный",
"invoice_sent_successfully": "Счет-фактура успешно отправлен",
"invoice_sent_successfully": "Invoice sent successfully",
"cloned_successfully": "Счет успешно клонирован",
"clone_invoice": "Клонировать счет",
"confirm_clone": "Этот счет будет клонирован в новый счет",
@ -439,74 +439,74 @@
"select_an_item": "Выберите товар",
"type_item_description": "Описание товара (необязательно)"
},
"payment_attached_message": "К одному из выбранных счетов уже прикреплен платеж. Для удаления сначала удалите прикрепленные платежи",
"confirm_delete": "Восстановление данного счета будет невозможно | Восстановление данного счета будет невозможно",
"payment_attached_message": "One of the selected invoices already have a payment attached to it. Make sure to delete the attached payments first in order to go ahead with the removal",
"confirm_delete": "You will not be able to recover this Invoice | You will not be able to recover these Invoices",
"created_message": "Счет-фактура успешно создан",
"updated_message": "Счет-фактура успешно обновлен",
"deleted_message": "Счет успешно удален | Счета успешно удалены",
"marked_as_sent_message": "Счет помечен как успешно отправленный",
"something_went_wrong": "что-то пошло не так",
"invalid_due_amount_message": "Итоговая сумма счета не может быть меньше оплаченной суммы по данному счету. Пожалуйста, обновите счет или удалите связанные с ним платежи, чтобы продолжить.",
"mark_as_default_invoice_template_description": "Если включено, выбранный шаблон будет автоматически выбираться для новых счетов."
"invalid_due_amount_message": "Total Invoice amount cannot be less than total paid amount for this Invoice. Please update the invoice or delete the associated payments to continue.",
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Recurring Invoices",
"invoices_list": "Recurring Invoices List",
"days": "{days} Дней",
"months": "{months} Месяц",
"years": "{years} Год",
"all": "Все",
"paid": "Оплачено",
"unpaid": "Не оплачено",
"viewed": "Просмотрено",
"overdue": "Просрочен",
"active": "Активный",
"completed": "Выполнен",
"customer": "КЛИЕНТ",
"paid_status": "СТАТУС ПЛАТЕЖА",
"days": "{days} Days",
"months": "{months} Month",
"years": "{years} Year",
"all": "All",
"paid": "Paid",
"unpaid": "Unpaid",
"viewed": "Viewed",
"overdue": "Overdue",
"active": "Active",
"completed": "Completed",
"customer": "CUSTOMER",
"paid_status": "PAID STATUS",
"ref_no": "REF NO.",
"number": "НОМЕР",
"amount_due": "К ОПЛАТЕ",
"partially_paid": "Частично оплачен",
"total": "Итого",
"discount": "Скидка",
"sub_total": "Промежуточный итог",
"number": "NUMBER",
"amount_due": "AMOUNT DUE",
"partially_paid": "Partially Paid",
"total": "Total",
"discount": "Discount",
"sub_total": "Sub Total",
"invoice": "Recurring Invoice | Recurring Invoices",
"invoice_number": "Recurring Invoice Number",
"next_invoice_date": "Дата следующего счета",
"next_invoice_date": "Next Invoice Date",
"ref_number": "Ref Number",
"contact": "Контакты",
"add_item": "Добавить элемент",
"date": "Дата",
"contact": "Contact",
"add_item": "Add an Item",
"date": "Date",
"limit_by": "Limit by",
"limit_date": "Limit Date",
"limit_count": "Limit Count",
"count": "Количество",
"status": "Статус",
"select_a_status": "Выбрать статус",
"working": "В процессе",
"on_hold": "На удержании",
"complete": "Завершено",
"add_tax": "Добавить налог",
"amount": "Сумма",
"action": "Действие",
"notes": "Заметки",
"view": "Просмотр",
"basic_info": "Общая информация",
"count": "Count",
"status": "Status",
"select_a_status": "Select a status",
"working": "Working",
"on_hold": "On Hold",
"complete": "Completed",
"add_tax": "Add Tax",
"amount": "Amount",
"action": "Action",
"notes": "Notes",
"view": "View",
"basic_info": "Basic Info",
"send_invoice": "Send Recurring Invoice",
"auto_send": "Автоотправка",
"auto_send": "Auto Send",
"resend_invoice": "Resend Recurring Invoice",
"invoice_template": "Recurring Invoice Template",
"conversion_message": "Recurring Invoice cloned successful",
"template": "Шаблон",
"mark_as_sent": "Пометить как отправленное",
"template": "Template",
"mark_as_sent": "Mark as sent",
"confirm_send_invoice": "This recurring invoice will be sent via email to the customer",
"invoice_mark_as_sent": "This recurring invoice will be marked as sent",
"confirm_send": "This recurring invoice will be sent via email to the customer",
"starts_at": "Дата начала",
"due_date": "Срок оплаты счёта",
"record_payment": "Добавить платёж",
"add_new_invoice": "Добавить новый повторяющийся счет",
"starts_at": "Start Date",
"due_date": "Invoice Due Date",
"record_payment": "Record Payment",
"add_new_invoice": "Add New Recurring Invoice",
"update_expense": "Update Expense",
"edit_invoice": "Edit Recurring Invoice",
"new_invoice": "New Recurring Invoice",
@ -526,14 +526,14 @@
"cloned_successfully": "Recurring Invoice cloned successfully",
"clone_invoice": "Clone Recurring Invoice",
"confirm_clone": "This recurring invoice will be cloned into a new Recurring Invoice",
"add_customer_email": "Пожалуйста, добавьте адрес электронной почты для этого клиента, чтобы отправлять счета автоматически.",
"add_customer_email": "Please add an email address for this customer to send invoices automatically.",
"item": {
"title": "Название товара",
"description": "Описание",
"quantity": "Кол-во",
"price": "Цена",
"discount": "Скидка",
"total": "Итого",
"title": "Item Title",
"description": "Description",
"quantity": "Quantity",
"price": "Price",
"discount": "Discount",
"total": "Total",
"total_discount": "Total Discount",
"sub_total": "Sub Total",
"tax": "Tax",
@ -547,22 +547,22 @@
"minute": "Minute",
"hour": "Hour",
"day_month": "Day of month",
"month": "Месяц",
"day_week": "День недели"
"month": "Month",
"day_week": "Day of week"
},
"confirm_delete": "You will not be able to recover this Invoice | You will not be able to recover these Invoices",
"created_message": "Recurring Invoice created successfully",
"updated_message": "Recurring Invoice updated successfully",
"deleted_message": "Recurring Invoice deleted successfully | Recurring Invoices deleted successfully",
"marked_as_sent_message": "Recurring Invoice marked as sent successfully",
"user_email_does_not_exist": "Адрес электронной почты пользователя не найден",
"something_went_wrong": "что-то пошло не так",
"user_email_does_not_exist": "User email does not exist",
"something_went_wrong": "something went wrong",
"invalid_due_amount_message": "Total Recurring Invoice amount cannot be less than total paid amount for this Recurring Invoice. Please update the invoice or delete the associated payments to continue."
},
"payments": {
"title": "Платежи",
"payments_list": "Список платежей",
"record_payment": "Добавить платёж",
"record_payment": "Record Payment",
"customer": "Клиент",
"date": "Дата",
"amount": "Сумма",
@ -603,7 +603,7 @@
"select_a_customer": "Выберите клиента",
"expense_title": "Заголовок",
"customer": "Клиент",
"currency": "Валюта",
"currency": "Currency",
"contact": "Контакт",
"category": "Категория",
"from_date": "От даты",
@ -626,11 +626,11 @@
"new_expense": "Новый расход",
"expense": "Расход | Расходы",
"no_expenses": "No expenses yet!",
"list_of_expenses": "В этом разделе будет содержаться список расходов.",
"list_of_expenses": "This section will contain the list of expenses.",
"confirm_delete": "You will not be able to recover this Expense | You will not be able to recover these Expenses",
"created_message": "Расход создан успешно",
"updated_message": "Расход успешно обновлен",
"deleted_message": "Расход успешно удален | Расходы успешно удалены",
"created_message": "Expense created successfully",
"updated_message": "Expense updated successfully",
"deleted_message": "Expense deleted successfully | Expenses deleted successfully",
"categories": {
"categories_list": "Список категорий",
"title": "Заголовок",
@ -658,40 +658,40 @@
"retype_password": "Повторите пароль"
},
"modules": {
"buy_now": "Купить",
"install": "Установить",
"price": "Цена",
"download_zip_file": "Скачать ZIP-файл",
"unzipping_package": "Распаковка пакета",
"copying_files": "Копирование файлов",
"deleting_files": "Удаление неиспользуемых файлов",
"completing_installation": "Завершение установки",
"update_failed": "Не удалось обновить",
"install_success": "Модуль успешно установлен!",
"customer_reviews": "Отзывы",
"license": "Лицензия",
"faq": "Часто задаваемые вопросы",
"monthly": "Ежемесячно",
"yearly": "Ежегодно",
"updated": "Обновлено",
"version": "Версия",
"disable": "Отключить",
"module_disabled": "Модуль отключен",
"enable": "Включить",
"module_enabled": "Модуль включен",
"update_to": "Обновить до",
"module_updated": "Модуль успешно обновлен!",
"title": "Модули",
"module": "Модуль | Модули",
"api_token": "API-токен",
"invalid_api_token": "Неверный API-токен.",
"other_modules": "Другие модули",
"view_all": "Показать всё",
"no_reviews_found": "Для данного модуля пока нет отзывов!",
"module_not_purchased": "Модуль не приобретен",
"module_not_found": "Модуль не найден",
"buy_now": "Buy Now",
"install": "Install",
"price": "Price",
"download_zip_file": "Download ZIP file",
"unzipping_package": "Unzipping Package",
"copying_files": "Copying Files",
"deleting_files": "Deleting Unused files",
"completing_installation": "Completing Installation",
"update_failed": "Update Failed",
"install_success": "Module has been installed successfully!",
"customer_reviews": "Reviews",
"license": "License",
"faq": "FAQ",
"monthly": "Monthly",
"yearly": "Yearly",
"updated": "Updated",
"version": "Version",
"disable": "Disable",
"module_disabled": "Module Disabled",
"enable": "Enable",
"module_enabled": "Module Enabled",
"update_to": "Update To",
"module_updated": "Module Updated Successfully!",
"title": "Modules",
"module": "Module | Modules",
"api_token": "API token",
"invalid_api_token": "Invalid API Token.",
"other_modules": "Other Modules",
"view_all": "View All",
"no_reviews_found": "There are no reviews for this module yet!",
"module_not_purchased": "Module Not Purchased",
"module_not_found": "Module Not Found",
"version_not_supported": "This module version doesn't support the current version of Crater",
"last_updated": "Последнее обновление",
"last_updated": "Last Updated On",
"connect_installation": "Connect your installation",
"api_token_description": "Login to {url} and connect this installation by entering the API Token. Your purchased modules will show up here after the connection is established.",
"view_module": "View Module",
@ -728,7 +728,7 @@
"updated_message": "Пользователь успешно обновлен",
"deleted_message": "Пользователь успешно удален | Пользователи успешно удалены",
"select_company_role": "Select Role for {company}",
"companies": "Компании"
"companies": "Companies"
},
"reports": {
"title": "Отчёт",
@ -872,13 +872,13 @@
"address": "Адрес",
"zip": "Индекс",
"save": "Сохранить",
"delete": "Удалить",
"delete": "Delete",
"updated_message": "Информация о компании успешно обновлена",
"delete_company": "Удалить компанию",
"delete_company": "Delete Company",
"delete_company_description": "Once you delete your company, you will lose all the data and files associated with it permanently.",
"are_you_absolutely_sure": "Вы уверены?",
"are_you_absolutely_sure": "Are you absolutely sure?",
"delete_company_modal_desc": "This action cannot be undone. This will permanently delete {company} and all of its associated data.",
"delete_company_modal_label": "Пожалуйста, введите {company} для подтверждения"
"delete_company_modal_label": "Please type {company} to confirm"
},
"custom_fields": {
"title": "Пользовательские поля",
@ -890,7 +890,7 @@
"type": "Тип",
"name": "Название",
"slug": "Slug",
"required": "Обязательно для заполнения",
"required": "Required",
"placeholder": "Placeholder",
"help_text": "Справка",
"default_value": "Default Value",
@ -911,49 +911,49 @@
"sort_in_alphabetical_order": "Sort in Alphabetical Order",
"add_options_in_bulk": "Add options in bulk",
"use_predefined_options": "Use Predefined Options",
"select_custom_date": "Выберите произвольную дату",
"select_relative_date": "Выберите относительную дату",
"ticked_by_default": "Отмечен по умолчанию",
"updated_message": "Пользовательское поле успешно обновлено",
"added_message": "Пользовательское поле успешно добавлено",
"press_enter_to_add": "Нажмите ввод для добавления новой опции",
"model_in_use": "Невозможно обновить модель для полей, которые уже используются.",
"type_in_use": "Невозможно обновить тип для полей, которые уже используются."
"select_custom_date": "Select Custom Date",
"select_relative_date": "Select Relative Date",
"ticked_by_default": "Ticked by default",
"updated_message": "Custom Field updated successfully",
"added_message": "Custom Field added successfully",
"press_enter_to_add": "Press enter to add new option",
"model_in_use": "Cannot update model for fields which are already in use.",
"type_in_use": "Cannot update type for fields which are already in use."
},
"customization": {
"customization": "персонализация",
"customization": "customization",
"updated_message": "Информация о компании успешно обновлена",
"save": "Сохранить",
"insert_fields": "Вставить поля",
"insert_fields": "Insert Fields",
"learn_custom_format": "Learn how to use custom format",
"add_new_component": "Добавить компонент",
"component": "Компонент",
"Parameter": "Параметр",
"add_new_component": "Add New Component",
"component": "Component",
"Parameter": "Parameter",
"series": "Series",
"series_description": "To set a static prefix/postfix like 'INV' across your company. It supports character length of up to 6 chars.",
"series_param_label": "Series Value",
"delimiter": "Разделитель",
"delimiter_description": "Символ для обозначения границы между двумя компонентами. По умолчанию имеет значение -",
"delimiter_param_label": "Разделитель",
"date_format": "Формат даты",
"delimiter": "Delimiter",
"delimiter_description": "Single character for specifying the boundary between 2 separate components. By default its set to -",
"delimiter_param_label": "Delimiter Value",
"date_format": "Date Format",
"date_format_description": "A local date and time field which accepts a format parameter. The default format: 'Y' renders the current year.",
"date_format_param_label": "Формат",
"sequence": "Последовательность",
"date_format_param_label": "Format",
"sequence": "Sequence",
"sequence_description": "Consecutive sequence of numbers across your company. You can specify the length on the given parameter.",
"sequence_param_label": "Длина последовательности",
"sequence_param_label": "Sequence Length",
"customer_series": "Customer Series",
"customer_series_description": "Установить отдельный префикс/постфикс для каждого клиента.",
"customer_series_description": "To set a different prefix/postfix for each customer.",
"customer_sequence": "Customer Sequence",
"customer_sequence_description": "Consecutive sequence of numbers for each of your customer.",
"customer_sequence_param_label": "Длина последовательности",
"random_sequence": "Случайная последовательность",
"random_sequence_description": "Произвольная буквенно-цифровая строка. Вы можете указать длину в качестве параметра.",
"random_sequence_param_label": "Длина последовательности",
"customer_sequence_param_label": "Sequence Length",
"random_sequence": "Random Sequence",
"random_sequence_description": "Random alphanumeric string. You can specify the length on the given parameter.",
"random_sequence_param_label": "Sequence Length",
"invoices": {
"title": "Счет-фактуры",
"invoice_number_format": "Формат номера счета",
"invoice_number_format": "Invoice Number Format",
"invoice_number_format_description": "Customize how your invoice number gets generated automatically when you create a new invoice.",
"preview_invoice_number": "Предосмотр номера счета",
"preview_invoice_number": "Preview Invoice Number",
"due_date": "Due Date",
"due_date_description": "Specify how due date is automatically set when you create an invoice.",
"due_date_days": "Invoice Due after days",
@ -969,7 +969,7 @@
"invoice_email_attachment_setting_description": "Включите, если вы хотите отправлять счета-фактуры как вложение по электронной почте. Пожалуйста, обратите внимание, что кнопка «Просмотр счета» в письмах больше не будет отображаться, если включено.",
"invoice_settings_updated": "Invoice Settings updated successfully",
"retrospective_edits": "Retrospective Edits",
"allow": "Разрешить",
"allow": "Allow",
"disable_on_invoice_partial_paid": "Disable after partial payment is recorded",
"disable_on_invoice_paid": "Disable after full payment is recorded",
"disable_on_invoice_sent": "Disable after invoice is sent",
@ -1116,9 +1116,9 @@
"currency_layer": "Currency Layer",
"open_exchange_rate": "Open Exchange Rate",
"currency_converter": "Currency Converter",
"server": "Сервер",
"url": "URL-адрес",
"active": "Активный",
"server": "Server",
"url": "URL",
"active": "Active",
"currency_help_text": "This provider will only be used on above selected currencies",
"currency_in_used": "The following currencies are already active on another provider. Please remove these currencies from selection to activate this provider again."
},

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
"customers": "Müşteriler",
"items": "Ürünler",
"invoices": "Faturalar",
"recurring-invoices": "Tekrarlayan Faturalar",
"recurring-invoices": "Recurring Invoices",
"expenses": "Harcamalar",
"estimates": "Proformalar",
"payments": "Ödemeler",
@ -12,7 +12,7 @@
"settings": "Ayarlar",
"logout": ıkış yap",
"users": "Kullanıcılar",
"modules": "Modüller"
"modules": "Modules"
},
"general": {
"add_company": "Firma ekle",
@ -29,9 +29,9 @@
"to_date": "Bitiş tarihi",
"from": "Gönderen",
"to": "Alıcı",
"ok": "Tamam",
"yes": "Evet",
"no": "Hayır",
"ok": "Ok",
"yes": "Yes",
"no": "No",
"sort_by": "Sıralama ölçütü",
"ascending": "Artan",
"descending": "Azalan",
@ -39,7 +39,7 @@
"body": "Gövde",
"message": "Mesaj",
"send": "Gönder",
"preview": "Ön İzleme",
"preview": "Preview",
"go_back": "Geri dön",
"back_to_login": "Giriş sayfasına dönülsün mü?",
"home": "Ana sayfa",
@ -65,7 +65,7 @@
"sent": "Gönderildi",
"all": "Tümü",
"select_all": "Hepsini Seç",
"select_template": "Şablon Seçin",
"select_template": "Select Template",
"choose_file": "Bir dosya seçmek için buraya tıklayın",
"choose_template": "Bir şablon seçin",
"choose": "Seç",
@ -93,14 +93,14 @@
"no_note_found": "Not Bulunamadı",
"insert_note": "Not Ekle",
"copied_pdf_url_clipboard": "PDF bağlantısı panoya kopyalandı!",
"copied_url_clipboard": "URL panoya kopyalandı!",
"docs": "Belgeler",
"do_you_wish_to_continue": "Devam etmek istiyor musunuz?",
"note": "Not",
"pay_invoice": "Fatura ödeme",
"login_successfully": "Başarıyla giriş yapıldı!",
"logged_out_successfully": "Başarıyla çıkış yapıldı",
"mark_as_default": "Varsayılan olarak işaretleyin"
"copied_url_clipboard": "Copied url to clipboard!",
"docs": "Docs",
"do_you_wish_to_continue": "Do you wish to continue?",
"note": "Note",
"pay_invoice": "Pay Invoice",
"login_successfully": "Logged in successfully!",
"logged_out_successfully": "Logged out successfully",
"mark_as_default": "Mark as default"
},
"dashboard": {
"select_year": "Yılı seçin",
@ -109,7 +109,7 @@
"customers": "Müşteriler",
"invoices": "Faturalar",
"estimates": "Proformalar",
"payments": "Ödemeler"
"payments": "Payments"
},
"chart_info": {
"total_sales": "Satışlar",
@ -151,27 +151,27 @@
"no_results_found": "Hiçbir sonuç bulunamadı"
},
"company_switcher": {
"label": "ŞİRKETİ DEĞİŞTİR",
"no_results_found": "Hiçbir sonuç bulunamadı",
"add_new_company": "Yeni Firma Ekle",
"new_company": "Yeni Şirket",
"created_message": "Firma başarıyla oluşturuldu"
"label": "SWITCH COMPANY",
"no_results_found": "No Results Found",
"add_new_company": "Add new company",
"new_company": "New company",
"created_message": "Company created successfully"
},
"dateRange": {
"today": "Bugün",
"this_week": "Bu Hafta",
"this_month": "Bu Ay",
"this_quarter": "Bu Çeyrek Yıl",
"this_year": "Bu Yıl",
"previous_week": "Önceki Hafta",
"previous_month": "Önceki Ay",
"previous_quarter": "Önceki Çeyrek Yıl",
"previous_year": "Önceki Yıl",
"custom": "Özel"
"today": "Today",
"this_week": "This Week",
"this_month": "This Month",
"this_quarter": "This Quarter",
"this_year": "This Year",
"previous_week": "Previous Week",
"previous_month": "Previous Month",
"previous_quarter": "Previous Quarter",
"previous_year": "Previous Year",
"custom": "Custom"
},
"customers": {
"title": "Müşteriler",
"prefix": "Ön ek",
"prefix": "Prefix",
"add_customer": "Müşteri ekle",
"contacts_list": "Müşteri listesi",
"name": "İsim",
@ -186,9 +186,9 @@
"phone": "Telefon",
"website": "Web sitesi",
"overview": "Özet",
"invoice_prefix": "Fatura Öneki",
"estimate_prefix": "Proforma Öneki",
"payment_prefix": "Ödeme öneki",
"invoice_prefix": "Invoice Prefix",
"estimate_prefix": "Estimate Prefix",
"payment_prefix": "Payment Prefix",
"enable_portal": "Portalı etkinleştir",
"country": "Ülke",
"state": "İl",
@ -197,7 +197,7 @@
"added_on": "Eklenme tarihi",
"action": "Eylem",
"password": "Parola",
"confirm_password": "Parolayı Doğrula",
"confirm_password": "Confirm Password",
"street_number": "Sokak ve numara",
"primary_currency": "Ana para birimi",
"description": "Açıklama",
@ -208,10 +208,10 @@
"new_customer": "Yeni müşteri",
"edit_customer": "Müşteriyi düzenle",
"basic_info": "Temel bilgiler",
"portal_access": "Portal Erişimi",
"portal_access_text": "Bu müşterinin Müşteri Portalı'na giriş yapmasına izin vermek ister misiniz?",
"portal_access_url": "Müşteri Portal Giriş URL'si",
"portal_access_url_help": "Erişim sağlamak için lütfen yukarıda verilen URL'yi kopyalayıp müşterinize iletin.",
"portal_access": "Portal Access",
"portal_access_text": "Would you like to allow this customer to login to the Customer Portal?",
"portal_access_url": "Customer Portal Login URL",
"portal_access_url_help": "Please copy & forward the above given URL to your customer for providing access.",
"billing_address": "Fatura Adresi",
"shipping_address": "Teslimat Adresi",
"copy_billing_address": "Faturadan Kopyala",
@ -231,9 +231,9 @@
"confirm_delete": "Bu müşteri ve ilgili tüm Fatura, Proformalar ve ödemeleri geri getiremeyeceksiniz. | Bu müşteriler ve ilgili tüm Fatura, Proformalar ve ödemeleri geri getiremeyeceksiniz.",
"created_message": "Müşteri başarıyla oluşturuldu",
"updated_message": "Müşteri başarıyla güncellendi",
"address_updated_message": "Adres Bilgileri başarıyla güncellendi",
"address_updated_message": "Address Information Updated succesfully",
"deleted_message": "Müşteri başarıyla silindi | Müşteriler başarıyla silindi",
"edit_currency_not_allowed": "İşlemler oluşturulduktan sonra para birimi değiştirilemez."
"edit_currency_not_allowed": "Cannot change currency once transactions created."
},
"items": {
"title": "Öğeler",
@ -265,8 +265,8 @@
},
"estimates": {
"title": "Proformalar",
"accept_estimate": "Proformayı Onayla",
"reject_estimate": "Proformayı Reddet",
"accept_estimate": "Accept Estimate",
"reject_estimate": "Reject Estimate",
"estimate": "Proforma | Proformalar",
"estimates_list": "Proforma Listesi",
"days": "{days} Günler",
@ -318,10 +318,10 @@
},
"accepted": "Onaylandı",
"rejected": "Reddedildi",
"expired": "Süresi dolmuş",
"expired": "Expired",
"sent": "Gönderildi",
"draft": "Taslak",
"viewed": "Görüldü",
"viewed": "Viewed",
"declined": "Reddedildi",
"new_estimate": "Yeni proforma",
"add_new_estimate": "Yeni proforma ekle",
@ -355,14 +355,14 @@
"select_an_item": "Ürün seçmek için yazın ya da tıklayın",
"type_item_description": "Ürün açıklaması ekleyin (isteğe bağlı)"
},
"mark_as_default_estimate_template_description": "Etkinleştirilirse, seçilen şablon yeni proformalar için otomatik olarak seçilecektir."
"mark_as_default_estimate_template_description": "If enabled, the selected template will be automatically selected for new estimates."
},
"invoices": {
"title": "Faturalar",
"download": "İndir",
"pay_invoice": "Fatura Ödeme",
"download": "Download",
"pay_invoice": "Pay Invoice",
"invoices_list": "Fatura Listesi",
"invoice_information": "Fatura Bilgileri",
"invoice_information": "Invoice Information",
"days": "{days} Günler",
"months": "{months} Ay",
"years": "{years} Yıl",
@ -397,13 +397,13 @@
"send_invoice": "Faturayı gönder",
"resend_invoice": "Faturayı tekrar gönder",
"invoice_template": "Fatura şablonu",
"conversion_message": "Fatura başarıyla klonlandı",
"conversion_message": "Invoice cloned successful",
"template": "Şablon",
"mark_as_sent": "Gönderildi olarak işaretle",
"confirm_send_invoice": "Bu fatura müşteriye e-posta ile gönderilecek",
"invoice_mark_as_sent": "Bu fatura gönderildi olarak işaretlenecek",
"confirm_mark_as_accepted": "Bu fatura Kabul edildi olarak işaretlenecek",
"confirm_mark_as_rejected": "Bu fatura Reddedildi olarak işaretlenecek",
"confirm_mark_as_accepted": "This invoice will be marked as Accepted",
"confirm_mark_as_rejected": "This invoice will be marked as Rejected",
"confirm_send": "Bu fatura müşteriye e-posta ile gönderilecek",
"invoice_date": "Fatura tarihi",
"record_payment": "Ödeme ekle",
@ -415,13 +415,13 @@
"update_invoice": "Faturayı güncelle",
"add_new_tax": "Yeni vergi ekle",
"no_invoices": "Henüz fatura yok!",
"mark_as_rejected": "Reddedildi olarak işaretle",
"mark_as_accepted": "Kabul edildi olarak işaretle",
"mark_as_rejected": "Mark as rejected",
"mark_as_accepted": "Mark as accepted",
"list_of_invoices": "Bu bölümde faturaların listesi bulunmaktadır.",
"select_invoice": "Faturayı seç",
"no_matching_invoices": "Eşleşen fatura yok!",
"mark_as_sent_successfully": "Fatura başarıyla gönderildi olarak işaretlendi",
"invoice_sent_successfully": "Fatura başarıyla gönderildi",
"invoice_sent_successfully": "Invoice sent successfully",
"cloned_successfully": "Fatura başarıyla klonlandı",
"clone_invoice": "Faturayı klonla",
"confirm_clone": "Bu fatura yeni bir fatura olarak klonlanacak",
@ -447,40 +447,40 @@
"marked_as_sent_message": "Fatura başarıyla gönderildi olarak işaretlendi",
"something_went_wrong": "bir şeyler ters gitti",
"invalid_due_amount_message": "Toplam Fatura bedeli bu fatura için olan toplam ödemeden az olamaz. Lütfen devam etmek için faturayı güncelleyin veya ilişkili ödemeyi silin.",
"mark_as_default_invoice_template_description": "Etkinleştirilirse, seçilen şablon yeni faturalar için otomatik olarak seçilecektir."
"mark_as_default_invoice_template_description": "If enabled, the selected template will be automatically selected for new invoices."
},
"recurring_invoices": {
"title": "Tekrarlayan Faturalar",
"invoices_list": "Tekrarlayan Fatura Listesi",
"days": "{days} Günler",
"months": "{months} Ay",
"years": "{years} Yıl",
"all": "Tümü",
"paid": "Ödendi",
"unpaid": "Ödenmedi",
"viewed": "Görüldü",
"overdue": "Vadesi geçmiş",
"active": "Aktif",
"completed": "Tamamlandı",
"customer": "MÜŞTERİ",
"paid_status": "ÖDEME DURUMU",
"title": "Recurring Invoices",
"invoices_list": "Recurring Invoices List",
"days": "{days} Days",
"months": "{months} Month",
"years": "{years} Year",
"all": "All",
"paid": "Paid",
"unpaid": "Unpaid",
"viewed": "Viewed",
"overdue": "Overdue",
"active": "Active",
"completed": "Completed",
"customer": "CUSTOMER",
"paid_status": "PAID STATUS",
"ref_no": "REF NO.",
"number": "SAYI",
"amount_due": "ALACAK MİKTARI",
"partially_paid": "Kısmen Ödendi",
"total": "Toplam",
"discount": "İskonto",
"sub_total": "Ara Toplam",
"invoice": "Yinelenen Fatura | Yinelenen Faturalar",
"invoice_number": "Yinelenen Fatura Numarası",
"next_invoice_date": "Sonraki Fatura Tarihi",
"ref_number": "Ref. Numarası",
"contact": "İletişim",
"add_item": "Öğe ekle",
"date": "Tarih",
"limit_by": "Şuna göre sınırla",
"limit_date": "Sınır Tarihi",
"limit_count": "Sınır Sayısı",
"number": "NUMBER",
"amount_due": "AMOUNT DUE",
"partially_paid": "Partially Paid",
"total": "Total",
"discount": "Discount",
"sub_total": "Sub Total",
"invoice": "Recurring Invoice | Recurring Invoices",
"invoice_number": "Recurring Invoice Number",
"next_invoice_date": "Next Invoice Date",
"ref_number": "Ref Number",
"contact": "Contact",
"add_item": "Add an Item",
"date": "Date",
"limit_by": "Limit by",
"limit_date": "Limit Date",
"limit_count": "Limit Count",
"count": "Count",
"status": "Status",
"select_a_status": "Select a status",
@ -490,24 +490,24 @@
"add_tax": "Add Tax",
"amount": "Amount",
"action": "Action",
"notes": "Notlar",
"view": "Görüntüle",
"basic_info": "Temel Bilgiler",
"send_invoice": "Yinelenen Fatura Gönder",
"auto_send": "Otamatik Gönder",
"resend_invoice": "Yinelenen Fatura Gönder",
"invoice_template": "Yinelenen Fatura Şablonu",
"conversion_message": "Yinelenen Fatura başarılı bir şekilde klonlandı",
"template": "Şablon",
"mark_as_sent": "Gönderildi olarak işaretle",
"confirm_send_invoice": "Bu yineleyen fatura müşteriye e-posta ile gönderilecek",
"invoice_mark_as_sent": "Bu yineleyen fatura gönderildi olarak işaretlenecek",
"confirm_send": "Bu yinelenen fatura müşteriye e-posta yoluyla gönderilecektir",
"starts_at": "Başlangıç Tarihi",
"due_date": "Fatura Ödeme Tarihi",
"record_payment": "Ödemeyi Kaydet",
"add_new_invoice": "Yinelenen Yeni Fatura Oluştur",
"update_expense": "Masrafı Güncelle",
"notes": "Notes",
"view": "View",
"basic_info": "Basic Info",
"send_invoice": "Send Recurring Invoice",
"auto_send": "Auto Send",
"resend_invoice": "Resend Recurring Invoice",
"invoice_template": "Recurring Invoice Template",
"conversion_message": "Recurring Invoice cloned successful",
"template": "Template",
"mark_as_sent": "Mark as sent",
"confirm_send_invoice": "This recurring invoice will be sent via email to the customer",
"invoice_mark_as_sent": "This recurring invoice will be marked as sent",
"confirm_send": "This recurring invoice will be sent via email to the customer",
"starts_at": "Start Date",
"due_date": "Invoice Due Date",
"record_payment": "Record Payment",
"add_new_invoice": "Add New Recurring Invoice",
"update_expense": "Update Expense",
"edit_invoice": "Edit Recurring Invoice",
"new_invoice": "New Recurring Invoice",
"send_automatically": "Send Automatically",

View File

@ -386,10 +386,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -408,10 +408,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -346,10 +346,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -15,6 +15,7 @@
margin: 0px;
padding: 0px;
margin-top: 50px;
}
.text-center {
@ -35,6 +36,7 @@
left: 0px;
width: 100%;
margin-left: 0%;
}
.header-container {
@ -50,6 +52,12 @@
padding-bottom: 20px;
text-transform: capitalize;
color: #817AE3;
}
.header {
font-size: 20px;
color: rgba(0, 0, 0, 0.7);
}
.content-wrapper {
@ -327,10 +335,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -377,10 +377,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>@lang('pdf_invoice_label') - {{ $invoice->invoice_number }}</title>
<title>@lang('pdf_invoice_label') - {{$invoice->invoice_number}}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
@ -187,7 +187,7 @@
.total-display-table {
border-top: none;
border-top: none;
page-break-inside: avoid;
page-break-before: auto;
page-break-after: auto;
@ -304,12 +304,7 @@
.pl-0 {
padding-left: 0;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
@ -317,10 +312,10 @@
<table width="100%">
<tr>
<td width="50%" class="header-section-left">
@if ($logo)
<img class="header-logo" style="height: 50px;" src="{{ $logo }}" alt="Company Logo">
@if($logo)
<img class="header-logo" style="height: 50px;" src="{{ $logo }}" alt="Company Logo">
@else
<h1 class="header-logo"> {{ $invoice->customer->company->name }} </h1>
<h1 class="header-logo"> {{$invoice->customer->company->name}} </h1>
@endif
</td>
<td width="50%" class="text-right company-address-container company-address">
@ -336,14 +331,14 @@
<div class="main-content">
<div class="customer-address-container">
<div class="billing-address-container billing-address">
@if ($billing_address)
@if($billing_address)
<b>@lang('pdf_bill_to')</b> <br>
{!! $billing_address !!}
@endif
</div>
<div @if ($billing_address !== '</br>') class="shipping-address-container shipping-address" @else class="shipping-address-container--left shipping-address" @endif>
@if ($shipping_address)
<div @if($billing_address !== '</br>') class="shipping-address-container shipping-address" @else class="shipping-address-container--left shipping-address" @endif>
@if($shipping_address)
<b>@lang('pdf_ship_to')</b> <br>
{!! $shipping_address !!}
@endif
@ -355,15 +350,15 @@
<table>
<tr>
<td class="attribute-label">@lang('pdf_invoice_number')</td>
<td class="attribute-value"> &nbsp;{{ $invoice->invoice_number }}</td>
<td class="attribute-value"> &nbsp;{{$invoice->invoice_number}}</td>
</tr>
<tr>
<td class="attribute-label">@lang('pdf_invoice_date')</td>
<td class="attribute-value"> &nbsp;{{ $invoice->formattedInvoiceDate }}</td>
<td class="attribute-value"> &nbsp;{{$invoice->formattedInvoiceDate}}</td>
</tr>
<tr>
<td class="attribute-label">@lang('pdf_invoice_due_date')</td>
<td class="attribute-value"> &nbsp;{{ $invoice->formattedDueDate }}</td>
<td class="attribute-value"> &nbsp;{{$invoice->formattedDueDate}}</td>
</tr>
</table>
</div>
@ -373,7 +368,7 @@
@include('app.pdf.invoice.partials.table')
<div class="notes">
@if ($notes)
@if($notes)
<div class="notes-label">
@lang('pdf_notes')
</div>

View File

@ -1,34 +0,0 @@
<style type="text/css">
@font-face {
font-family: 'THSarabunNew';
font-style: normal;
font-weight: normal;
src: url("{{ resource_path('static/fonts/THSarabunNew.ttf') }}") format('truetype');
}
@font-face {
font-family: 'THSarabunNew';
font-style: normal;
font-weight: bold;
src: url("{{ resource_path('static/fonts/THSarabunNew-Bold.ttf') }}") format('truetype');
}
@font-face {
font-family: 'THSarabunNew';
font-style: italic;
font-weight: normal;
src: url("{{ resource_path('static/fonts/THSarabunNew-Italic.ttf') }}") format('truetype');
}
@font-face {
font-family: 'THSarabunNew';
font-style: italic;
font-weight: bold;
src: url("{{ resource_path('static/fonts/THSarabunNew-BoldItalic.ttf') }}") format('truetype');
}
body {
font-family: "THSarabunNew", sans-serif !important;
}
</style>

View File

@ -276,10 +276,6 @@
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>@lang('pdf_expense_report_label')</title>
<style type="text/css">
@ -12,7 +11,7 @@
border-collapse: collapse;
}
.sub-container {
.sub-container{
padding: 0px 20px;
}
@ -134,12 +133,7 @@
color: #5851D8;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
<div class="sub-container">
<table class="report-header">
@ -161,18 +155,18 @@
<div class="expenses-table-container">
<table class="expenses-table">
@foreach ($expenseCategories as $expenseCategory)
<tr>
<td>
<p class="expense-title">
{{ $expenseCategory->category->name }}
</p>
</td>
<td>
<p class="expense-amount">
{!! format_money_pdf($expenseCategory->total_amount, $currency) !!}
</p>
</td>
</tr>
<tr>
<td>
<p class="expense-title">
{{ $expenseCategory->category->name }}
</p>
</td>
<td>
<p class="expense-amount">
{!! format_money_pdf($expenseCategory->total_amount) !!}
</p>
</td>
</tr>
@endforeach
</table>
</div>
@ -181,7 +175,7 @@
<table class="expense-total-table">
<tr>
<td class="expense-total-cell">
<p class="expense-total">{!! format_money_pdf($totalExpense, $currency) !!}</p>
<p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p>
</td>
</tr>
</table>
@ -191,10 +185,9 @@
<p class="report-footer-label">@lang('pdf_total_expenses_label')</p>
</td>
<td>
<p class="report-footer-value">{!! format_money_pdf($totalExpense, $currency) !!}</p>
<p class="report-footer-value">{!! format_money_pdf($totalExpense) !!}</p>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>@lang('pdf_profit_loss_label')</title>
<style type="text/css">
@ -12,7 +11,7 @@
border-collapse: collapse;
}
.sub-container {
.sub-container{
padding: 0px 20px;
}
@ -159,12 +158,7 @@
color: #5851D8;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
<div class="sub-container">
<table class="report-header">
@ -189,7 +183,7 @@
<p class="income-title">@lang("pdf_income_label")</p>
</td>
<td>
<p class="income-amount">{!! format_money_pdf($income, $currency) !!}</p>
<p class="income-amount">{!! format_money_pdf($income) !!}</p>
</td>
</tr>
</table>
@ -197,18 +191,18 @@
<div class="expenses-table-container">
<table class="expenses-table">
@foreach ($expenseCategories as $expenseCategory)
<tr>
<td>
<p class="expense-title">
{{ $expenseCategory->category->name }}
</p>
</td>
<td>
<p class="expense-amount">
{!! format_money_pdf($expenseCategory->total_amount, $currency) !!}
</p>
</td>
</tr>
<tr>
<td>
<p class="expense-title">
{{ $expenseCategory->category->name }}
</p>
</td>
<td>
<p class="expense-amount">
{!! format_money_pdf($expenseCategory->total_amount) !!}
</p>
</td>
</tr>
@endforeach
</table>
@ -218,7 +212,7 @@
<table class="expense-total-indicator-table">
<tr>
<td class="expense-total-cell">
<p class="expense-total">{!! format_money_pdf($totalExpense, $currency) !!}</p>
<p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p>
</td>
</tr>
</table>
@ -228,10 +222,9 @@
<p class="report-footer-label">@lang("pdf_net_profit_label")</p>
</td>
<td>
<p class="report-footer-value">{!! format_money_pdf($income - $totalExpense, $currency) !!}</p>
<p class="report-footer-value">{!! format_money_pdf(($income-$totalExpense)) !!}</p>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>@lang('pdf_sales_customers_label')</title>
<style type="text/css">
@ -12,7 +11,7 @@
border-collapse: collapse;
}
.sub-container {
.sub-container{
padding: 0px 20px;
}
@ -133,17 +132,11 @@
line-height: 21px;
color: #5851D8;
}
.text-center {
text-align: center;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
<div class="sub-container">
<table class="report-header">
@ -163,34 +156,34 @@
</table>
@foreach ($customers as $customer)
<p class="sales-customer-name">{{ $customer->name }}</p>
<div class="sales-table-container">
<table class="sales-table">
@foreach ($customer->invoices as $invoice)
<p class="sales-customer-name">{{ $customer->name }}</p>
<div class="sales-table-container">
<table class="sales-table">
@foreach ($customer->invoices as $invoice)
<tr>
<td>
<p class="sales-information-text">
{{ $invoice->formattedInvoiceDate }} ({{ $invoice->invoice_number }})
</p>
</td>
<td>
<p class="sales-amount">
{!! format_money_pdf($invoice->base_total) !!}
</p>
</td>
</tr>
@endforeach
</table>
</div>
<table class="sales-total-indicator-table">
<tr>
<td>
<p class="sales-information-text">
{{ $invoice->formattedInvoiceDate }} ({{ $invoice->invoice_number }})
</p>
</td>
<td>
<p class="sales-amount">
{!! format_money_pdf($invoice->base_total, $currency) !!}
<td class="sales-total-cell">
<p class="sales-total-amount">
{!! format_money_pdf($customer->totalAmount) !!}
</p>
</td>
</tr>
@endforeach
</table>
</div>
<table class="sales-total-indicator-table">
<tr>
<td class="sales-total-cell">
<p class="sales-total-amount">
{!! format_money_pdf($customer->totalAmount, $currency) !!}
</p>
</td>
</tr>
</table>
@endforeach
</div>
@ -202,11 +195,10 @@
</td>
<td>
<p class="report-footer-value">
{!! format_money_pdf($totalAmount, $currency) !!}
{!! format_money_pdf($totalAmount) !!}
</p>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@ -1,18 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>@lang('pdf_sales_items_label')</title>
<style type="text/css">
body {
font-family: "DejaVu Sans";
}
table {
border-collapse: collapse;
}
.sub-container {
.sub-container{
padding: 0px 20px;
}
@ -133,17 +132,11 @@
line-height: 21px;
color: #5851D8;
}
.text-center {
text-align: center;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
<div class="sub-container">
<table class="report-header">
@ -161,36 +154,36 @@
</td>
</tr>
</table>
<p class="sales-items-title">@lang('pdf_items_label')</p>
@foreach ($items as $item)
<div class="items-table-container">
<table class="items-table">
<div class="items-table-container">
<table class="items-table">
<tr>
<td>
<p class="item-title">
{{ $item->name }}
</p>
</td>
<td>
<p class="item-sales-amount">
{!! format_money_pdf($item->total_amount) !!}
</p>
</td>
</tr>
</table>
</div>
@endforeach
<table class="sales-total-indicator-table">
<tr>
<td>
<p class="item-title">
{{ $item->name }}
</p>
</td>
<td>
<p class="item-sales-amount">
{!! format_money_pdf($item->total_amount, $currency) !!}
<td class="sales-total-cell">
<p class="sales-total-amount">
{!! format_money_pdf($totalAmount) !!}
</p>
</td>
</tr>
</table>
</div>
@endforeach
<table class="sales-total-indicator-table">
<tr>
<td class="sales-total-cell">
<p class="sales-total-amount">
{!! format_money_pdf($totalAmount, $currency) !!}
</p>
</td>
</tr>
</table>
</div>
@ -201,11 +194,10 @@
</td>
<td>
<p class="report-footer-value">
{!! format_money_pdf($totalAmount, $currency) !!}
{!! format_money_pdf($totalAmount) !!}
</p>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>@lang('pdf_tax_summery_label')</title>
<style type="text/css">
@ -12,7 +11,7 @@
border-collapse: collapse;
}
.sub-container {
.sub-container{
padding: 0px 20px;
}
@ -135,12 +134,7 @@
color: #5851D8;
}
</style>
@if (App::isLocale('th'))
@include('app.pdf.locale.th')
@endif
</head>
<body>
<div class="sub-container">
<table class="report-header">
@ -166,18 +160,18 @@
<div class="tax-table-container">
<table class="tax-table">
@foreach ($taxTypes as $tax)
<tr>
<td>
<p class="tax-title">
{{ $tax->taxType->name }}
</p>
</td>
<td>
<p class="tax-amount">
{!! format_money_pdf($tax->total_tax_amount, $currency) !!}
</p>
</td>
</tr>
<tr>
<td>
<p class="tax-title">
{{ $tax->taxType->name }}
</p>
</td>
<td>
<p class="tax-amount">
{!! format_money_pdf($tax->total_tax_amount) !!}
</p>
</td>
</tr>
@endforeach
</table>
@ -188,7 +182,7 @@
<tr>
<td class="tax-total-cell">
<p class="tax-total">
{!! format_money_pdf($totalTaxAmount, $currency) !!}
{!! format_money_pdf($totalTaxAmount) !!}
</p>
</td>
</tr>
@ -200,11 +194,10 @@
</td>
<td>
<p class="report-footer-value">
{!! format_money_pdf($totalTaxAmount, $currency) !!}
{!! format_money_pdf($totalTaxAmount) !!}
</p>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

View File

@ -1,40 +0,0 @@
APP_ENV=production
APP_KEY=base64:kgk/4DW1vEVy7aEvet5FPp5un6PIGe/so8H0mvoUtW0=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://crater.test
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=crater
DB_USERNAME=crater
DB_PASSWORD=crater
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_DRIVER=sync
SESSION_DRIVER=cookie
SESSION_LIFETIME=1440
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
PUSHER_APP_ID=
PUSHER_KEY=
PUSHER_SECRET=
SANCTUM_STATEFUL_DOMAINS=crater.test
SESSION_DOMAIN=crater.test
TRUSTED_PROXIES="*"
CRON_JOB_AUTH_TOKEN=""

View File

@ -1,48 +0,0 @@
FROM php:8.1-fpm
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
libpng-dev \
libonig-dev \
libxml2-dev \
zip \
unzip \
libzip-dev \
libmagickwand-dev \
mariadb-client
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pecl install imagick \
&& docker-php-ext-enable imagick
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring zip exif pcntl bcmath gd
# Get latest Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Create system user to run Composer and Artisan Commands
RUN useradd -G www-data,root -u 1000 -d /home/crater-user crater-user
RUN mkdir -p /home/crater-user/.composer && \
chown -R crater-user:crater-user /home/crater-user
# Mounted volumes
COPY ./ /var/www
COPY ./docker-compose/php/uploads.ini /usr/local/etc/php/conf.d/uploads.ini
COPY ./uffizzi/.env.example /var/www/.env
# Set working directory
WORKDIR /var/www
RUN chown -R crater-user:crater-user ./
RUN chmod -R 775 composer.json composer.lock \
composer.lock storage/framework/ \
storage/logs/ bootstrap/cache/ /home/crater-user/.composer
RUN chown -R $(whoami):$(whoami) /var/log/
RUN chmod -R 775 /var/log
USER crater-user

View File

@ -1,68 +0,0 @@
FROM php:8.1-fpm as build
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
libpng-dev \
libonig-dev \
libxml2-dev \
zip \
unzip \
libzip-dev \
libmagickwand-dev \
mariadb-client
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pecl install imagick \
&& docker-php-ext-enable imagick
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring zip exif pcntl bcmath gd
# Get latest Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Create system user to run Composer and Artisan Commands
RUN useradd -G www-data,root -u 1000 -d /home/crater-user crater-user
RUN mkdir -p /home/crater-user/.composer && \
chown -R crater-user:crater-user /home/crater-user
# Mounted volumes
COPY ./ /var/www
COPY ./docker-compose/php/uploads.ini /usr/local/etc/php/conf.d/uploads.ini
COPY ./uffizzi/.env.example /var/www/.env
# Set working directory
WORKDIR /var/www
RUN chown -R crater-user:crater-user ./
RUN chmod -R 775 composer.json composer.lock \
composer.lock storage/framework/ \
storage/logs/ bootstrap/cache/ /home/crater-user/.composer
RUN composer config --no-plugins allow-plugins.pestphp/pest-plugin true && \
composer install --no-interaction --prefer-dist --optimize-autoloader && \
php artisan storage:link || true && \
php artisan key:generate
FROM php:8.0-fpm-alpine
RUN apk add --no-cache \
php8-bcmath
RUN docker-php-ext-install pdo pdo_mysql bcmath
COPY docker-compose/crontab /etc/crontabs/root
# Mounted volumes
COPY --from=build /var/www /var/www
RUN chown -R $(whoami):$(whoami) /var/www/
RUN chmod -R 775 /var/www/
RUN chown -R $(whoami):$(whoami) /var/log/
RUN chmod -R 775 /var/log/
CMD ["crond", "-f"]

View File

@ -1,58 +0,0 @@
version: '3'
x-uffizzi:
ingress:
service: nginx
port: 80
services:
app:
image: "${APP_IMAGE}"
restart: unless-stopped
working_dir: /var/www/
command: ["-c","
composer config --no-plugins allow-plugins.pestphp/pest-plugin true &&
composer install --no-interaction --prefer-dist --optimize-autoloader &&
php artisan storage:link || true &&
php artisan key:generate --force &&
php-fpm",
]
entrypoint: /bin/sh
depends_on:
- db
deploy:
resources:
limits:
memory: 1000m
db:
image: mariadb
restart: always
environment:
MYSQL_USER: crater
MYSQL_PASSWORD: crater
MYSQL_DATABASE: crater
MYSQL_ROOT_PASSWORD: crater
ports:
- '33006:3306'
deploy:
resources:
limits:
memory: 500m
nginx:
image: "${NGINX_IMAGE}"
restart: unless-stopped
ports:
- 80:80
depends_on:
- app
resources:
limits:
memory: 500m
cron:
image: "${CROND_IMAGE}"
restart: always

View File

@ -1,7 +0,0 @@
FROM nginx:1.17-alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY ./ /var/www
COPY ./uffizzi/nginx/nginx /etc/nginx/conf.d/

View File

@ -1,22 +0,0 @@
server {
client_max_body_size 64M;
listen 80;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/public;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass localhost:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_read_timeout 300;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
gzip_static on;
}
}

View File

@ -367,11 +367,6 @@
resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.17.tgz#2280ea4e8c50189c2729814d2ae484e58c712a36"
integrity sha512-+WRd0RuCK4+jFKNVN+4rHTa5VMqqGDO2uc+TknkqhFqWp/z96OAGlpHJOwPrnW1fLbpjEBBQIr1vVYSw6KgcZg==
"@tiptap/extension-text-align@^2.0.0-beta.29":
version "2.0.0-beta.202"
resolved "https://registry.yarnpkg.com/@tiptap/extension-text-align/-/extension-text-align-2.0.0-beta.202.tgz#37c73e884fb0d9ebe2a519d398b2da52672b7a4b"
integrity sha512-cB5SBKRTn730BBwtPQaKfc7uYgI7bGuD1UbsdF8UY93vIsRjdRO4McNlvgfDrb8WrD460PsOOXx18YwX1+3T/Q==
"@tiptap/extension-text@^2.0.0-beta.13":
version "2.0.0-beta.13"
resolved "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-2.0.0-beta.13.tgz#da0af8d9a3f149d20076e15d88c6af21fb6d940f"
@ -1066,7 +1061,7 @@ commander@^6.0.0:
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
core-js@^3.6.5:
version "3.18.1"
@ -2006,9 +2001,9 @@ mini-svg-data-uri@^1.2.3, mini-svg-data-uri@^1.3.3:
integrity sha512-+fA2oRcR1dJI/7ITmeQJDrYWks0wodlOz0pAEhKYJ2IVc1z0AnwJUsKY2fzFmPAM3Jo9J0rBx8JAA9QQSJ5PuA==
minimatch@^3.0.4:
version "3.1.2"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
dependencies:
brace-expansion "^1.1.7"