diff --git a/app/Abstracts/Report.php b/app/Abstracts/Report.php
index 06397a854..6821fe204 100644
--- a/app/Abstracts/Report.php
+++ b/app/Abstracts/Report.php
@@ -2,7 +2,7 @@
namespace App\Abstracts;
-use Akaunting\Apexcharts\Charts as Apexcharts;
+use Akaunting\Apexcharts\Chart;
use App\Events\Report\DataLoaded;
use App\Events\Report\DataLoading;
use App\Events\Report\FilterApplying;
@@ -14,7 +14,6 @@ use App\Exports\Common\Reports as Export;
use App\Models\Common\Report as Model;
use App\Models\Document\Document;
use App\Models\Setting\Category;
-use App\Traits\Charts;
use App\Traits\DateTime;
use App\Traits\SearchString;
use App\Traits\Translations;
@@ -24,7 +23,7 @@ use Illuminate\Support\Str;
abstract class Report
{
- use Charts, DateTime, SearchString, Translations;
+ use DateTime, SearchString, Translations;
public $model;
@@ -176,7 +175,7 @@ abstract class Report
public function getBarChart($table_key)
{
- $chart = new Apexcharts();
+ $chart = new Chart();
if (empty($this->chart)) {
return $chart;
@@ -194,7 +193,7 @@ abstract class Report
public function getDonutChart($table_key)
{
- $chart = new Apexcharts();
+ $chart = new Chart();
if (empty($this->chart)) {
return $chart;
diff --git a/app/Traits/Charts.php b/app/Traits/Charts.php
index 43adf9514..130f6fad7 100644
--- a/app/Traits/Charts.php
+++ b/app/Traits/Charts.php
@@ -2,7 +2,7 @@
namespace App\Traits;
-use Akaunting\Apexcharts\Charts as Apexcharts;
+use Akaunting\Apexcharts\Chart;
trait Charts
{
@@ -54,7 +54,7 @@ trait Charts
$labels[$id] = $this->donut['labels'][$id];
}
- $chart = new Apexcharts();
+ $chart = new Chart();
$chart->setType('donut')
->setWidth($width)
@@ -75,7 +75,7 @@ trait Charts
public function getBarChart($name, $width = '100%', $height = 160)
{
- $chart = new Apexcharts();
+ $chart = new Chart();
$chart->setType('bar')
->setWidth($width)
diff --git a/app/View/Components/Button.php b/app/View/Components/Button.php
index 6e5f083b9..a9134ec72 100644
--- a/app/View/Components/Button.php
+++ b/app/View/Components/Button.php
@@ -37,7 +37,7 @@ class Button extends Component
*/
public function render()
{
- return view('components.button');
+ return view('components.button.index');
}
protected function getOverride($override)
diff --git a/app/Widgets/CashFlow.php b/app/Widgets/CashFlow.php
index 7e164ec6f..570864757 100644
--- a/app/Widgets/CashFlow.php
+++ b/app/Widgets/CashFlow.php
@@ -2,7 +2,7 @@
namespace App\Widgets;
-use Akaunting\Apexcharts\Charts as Apexcharts;
+use Akaunting\Apexcharts\Chart;
use App\Abstracts\Widget;
use App\Models\Banking\Transaction;
use App\Traits\Currencies;
@@ -55,7 +55,7 @@ class CashFlow extends Widget
],
];
- $chart = new Apexcharts();
+ $chart = new Chart();
$chart->setType('line')
->setOptions($options)
diff --git a/app/Widgets/ProfitLoss.php b/app/Widgets/ProfitLoss.php
index 39febc172..3477cf301 100644
--- a/app/Widgets/ProfitLoss.php
+++ b/app/Widgets/ProfitLoss.php
@@ -6,7 +6,7 @@ use App\Abstracts\Widget;
use App\Utilities\Recurring;
use App\Models\Document\Document;
use App\Models\Banking\Transaction;
-use Akaunting\Apexcharts\Charts as Apexcharts;
+use Akaunting\Apexcharts\Chart;
use App\Traits\Currencies;
use App\Traits\DateTime;
use App\Utilities\Date;
@@ -39,7 +39,7 @@ class ProfitLoss extends Widget
$colors = $this->getColors();
- $chart = new Apexcharts();
+ $chart = new Chart();
$options = [
'legend' => [
diff --git a/composer.json b/composer.json
index 023e737f8..02a74b88a 100644
--- a/composer.json
+++ b/composer.json
@@ -27,7 +27,7 @@
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-zip": "*",
- "akaunting/laravel-apexcharts": "^1.0",
+ "akaunting/laravel-apexcharts": "^2.0",
"akaunting/laravel-firewall": "^1.2",
"akaunting/laravel-language": "^1.0",
"akaunting/laravel-menu": "^2.0",
diff --git a/composer.lock b/composer.lock
index 77df1997c..e259ccd40 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,27 +4,27 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "f804c45a0f63885fada71147a44bb516",
+ "content-hash": "802a453ffd64d0ac19d6fc741b46dacc",
"packages": [
{
"name": "akaunting/laravel-apexcharts",
- "version": "1.0.4",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/akaunting/laravel-apexcharts.git",
- "reference": "84ae3484f1df9f3486b5e0bd65241b5822947ca3"
+ "reference": "3b545508bec317c36a0cb83809de6e6cc8397832"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/akaunting/laravel-apexcharts/zipball/84ae3484f1df9f3486b5e0bd65241b5822947ca3",
- "reference": "84ae3484f1df9f3486b5e0bd65241b5822947ca3",
+ "url": "https://api.github.com/repos/akaunting/laravel-apexcharts/zipball/3b545508bec317c36a0cb83809de6e6cc8397832",
+ "reference": "3b545508bec317c36a0cb83809de6e6cc8397832",
"shasum": ""
},
"require": {
"balping/json-raw-encoder": "^1.0",
"ext-json": "*",
"illuminate/support": ">=8.0",
- "php": ">=7.3"
+ "php": ">=8.0"
},
"require-dev": {
"orchestra/testbench": ">=6.0",
@@ -70,9 +70,9 @@
],
"support": {
"issues": "https://github.com/akaunting/laravel-apexcharts/issues",
- "source": "https://github.com/akaunting/laravel-apexcharts/tree/1.0.4"
+ "source": "https://github.com/akaunting/laravel-apexcharts/tree/2.0.1"
},
- "time": "2022-02-23T12:26:06+00:00"
+ "time": "2022-06-16T14:48:25+00:00"
},
{
"name": "akaunting/laravel-debugbar-collector",
@@ -906,16 +906,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.225.1",
+ "version": "3.225.5",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "b795c9c14997dac771f66d1f6cbadb62c742373a"
+ "reference": "09b404c6b80b9c31be15fa245e647a2f9fb5e733"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b795c9c14997dac771f66d1f6cbadb62c742373a",
- "reference": "b795c9c14997dac771f66d1f6cbadb62c742373a",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/09b404c6b80b9c31be15fa245e647a2f9fb5e733",
+ "reference": "09b404c6b80b9c31be15fa245e647a2f9fb5e733",
"shasum": ""
},
"require": {
@@ -991,9 +991,9 @@
"support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues",
- "source": "https://github.com/aws/aws-sdk-php/tree/3.225.1"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.225.5"
},
- "time": "2022-06-09T18:19:43+00:00"
+ "time": "2022-06-15T19:35:13+00:00"
},
{
"name": "balping/json-raw-encoder",
@@ -5225,16 +5225,16 @@
},
{
"name": "league/flysystem",
- "version": "3.0.20",
+ "version": "3.0.21",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "42a2f47dcf39944e2aee1b660ee55ab6ef69b535"
+ "reference": "8f1fcf9d2304ff77a006aa36dd2cb5f236999b12"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/42a2f47dcf39944e2aee1b660ee55ab6ef69b535",
- "reference": "42a2f47dcf39944e2aee1b660ee55ab6ef69b535",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8f1fcf9d2304ff77a006aa36dd2cb5f236999b12",
+ "reference": "8f1fcf9d2304ff77a006aa36dd2cb5f236999b12",
"shasum": ""
},
"require": {
@@ -5295,7 +5295,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.0.20"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.0.21"
},
"funding": [
{
@@ -5311,20 +5311,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-25T19:18:39+00:00"
+ "time": "2022-06-12T17:54:28+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
- "version": "3.0.13",
+ "version": "3.0.21",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
- "reference": "0074cf016e21a6d1eb99b6db70acdd23743fc371"
+ "reference": "f4ee238279f1eb39a32539a18ef845db7251fd05"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/0074cf016e21a6d1eb99b6db70acdd23743fc371",
- "reference": "0074cf016e21a6d1eb99b6db70acdd23743fc371",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/f4ee238279f1eb39a32539a18ef845db7251fd05",
+ "reference": "f4ee238279f1eb39a32539a18ef845db7251fd05",
"shasum": ""
},
"require": {
@@ -5365,9 +5365,9 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
- "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.0.13"
+ "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.0.21"
},
- "time": "2022-04-01T22:05:11+00:00"
+ "time": "2022-06-12T17:34:31+00:00"
},
{
"name": "league/mime-type-detection",
@@ -13932,16 +13932,16 @@
},
{
"name": "spatie/laravel-ignition",
- "version": "1.2.4",
+ "version": "1.3.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
- "reference": "b90026ba26fe6589101dc5cd6527846290560aea"
+ "reference": "5409e699fc19f4d53e59427445b08f90593fda28"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/b90026ba26fe6589101dc5cd6527846290560aea",
- "reference": "b90026ba26fe6589101dc5cd6527846290560aea",
+ "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/5409e699fc19f4d53e59427445b08f90593fda28",
+ "reference": "5409e699fc19f4d53e59427445b08f90593fda28",
"shasum": ""
},
"require": {
@@ -14018,7 +14018,7 @@
"type": "github"
}
],
- "time": "2022-06-08T07:07:57+00:00"
+ "time": "2022-06-15T13:55:18+00:00"
},
{
"name": "theseer/tokenizer",
@@ -14178,5 +14178,5 @@
"ext-zip": "*"
},
"platform-dev": [],
- "plugin-api-version": "2.3.0"
+ "plugin-api-version": "2.2.0"
}
diff --git a/public/css/app.css b/public/css/app.css
index 6c15c44f0..e3db1dad8 100644
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -36064,10 +36064,6 @@ body{
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
-.hover\:rounded-lg:hover{
- border-radius: 0.5rem;
-}
-
.hover\:rounded-md:hover{
border-radius: 0.375rem;
}
@@ -36232,13 +36228,6 @@ body{
text-decoration-line: underline;
}
-.hover\:shadow-md:hover{
- --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
- --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
- -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
-}
-
.hover\:shadow-2xl:hover{
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
@@ -36498,6 +36487,12 @@ body{
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
+[dir="ltr"] .ltr\:space-x-4 > :not([hidden]) ~ :not([hidden]){
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
+ margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
+}
+
[dir="ltr"] .ltr\:pr-6{
padding-right: 1.5rem;
}
@@ -36614,10 +36609,6 @@ body{
float: left;
}
-[dir="rtl"] .rtl\:m-4{
- margin: 1rem;
-}
-
[dir="rtl"] .rtl\:ml-4{
margin-left: 1rem;
}
@@ -36638,6 +36629,10 @@ body{
margin-left: 0.75rem;
}
+[dir="rtl"] .rtl\:mr-4{
+ margin-right: 1rem;
+}
+
[dir="rtl"] .rtl\:ml-1{
margin-left: 0.25rem;
}
@@ -36646,10 +36641,6 @@ body{
margin-right: 0.25rem;
}
-[dir="rtl"] .rtl\:mr-4{
- margin-right: 1rem;
-}
-
[dir="rtl"] .rtl\:-mr-7{
margin-right: -1.75rem;
}
diff --git a/resources/assets/js/views/common/documents.js b/resources/assets/js/views/common/documents.js
index 4c16b4348..62b65309c 100644
--- a/resources/assets/js/views/common/documents.js
+++ b/resources/assets/js/views/common/documents.js
@@ -265,7 +265,7 @@ const app = new Vue({
inclusive_tax_total += item.tax_ids[inclusive.tax_index].price;
- totals_taxes = this.calculateTotalsTax(totals_taxes, inclusive.tax_id, inclusive.tax_name, inclusive.tax_type, item.tax_ids[inclusive.tax_index].price);
+ totals_taxes = this.calculateTotalsTax(totals_taxes, inclusive.tax_id, inclusive.tax_name, item.tax_ids[inclusive.tax_index].price);
}, this);
item.total = parseFloat(item.grand_total - inclusive_tax_total);
@@ -277,7 +277,7 @@ const app = new Vue({
total_tax_amount += item.tax_ids[fixed.tax_index].price;
- totals_taxes = this.calculateTotalsTax(totals_taxes, fixed.tax_id, fixed.tax_name, fixed.tax_type, item.tax_ids[fixed.tax_index].price);
+ totals_taxes = this.calculateTotalsTax(totals_taxes, fixed.tax_id, fixed.tax_name, item.tax_ids[fixed.tax_index].price);
}, this);
}
@@ -293,7 +293,7 @@ const app = new Vue({
total_tax_amount += item.tax_ids[normal.tax_index].price;
- totals_taxes = this.calculateTotalsTax(totals_taxes, normal.tax_id, normal.tax_name, normal.tax_type, item.tax_ids[normal.tax_index].price);
+ totals_taxes = this.calculateTotalsTax(totals_taxes, normal.tax_id, normal.tax_name, item.tax_ids[normal.tax_index].price);
}, this);
}
@@ -303,7 +303,7 @@ const app = new Vue({
total_tax_amount += item.tax_ids[withholding.tax_index].price;
- totals_taxes = this.calculateTotalsTax(totals_taxes, withholding.tax_id, withholding.tax_name, withholding.tax_type, item.tax_ids[withholding.tax_index].price);
+ totals_taxes = this.calculateTotalsTax(totals_taxes, withholding.tax_id, withholding.tax_name, item.tax_ids[withholding.tax_index].price);
}, this);
}
@@ -313,7 +313,7 @@ const app = new Vue({
compounds.forEach(function(compound) {
item.tax_ids[compound.tax_index].price = (item.grand_total / 100) * compound.tax_rate;
- totals_taxes = this.calculateTotalsTax(totals_taxes, compound.tax_id, compound.tax_name, compound.tax_type, item.tax_ids[compound.tax_index].price);
+ totals_taxes = this.calculateTotalsTax(totals_taxes, compound.tax_id, compound.tax_name, item.tax_ids[compound.tax_index].price);
item.grand_total += item.tax_ids[compound.tax_index].price;
}, this);
diff --git a/resources/lang/bs-BA/countries.php b/resources/lang/bs-BA/countries.php
index 6e2d89a00..652be938f 100644
--- a/resources/lang/bs-BA/countries.php
+++ b/resources/lang/bs-BA/countries.php
@@ -1,6 +1,7 @@
'Afganistan',
'AX' => 'Olandska ostrva',
'AL' => 'Albanija',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Kazahstan',
'KE' => 'Kenija',
'KI' => 'Kiribati',
+ 'XK' => 'Kosovo',
'KW' => 'Kuvajt',
'KG' => 'Kirgistan',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Jemen',
'ZM' => 'Zambija',
'ZW' => 'Zimbabve',
+
];
diff --git a/resources/lang/ca-ES/countries.php b/resources/lang/ca-ES/countries.php
index 4b7d20136..7470b88dd 100644
--- a/resources/lang/ca-ES/countries.php
+++ b/resources/lang/ca-ES/countries.php
@@ -1,6 +1,7 @@
'Afganistan',
'AX' => 'Illes Åland',
'AL' => 'Albània',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KI' => 'Kiribati',
+ 'XK' => 'Kosovo',
'KW' => 'Kuwait',
'KG' => 'Kirguizistan',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Iemen',
'ZM' => 'Zàmbia',
'ZW' => 'Zimbàbue',
+
];
diff --git a/resources/lang/ca-ES/general.php b/resources/lang/ca-ES/general.php
index d61a2b4b6..dd125957e 100644
--- a/resources/lang/ca-ES/general.php
+++ b/resources/lang/ca-ES/general.php
@@ -4,7 +4,6 @@ return [
'dashboards' => 'Tauler|Taulers',
'items' => 'Article|Articles',
- 'incomes' => 'Ingrés|Ingressos',
'invoices' => 'Factura|Factures',
'recurring_invoices' => 'Factura recurrent|Factures recurrents',
'customers' => 'Client|Clients',
@@ -70,6 +69,7 @@ return [
'invitations' => 'Invitació|Invitacions',
'attachments' => 'Adjunt|Adjunts',
'histories' => 'Història|Històries',
+ 'your_notifications' => 'La teva notificació|Les teves notificacions',
'welcome' => 'Benvingut/da',
'banking' => 'Bancs',
@@ -184,6 +184,7 @@ return [
'no_matching_data' => 'Cap dada coincident',
'clear_cache' => 'Neteja memòria cau',
'go_to_dashboard' => 'Vés al tauler de control',
+ 'create_first_invoice' => 'Crea la teva primera factura',
'is' => 'és',
'isnot' => 'no és',
'recurring_and_more' => 'Recurrent i més...',
@@ -199,7 +200,6 @@ return [
'email_send_me' => 'Envia\'m una còpia a mi mateix a :email',
'connect' => 'Connecta',
'assign' => 'Assigna',
- 'your_notifications' => 'La teva notificació|Les teves notificacions',
'new' => 'Nou',
'new_more' => 'Nou...',
'number' => 'Número',
diff --git a/resources/lang/en-AU/countries.php b/resources/lang/en-AU/countries.php
index d5f58854c..9c1201978 100644
--- a/resources/lang/en-AU/countries.php
+++ b/resources/lang/en-AU/countries.php
@@ -1,6 +1,7 @@
'Honduras',
'AX' => 'Åland Islands',
'AL' => 'Albania',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KI' => 'Kiribati',
+ 'XK' => 'Kosovo',
'KW' => 'Kuwait',
'KG' => 'Kyrgyzstan',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Yemen',
'ZM' => 'Zambia',
'ZW' => 'Zimbabwe',
+
];
diff --git a/resources/lang/fr-FR/countries.php b/resources/lang/fr-FR/countries.php
index 50b4ff8d7..c47b75d4a 100644
--- a/resources/lang/fr-FR/countries.php
+++ b/resources/lang/fr-FR/countries.php
@@ -1,6 +1,7 @@
'Afghanistan',
'AX' => 'Îles Åland',
'AL' => 'Albanie',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KI' => 'Kiribati',
+ 'XK' => 'Kosovo',
'KW' => 'Koweït',
'KG' => 'Kirghizstan',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Yémen',
'ZM' => 'Zambie',
'ZW' => 'Zimbabwe',
+
];
diff --git a/resources/lang/hi-IN/accounts.php b/resources/lang/hi-IN/accounts.php
index 24de4e2d5..3dbc013fa 100644
--- a/resources/lang/hi-IN/accounts.php
+++ b/resources/lang/hi-IN/accounts.php
@@ -3,6 +3,7 @@
return [
'account_name' => 'खाते का नाम',
+ 'account_balance' => 'खाते का बैलेंस',
'number' => 'खाता संख्या',
'opening_balance' => 'प्रारंभिक शेष',
'current_balance' => 'वर्तमान शेष',
@@ -14,5 +15,17 @@ return [
'outgoing' => 'जावक',
'see_performance' => 'प्रदर्शन देखें',
'create_report' => 'अगर आप खाते का प्रदर्शन देखना चाहते हैं। आप आय बनाम व्यय रिपोर्ट उदाहरण बना सकते हैं।',
+ 'banks' => 'बैंक|बैंकों',
+ 'credit_cards' => 'क्रेडिट कार्ड|क्रेडिट कार्ड',
+
+ 'form_description' => [
+ 'general' => 'ऋणात्मक प्रारंभिक शेषराशि के लिए क्रेडिट कार्ड प्रकार का उपयोग करें। खातों को सही ढंग से समेटने के लिए संख्या आवश्यक है। डिफ़ॉल्ट खाता सभी लेनदेन को रिकॉर्ड करेगा यदि अन्यथा नहीं चुना गया है।',
+ 'bank' => 'आपके एक से अधिक बैंकों में कई बैंक खाते हो सकते हैं। आपके बैंक के बारे में जानकारी रिकॉर्ड करने से आपके बैंक के भीतर लेन-देन का मिलान करना आसान हो जाएगा।',
+ ],
+
+ 'no_records' => [
+ 'transactions' => 'इस खाते में अभी तक कोई लेनदेन नहीं हुआ है। अब एक नया बनाएँ।',
+ 'transfers' => 'इस खाते से/में अभी तक कोई स्थानांतरण नहीं हुआ है। अब एक नया बनाएँ।',
+ ],
];
diff --git a/resources/lang/hi-IN/auth.php b/resources/lang/hi-IN/auth.php
index 039e51c2c..8f2d60036 100644
--- a/resources/lang/hi-IN/auth.php
+++ b/resources/lang/hi-IN/auth.php
@@ -2,20 +2,34 @@
return [
+ 'auth' => 'प्रमाणीकरण',
'profile' => 'प्रोफ़ाइल',
'logout' => 'लॉग आउट',
'login' => 'लॉग इन करें',
+ 'forgot' => 'भूल गया',
'login_to' => 'अपना सेशन शुरू करने के लिए लॉगिन करे',
'remember_me' => 'मुझे याद रखना',
'forgot_password' => 'मैं अपना पासवर्ड भूल गया',
'reset_password' => 'पासवर्ड रीसेट',
+ 'change_password' => 'पासवर्ड बदलें',
'enter_email' => 'अपना ईमेल दर्ज करे',
'current_email' => 'वर्तमान ईमेल',
'reset' => 'रीसेट',
'never' => 'कभी नहीँ',
'landing_page' => 'लैंडिंग पेज',
+ 'personal_information' => 'व्यक्तिगत जानकारी',
+ 'register_user' => 'उपयोगकर्ता पंजीकृत करें',
+ 'register' => 'पंजीकरण करें',
+
+ 'form_description' => [
+ 'personal' => 'आमंत्रण लिंक नए उपयोगकर्ता को भेजा जाएगा, इसलिए सुनिश्चित करें कि ईमेल पता सही है। वे अपना पासवर्ड दर्ज करने में सक्षम होंगे।',
+ 'assign' => 'उपयोगकर्ता के पास चयनित कंपनियों तक एक्सेस होगी। आप भूमिका (Roles) पृष्ठ से अनुमतियों (Permission) को प्रतिबंधित कर सकते हैं।',
+ 'preferences' => 'उपयोगकर्ता की डिफ़ॉल्ट भाषा का चयन करें। उपयोगकर्ता के लॉग इन करने के बाद आप लैंडिंग पृष्ठ भी सेट कर सकते हैं।',
+ ],
'password' => [
+ 'pass' => 'पासवर्ड',
+ 'pass_confirm' => 'पासवर्ड पुष्टि करें',
'current' => 'पासवर्ड',
'current_confirm' => 'पासवर्ड पुष्टि करें',
'new' => 'नया पासवर्ड',
@@ -28,14 +42,51 @@ return [
'no_company' => 'त्रुटि: आपके खाते को कोई कंपनी नहीं सौंपी गई। कृपया सिस्टम व्यवस्थापक से संपर्क करें।',
],
+ 'login_redirect' => 'सत्यापन हो गया! आप को ले जाय जा रहा है...',
'failed' => 'ये प्रमाण हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।',
'throttle' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।',
'disabled' => 'यह खाता निष्क्रिय है। कृपया सिस्टम व्यवस्थापक से संपर्क करें।',
'notification' => [
- 'message_1' => 'आप यह ईमेल प्राप्त कर रहे हैं क्योंकि हमें आपके खाते के लिए पासवर्ड रीसेट अनुरोध प्राप्त हुआ है।',
- 'message_2' => 'यदि आपने पासवर्ड रीसेट का अनुरोध नहीं किया है, तो आगे की कार्रवाई की आवश्यकता नहीं है।',
- 'button' => 'पासवर्ड रीसेट',
+ 'message_1' => 'आप यह ईमेल प्राप्त कर रहे हैं क्योंकि हमें आपके खाते के लिए पासवर्ड रीसेट अनुरोध प्राप्त हुआ है।',
+ 'message_2' => 'यदि आपने पासवर्ड रीसेट का अनुरोध नहीं किया है, तो आगे की कार्रवाई की आवश्यकता नहीं है।',
+ 'button' => 'पासवर्ड रीसेट',
+ ],
+
+ 'invitation' => [
+ 'message_1' => 'आपको यह ईमेल इसलिए प्राप्त हो रहा है क्योंकि आपको Akaunting में शामिल होने के लिए आमंत्रित किया गया है।',
+ 'message_2' => 'यदि आप शामिल नहीं होना चाहते हैं, तो आगे किसी गतिविधि की आवश्यकता नहीं है।',
+ 'button' => 'शुरू करें',
+ ],
+
+ 'information' => [
+ 'invoice' => 'आसानी से चालान बनाएं',
+ 'reports' => 'विस्तृत रिपोर्ट प्राप्त करें',
+ 'expense' => 'किसी भी खर्च को ट्रैक करें',
+ 'customize' => 'अपनी Akaunting को अनुकूलित करें',
+ ],
+
+ 'roles' => [
+ 'admin' => [
+ 'name' => 'व्यवस्थापक',
+ 'description' => 'उन्हें ग्राहकों, इनवॉइस, रिपोर्ट, सेटिंग्स और ऐप्स सहित आपकी Akaunting तक पूरी पहुंच मिलती है।',
+ ],
+ 'manager' => [
+ 'name' => 'प्रबंधक',
+ 'description' => 'उन्हें आपके Akaunting का पूरा एक्सेस मिलता है, लेकिन वे उपयोगकर्ताओं और ऐप्स को प्रबंधित नहीं कर सकते।',
+ ],
+ 'customer' => [
+ 'name' => 'ग्राहक',
+ 'description' => 'वे क्लाइंट पोर्टल तक पहुंच सकते हैं और आपके द्वारा सेट की गई भुगतान विधियों के माध्यम से अपने चालानों का ऑनलाइन भुगतान कर सकते हैं।',
+ ],
+ 'accountant' => [
+ 'name' => 'मुनीम',
+ 'description' => 'वे चालान, लेनदेन और रिपोर्ट तक पहुंच सकते हैं और जर्नल प्रविष्टियां बना सकते हैं।',
+ ],
+ 'employee' => [
+ 'name' => 'कर्मचारी',
+ 'description' => 'वे व्यय के दावे बना सकते हैं और असाइन किए गए प्रोजेक्ट के लिए समय ट्रैक कर सकते हैं, लेकिन केवल अपनी जानकारी देख सकते हैं।',
+ ],
],
];
diff --git a/resources/lang/hi-IN/bills.php b/resources/lang/hi-IN/bills.php
index e5b1d5521..fd7b2adb7 100644
--- a/resources/lang/hi-IN/bills.php
+++ b/resources/lang/hi-IN/bills.php
@@ -19,11 +19,13 @@ return [
'total' => 'कुल',
'item_name' => 'वस्तु का नाम|वस्तुओं के नाम',
+ 'recurring_bills' => 'आवर्ती बिल',
'show_discount' => ':discount% छूट',
'add_discount' => 'छूट जोड़ें',
'discount_desc' => 'पूर्ण योग का',
+ 'payment_made' => 'भुगतान किया गया',
'payment_due' => 'भुगतान राशि',
'amount_due' => 'देय राशि',
'paid' => 'भुगतान किया है|',
@@ -39,6 +41,10 @@ return [
'receive_bill' => 'बिल प्राप्त करें',
'make_payment' => 'भुगतान करो',
+ 'form_description' => [
+ 'billing' => 'बिलिंग विवरण आपके बिल में दिखाई देते हैं। बिल दिनांक का उपयोग डैशबोर्ड और रिपोर्ट में किया जाता है। उस दिनांक का चयन करें जिसे आप देय दिनांक के रूप में भुगतान करने की अपेक्षा करते हैं।',
+ ],
+
'messages' => [
'draft' => 'यह एक ड्राफ्ट बिल है और इसे प्राप्त होने के बाद चार्ट पर प्रतिबिंबित किया जाएगा।',
diff --git a/resources/lang/hi-IN/bulk_actions.php b/resources/lang/hi-IN/bulk_actions.php
index 0832cfaa3..df2cb14f6 100644
--- a/resources/lang/hi-IN/bulk_actions.php
+++ b/resources/lang/hi-IN/bulk_actions.php
@@ -20,4 +20,7 @@ return [
'unreconcile' => 'क्या आप वाकई चयनित रिकॉर्ड को अवधान करना चाहते हैं?|क्या आप वाकई चयनित रिकॉर्ड को अवधान करना चाहते हैं?',
],
+ 'success' => [
+ 'general' => ':count रिकॉर्ड :type।',
+ ],
];
diff --git a/resources/lang/hi-IN/categories.php b/resources/lang/hi-IN/categories.php
new file mode 100644
index 000000000..72f38a89d
--- /dev/null
+++ b/resources/lang/hi-IN/categories.php
@@ -0,0 +1,11 @@
+ 'संक्षिप्त करें',
+
+ 'form_description' => [
+ 'general' => 'श्रेणी आपको अपने आइटम, आय, व्यय और अन्य रिकॉर्ड को वर्गीकृत करने में मदद करती है।',
+ ],
+
+];
diff --git a/resources/lang/hi-IN/companies.php b/resources/lang/hi-IN/companies.php
index 12bbf1d3d..6eb42d773 100644
--- a/resources/lang/hi-IN/companies.php
+++ b/resources/lang/hi-IN/companies.php
@@ -11,4 +11,12 @@ return [
'disable_active' => 'त्रुटि: सक्रिय कंपनी को निष्क्रिय नहीं कर सकते। कृपया, पहले दूसरे पर स्विच करें!',
],
+ 'form_description' => [
+ 'general' => 'यह जानकारी आपके द्वारा बनाए गए रिकॉर्ड में दिखाई देती है।',
+ 'billing' => 'प्रत्येक चालान/बिल में कर संख्या दिखाई देती है। डैशबोर्ड और रिपोर्ट डिफ़ॉल्ट मुद्रा के अंतर्गत दिखाए जाते हैं।',
+ 'address' => 'आपके द्वारा जारी इनवॉइस, बिल और अन्य रिकॉर्ड में पते का उपयोग किया जाएगा।',
+ ],
+
+ 'skip_step' => 'इस चरण (step) को छोड़ दें',
+
];
diff --git a/resources/lang/hi-IN/countries.php b/resources/lang/hi-IN/countries.php
index e41d691fd..b0a98ab3b 100644
--- a/resources/lang/hi-IN/countries.php
+++ b/resources/lang/hi-IN/countries.php
@@ -1,6 +1,7 @@
'अफ़गानिस्तान',
'AX' => 'एलैंड द्वीपसमूह',
'AL' => 'अल्बानिया',
@@ -119,6 +120,7 @@ return [
'KZ' => 'कज़ाखस्तान',
'KE' => 'केन्या',
'KI' => 'किरिबाती',
+ 'XK' => 'कोसोवो',
'KW' => 'कुवैत',
'KG' => 'किर्गिज़स्तान',
'LA' => 'लाओस',
@@ -250,4 +252,5 @@ return [
'YE' => 'यमन',
'ZM' => 'ज़ाम्बिया',
'ZW' => 'ज़िम्बाब्वे',
+
];
diff --git a/resources/lang/hi-IN/currencies.php b/resources/lang/hi-IN/currencies.php
index 0e955b86a..a40ad381f 100644
--- a/resources/lang/hi-IN/currencies.php
+++ b/resources/lang/hi-IN/currencies.php
@@ -14,6 +14,14 @@ return [
'position' => 'चिह्न की स्थिति',
'before' => 'राशि से पहले',
'after' => 'राशि के बाद',
- ]
+ ],
+
+ 'form_description' => [
+ 'general' => 'डिफ़ॉल्ट मुद्रा का उपयोग डैशबोर्ड और रिपोर्ट पर किया जाता है। अन्य मुद्राओं के लिए, कमजोर मुद्राओं के लिए दर 1 से कम और मजबूत मुद्राओं के लिए 1 से अधिक होनी चाहिए।',
+ ],
+
+ 'no_currency' => 'कोई मुद्रा नहीं',
+ 'create_currency' => 'एक नई मुद्रा बनाएं और सेटिंग से कभी भी संपादित करें।',
+ 'new_currency' => 'नई मुद्रा',
];
diff --git a/resources/lang/hi-IN/customers.php b/resources/lang/hi-IN/customers.php
index f14a7a3a6..05d7e906f 100644
--- a/resources/lang/hi-IN/customers.php
+++ b/resources/lang/hi-IN/customers.php
@@ -2,11 +2,29 @@
return [
- 'can_login' => 'लॉग इन कर सकते हैं?',
- 'user_created' => 'उपयोगकर्ता बनाया गया',
+ 'can_login' => 'लॉग इन कर सकते हैं?',
+ 'can_login_description' => 'इस उपयोगकर्ता को क्लाइंट पोर्टल में लॉग इन करने के लिए आमंत्रण भेजें।',
+ 'user_created' => 'उपयोगकर्ता बनाया गया',
+ 'client_portal_description' => 'ग्राहक पोर्टल एक ऐसा वातावरण है जहां आप अपने ग्राहकों के साथ लेनदेन और चालान साझा कर सकते हैं, जहां वे आपके व्यवसाय के साथ अपने संबंधों को ट्रैक करते हैं और भुगतान करते हैं, और जब चाहें लॉग इन करते हैं; उनके पासवर्ड के साथ',
'error' => [
- 'email' => 'ईमेल पहले ही ली जा चुकी हैं।',
+ 'email' => 'ईमेल पहले ही ली जा चुकी हैं।',
+ ],
+
+ 'client_portal_text' => [
+ 'can' => 'यह ग्राहक क्लाइंट पोर्टल में लॉग इन कर सकता है।',
+ 'cant' => 'यह ग्राहक क्लाइंट पोर्टल में लॉग इन नहीं कर सकता है।',
+ ],
+
+ 'form_description' => [
+ 'general' => 'आपके क्लाइंट की संपर्क जानकारी इनवॉइस और उनकी प्रोफाइल में दिखाई देगी। आप नीचे दिए गए बॉक्स को चेक करके अपने क्लाइंट को आपके द्वारा भेजे गए इनवॉइस को ट्रैक करने के लिए लॉगिन करने की अनुमति भी दे सकते हैं।',
+ 'billing' => 'ग्राहक को जारी किए गए प्रत्येक चालान में कर संख्या दिखाई देती है। चयनित मुद्रा इस ग्राहक के लिए डिफ़ॉल्ट मुद्रा बन जाती है।',
+ 'address' => 'इनवॉइस के लिए पता आवश्यक है, इसलिए आपको अपने ग्राहक के लिए बिलिंग पता विवरण जोड़ना होगा।',
+ ],
+
+ 'no_records' => [
+ 'invoices' => 'इस ग्राहक के लिए अभी तक कोई चालान नहीं है। अब एक नया बनाएँ।',
+ 'transactions' => 'इस ग्राहक के लिए अभी तक कोई लेन-देन नहीं हुआ है। अब एक नया बनाएँ।',
],
];
diff --git a/resources/lang/hi-IN/dashboards.php b/resources/lang/hi-IN/dashboards.php
index 30f30e6eb..fa4d6890b 100644
--- a/resources/lang/hi-IN/dashboards.php
+++ b/resources/lang/hi-IN/dashboards.php
@@ -8,4 +8,8 @@ return [
'disable_last' => 'त्रुटि: अंतिम डैशबोर्ड को निष्क्रिय नहीं कर सकते। कृपया, पहले एक नया बनाएं!',
],
+ 'form_description' => [
+ 'general' => 'उन उपयोगकर्ताओं का चयन करें जिनकी आप नए डैशबोर्ड तक पहुंच चाहते हैं।',
+ ],
+
];
diff --git a/resources/lang/hi-IN/documents.php b/resources/lang/hi-IN/documents.php
index 0f71dea95..f8f41d433 100644
--- a/resources/lang/hi-IN/documents.php
+++ b/resources/lang/hi-IN/documents.php
@@ -2,53 +2,85 @@
return [
- 'edit_columns' => 'कॉलम संपादित करें',
- 'empty_items' => 'आपने कोई आइटम नहीं जोड़ा है।',
+ 'edit_columns' => 'कॉलम संपादित करें',
+ 'empty_items' => 'आपने कोई आइटम नहीं जोड़ा है।',
+ 'grand_total' => 'कुल योग',
+ 'accept_payment_online' => 'ऑनलाइन भुगतान स्वीकार करें',
+ 'transaction' => ':account का उपयोग करके :amount का भुगतान किया गया था।',
+ 'billing' => 'बिलिंग',
+ 'advanced' => 'अग्रिम',
+
+ 'invoice_detail' => [
+ 'marked' => 'आपने इस चालान को इस रूप में चिह्नित किया है ',
+ 'services' => 'सेवाएं',
+ 'another_item' => 'एक और आइटम',
+ 'another_description' => 'और एक और विवरण',
+ 'more_item' => '+:count और आइटम',
+ ],
'statuses' => [
- 'draft' => 'ड्राफ्ट',
- 'sent' => 'भेजे गए',
- 'expired' => 'समय-सीमा समाप्त',
- 'viewed' => 'देखा गया',
- 'approved' => 'स्वीकृत',
- 'received' => 'प्राप्त हुआ',
- 'refused' => 'मना कर दिया',
- 'restored' => 'पुनः स्थापित किए गए',
- 'reversed' => 'उल्टा',
- 'partial' => 'आंशिक',
- 'paid' => 'भुगतान किया है',
- 'pending' => 'अपूर्ण',
- 'invoiced' => 'चालान की गई',
- 'overdue' => 'समय पर भुगतान नहीं किया',
- 'unpaid' => 'भुगतान नहीं किया है',
- 'cancelled' => 'रद्द कर दिया',
- 'voided' => 'अमान्य कर',
- 'completed' => 'पूरा हो गया',
- 'shipped' => 'भेजा हुआ',
- 'refunded' => 'वापसी की गई है',
- 'failed' => 'विफल रहा',
- 'denied' => 'निषेध',
- 'processed' => 'प्रक्रिया की गई',
- 'open' => 'खुला',
- 'closed' => 'बंद कर दिया',
- 'billed' => 'बिल किया हुआ ',
- 'delivered' => 'पहुंचा दिया',
- 'returned' => 'लौटाया हुआ',
- 'drawn' => 'तैयार',
- 'not_billed' => 'बिल नहीं दिया',
- 'issued' => 'जारी किए गए',
- 'not_invoiced' => 'चालान नहीं हुआ',
- 'confirmed' => 'पुष्टि कीया गया',
- 'not_confirmed' => 'पुष्टि नहीं',
+ 'draft' => 'ड्राफ्ट',
+ 'sent' => 'भेजे गए',
+ 'expired' => 'समय-सीमा समाप्त',
+ 'viewed' => 'देखा गया',
+ 'approved' => 'स्वीकृत',
+ 'received' => 'प्राप्त हुआ',
+ 'refused' => 'मना कर दिया',
+ 'restored' => 'पुनः स्थापित किए गए',
+ 'reversed' => 'उल्टा',
+ 'partial' => 'आंशिक',
+ 'paid' => 'भुगतान किया है',
+ 'pending' => 'अपूर्ण',
+ 'invoiced' => 'चालान की गई',
+ 'overdue' => 'समय पर भुगतान नहीं किया',
+ 'unpaid' => 'भुगतान नहीं किया है',
+ 'cancelled' => 'रद्द कर दिया',
+ 'voided' => 'अमान्य कर',
+ 'completed' => 'पूरा हो गया',
+ 'shipped' => 'भेजा हुआ',
+ 'refunded' => 'वापसी की गई है',
+ 'failed' => 'विफल रहा',
+ 'denied' => 'निषेध',
+ 'processed' => 'प्रक्रिया की गई',
+ 'open' => 'खुला',
+ 'closed' => 'बंद कर दिया',
+ 'billed' => 'बिल किया हुआ ',
+ 'delivered' => 'पहुंचा दिया',
+ 'returned' => 'लौटाया हुआ',
+ 'drawn' => 'तैयार',
+ 'not_billed' => 'बिल नहीं दिया',
+ 'issued' => 'जारी किए गए',
+ 'not_invoiced' => 'चालान नहीं हुआ',
+ 'confirmed' => 'पुष्टि कीया गया',
+ 'not_confirmed' => 'पुष्टि नहीं',
+ 'active' => 'सक्रिय',
+ 'ended' => 'समाप्त',
+ ],
+
+ 'form_description' => [
+ 'companies' => 'अपनी कंपनी का पता, लोगो और अन्य जानकारी बदलें।',
+ 'billing' => 'आपके दस्तावेज़ में बिलिंग विवरण दिखाई देता है।',
+ 'advanced' => 'श्रेणी का चयन करें, पाद लेख जोड़ें या संपादित करें, और अपनी :type में अनुलग्नक(attachment) जोड़ें',
+ 'attachment' => 'इस :type से जुड़ी फ़ाइलें डाउनलोड करें',
],
'messages' => [
- 'email_sent' => ':type ईमेल भेजा गया है!',
- 'marked_as' => ':type :status के रूप में चिह्नित !',
- 'marked_sent' => ':type भेजे गए के रूप में मार्क किया गया!',
- 'marked_paid' => ':type भुगतान के रूप में मार्क किया गया!',
- 'marked_viewed' => ':type देखे गए के रूप में मार्क किया गया!',
- 'marked_cancelled' => ':type रद्द के रूप में मार्क किया गया!',
- 'marked_received' => ':type स्वीकार किये के रूप में मार्क किया गया!',
+ 'email_sent' => ':type ईमेल भेजा गया है!',
+ 'marked_as' => ':type :status के रूप में चिह्नित !',
+ 'marked_sent' => ':type भेजे गए के रूप में मार्क किया गया!',
+ 'marked_paid' => ':type भुगतान के रूप में मार्क किया गया!',
+ 'marked_viewed' => ':type देखे गए के रूप में मार्क किया गया!',
+ 'marked_cancelled' => ':type रद्द के रूप में मार्क किया गया!',
+ 'marked_received' => ':type स्वीकार किये के रूप में मार्क किया गया!',
],
+
+ 'recurring' => [
+ 'auto_generated' => 'स्व - उत्पन्न',
+
+ 'tooltip' => [
+ 'document_date' => ':type की तारीख स्वचालित रूप से :type अनुसूची और आवृत्ति के आधार पर असाइन की जाएगी।',
+ 'document_number' => 'प्रत्येक आवर्ती :type उत्पन्न होने पर :type संख्या स्वचालित रूप से असाइन की जाएगी।',
+ ],
+ ],
+
];
diff --git a/resources/lang/hi-IN/footer.php b/resources/lang/hi-IN/footer.php
index 9f3aafed0..eb50d712b 100644
--- a/resources/lang/hi-IN/footer.php
+++ b/resources/lang/hi-IN/footer.php
@@ -6,5 +6,8 @@ return [
'powered' => 'Akaunting द्वारा संचालित',
'link' => 'https://akaunting.com',
'software' => 'मुफ्त लेखांकन सॉफ्टवेयर',
+ 'powered_by' => 'द्वारा संचालित',
+ 'tag_line' => 'Akaunting के साथ चालान भेजें, खर्चों को ट्रैक करें और लेखांकन को स्वचालित करें। :get_started_url',
+ 'get_started' => 'शुरू करें',
];
diff --git a/resources/lang/hi-IN/header.php b/resources/lang/hi-IN/header.php
index 04b937456..9997c870f 100644
--- a/resources/lang/hi-IN/header.php
+++ b/resources/lang/hi-IN/header.php
@@ -25,4 +25,9 @@ return [
'docs_link' => 'https://akaunting.com/docs',
'support_link' => 'https://akaunting.com/support',
+ 'favorite' => [
+ 'added_favorite' => 'पसंदीदा में जोड़ा',
+ 'add_favorite' => 'पसंदीदा में जोड़े',
+ ],
+
];
diff --git a/resources/lang/hi-IN/install.php b/resources/lang/hi-IN/install.php
index 567ffdd1b..8f137c393 100644
--- a/resources/lang/hi-IN/install.php
+++ b/resources/lang/hi-IN/install.php
@@ -44,4 +44,8 @@ return [
'connection' => 'त्रुटि: डेटाबेस से कनेक्ट नहीं हो सका! कृपया, सुनिश्चित करें कि विवरण सही हैं।',
],
+ 'update' => [
+ 'core' => 'Akaunting का नया संस्करण उपलब्ध है! कृपया, अपने इंस्टालेशन को अपडेट करें।',
+ 'module' => ':module नया संस्करण उपलब्ध है! कृपया, अपने इंस्टालेशन को अपडेट करें।',
+ ],
];
diff --git a/resources/lang/hi-IN/items.php b/resources/lang/hi-IN/items.php
index 362f5b1b2..4029d1dca 100644
--- a/resources/lang/hi-IN/items.php
+++ b/resources/lang/hi-IN/items.php
@@ -2,8 +2,16 @@
return [
- 'sale_price' => 'विक्रय कीमत',
- 'purchase_price' => 'खरीद कीमत',
- 'enter_item_description' => 'वस्तु का विवरण दर्ज करें',
+ 'sale_price' => 'विक्रय कीमत',
+ 'purchase_price' => 'खरीद कीमत',
+ 'enter_item_description' => 'वस्तु का विवरण दर्ज करें',
+ 'billing' => 'बिलिंग',
+ 'sale_information' => 'बिक्री की जानकारी',
+ 'purchase_information' => 'खऱीदी की जानकारी ',
+
+ 'form_description' => [
+ 'general' => 'अपनी रिपोर्ट को अधिक विस्तृत बनाने के लिए एक श्रेणी चुनें। जब किसी चलान या बिल में आइटम का चयन किया जाता है तो विवरण पॉप्युलेट हो जाएगा।',
+ 'billing' => 'बिक्री की जानकारी का उपयोग चालान में किया जाता है, और खरीद जानकारी का उपयोग बिलों में किया जाता है। इनवॉइस और बिल दोनों पर टैक्स लगेगा।',
+ ],
];
diff --git a/resources/lang/hi-IN/modules.php b/resources/lang/hi-IN/modules.php
index 15466e375..d3ad343c4 100644
--- a/resources/lang/hi-IN/modules.php
+++ b/resources/lang/hi-IN/modules.php
@@ -4,17 +4,45 @@ return [
'api_key' => 'API कुंजी',
'my_apps' => 'मेरी एप्प्स',
+ 'checkout' => 'चेक आउट',
+ 'documentation' => 'प्रलेखन',
+
+ 'home' => 'होम',
+ 'tiles' => 'सूची',
+ 'item' => 'ऐप विवरण',
'pre_sale' => 'पूर्व बिक्री',
+ 'no_apps' => 'अपने व्यवसाय के लिए सबसे अधिक पेशेवर ऐप्स देखें और उन्हें सर्वोत्तम मूल्य पर प्राप्त करें।',
+ 'learn_more' => 'और अधिक जानें',
+ 'see_apps' => 'ऐप्स देखें',
+ 'no_apps_marketing' => 'अपना व्यवसाय पेशेवर रूप से करें',
+ 'premium_banner' => 'आज ही प्रीमियम पर स्विच करें',
+ 'see_all' => 'सभी देखें',
+ 'see_all_type' => 'सभी :type देखें',
+ 'saving' => 'आप साल में :saved-price बचाते हैं!',
'top_paid' => 'टॉप पेड',
'new' => 'नया',
'top_free' => 'टॉप फ़्री',
'free' => 'फ़्री',
+ 'monthly' => 'मासिक',
+ 'yearly' => 'वार्षिक',
+ 'yearly_pricing' => 'वार्षिक मूल्य निर्धारण',
+ 'monthly_price' => ' :price से',
+ 'per_month' => 'प्रति माह',
+ 'billed_yearly' => 'वार्षिक बिल किया गया',
+ 'billed_monthly' => 'मासिक बिल किया गया',
+ 'save_year' => 'आप सालाना :price बचाते हैं!',
+ 'if_paid_year' => 'या :price/mo अगर सालाना भुगतान किया जाता है',
+ 'information_monthly' => 'यह विकल्प केवल क्लाउड सेवा के लिए मान्य है',
'install' => 'इंस्टॉल करें',
'buy_now' => 'अभी खरीदें',
'get_api_key' => 'अपनी एपीआई कुंजी प्राप्त करने के लिए यहां क्लिक करें।',
'no_apps' => 'इस श्रेणी में अभी तक कोई एप्लिकेशन नहीं हैं।',
'become_developer' => 'क्या आप एक डेवलपर हैं? यहां आप सीख सकते हैं कि ऐप कैसे बनाएं और आज बेचना शुरू करें!',
'recommended_apps' => 'अनुशंसित ऐप्स',
+ 'can_not_install' => 'मासिक सदस्यता केवल क्लाउड सेवा पर उपलब्ध है। और जानें।',
+ 'apps_managing' => 'सबसे ट्रेंडिंग ऐप्स देखें और आज ही पेशेवर रूप से अपने वित्त का प्रबंधन शुरू करें।',
+ 'ready' => 'तैयार',
+ 'popular_this_week' => 'इस सप्ताह में लोकप्रिय',
'about' => 'के बारे में',
@@ -25,13 +53,22 @@ return [
'view' => 'देखें',
'back' => 'पीछे',
+ 'use_app' => 'अभी ऐप का उपयोग करना शुरू करें',
+
+ 'see_more' => 'और देखें',
+
'installed' => ':module इंस्टॉल',
'uninstalled' => ':module अनइंस्टॉल',
'updated_2' => ':module अपडेट किया गया',
'enabled' => ':module सक्रिय',
'disabled' => ':module निष्क्रिय',
+ 'per_month' => 'प्रति माह',
+ 'pre_sale_uninstall' => 'प्री-सेल के लिए रियायती मूल्य से न चूकें!',
+ 'pre_sale_install' => 'आपके पास प्री-सेल की समाप्ति वाला ऐप होगा।',
'tab' => [
+ 'features' => 'विशेषताएं',
+ 'screenshots' => 'स्क्रीनशॉट्स',
'installation' => 'स्थापना',
'faq' => 'सामान्य प्रश्न',
'changelog' => 'चेंज लोग',
@@ -49,6 +86,7 @@ return [
],
'errors' => [
+ 'purchase' => 'आपको :module! खरीदना/नवीनीकरण करना चाहिए !',
'download' => ':module डाउनलोड करने में सक्षम नहीं है।',
'zip' => ':module ज़िप फ़ाइल बनाने में सक्षम नहीं है।',
'unzip' => ':module अनज़िप करने में सक्षम नहीं है।',
diff --git a/resources/lang/hi-IN/reconciliations.php b/resources/lang/hi-IN/reconciliations.php
index a005161e0..a63add5f3 100644
--- a/resources/lang/hi-IN/reconciliations.php
+++ b/resources/lang/hi-IN/reconciliations.php
@@ -14,5 +14,9 @@ return [
'cleared_amount' => 'स्पष्ट राशि',
'deposit' => 'जमा',
'withdrawal' => 'निकासी',
+ 'reconciled_amount' => 'मेल मिलाप',
+ 'in_progress' => 'प्रगति में',
+ 'save_draft' => 'ड्राफ्ट के रूप में सेव करें',
+ 'irreconcilable' => 'असंगत',
];
diff --git a/resources/lang/hi-IN/recurring.php b/resources/lang/hi-IN/recurring.php
index 471eee117..d1fa35f79 100644
--- a/resources/lang/hi-IN/recurring.php
+++ b/resources/lang/hi-IN/recurring.php
@@ -15,6 +15,27 @@ return [
'weeks' => 'सप्ताह()',
'months' => 'महीना(s)',
'years' => 'वर्ष(s)',
+ 'frequency' => 'आवृत्ति',
+ 'duration' => 'अवधि',
+ 'last_issued' => 'अंतिम बार जारी किए गए',
+ 'after' => 'के बाद',
+ 'on' => 'चालू',
+ 'never' => 'कभी नहीं',
+ 'ends_after' => ':times बार के बाद समाप्त होता है',
+ 'ends_never' => 'कभी समाप्त नहीं होती',
+ 'ends_date' => ':date को समाप्त होगा',
+ 'next_date' => 'अगला :date को',
+ 'end' => 'अंत आवर्ती',
+ 'child' => ':url स्वचालित रूप से :date को बनाया गया था',
'message' => 'यह एक आवर्ती :type है और अगला :type :date को स्वचालित रूप से उत्पन्न हो जाएगा',
+ 'message_parent' => 'यह :type स्वचालित रूप से :link से उत्पन्न हुआ था',
+
+ 'frequency_type' => 'इस :type को दोहराएं',
+ 'limit_date' => 'पर पहली :type बनाएं',
+ 'limit_middle' => 'और अंत',
+
+ 'form_description' => [
+ 'schedule' => 'यह सुनिश्चित करने के लिए कि आपका ग्राहक सही दिन पर आपकी :type प्राप्त करता है, शर्तें और प्रारंभ/समाप्ति समय चुनें।',
+ ],
];
diff --git a/resources/lang/id-ID/countries.php b/resources/lang/id-ID/countries.php
index e60ca8005..6d617854e 100644
--- a/resources/lang/id-ID/countries.php
+++ b/resources/lang/id-ID/countries.php
@@ -1,6 +1,7 @@
'Afganistan',
'AX' => 'Kepulauan Aland',
'AL' => 'Albania',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KI' => 'Kiribati',
+ 'XK' => 'KOSOVO',
'KW' => 'Kuwait',
'KG' => 'Kirgizstan',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Yaman',
'ZM' => 'Zambia',
'ZW' => 'Zimbabwe',
+
];
diff --git a/resources/lang/pt-BR/countries.php b/resources/lang/pt-BR/countries.php
index 7378e28bb..103c591bd 100644
--- a/resources/lang/pt-BR/countries.php
+++ b/resources/lang/pt-BR/countries.php
@@ -1,6 +1,7 @@
'Afeganistão',
'AX' => 'Ilhas Aland',
'AL' => 'Albânia',
@@ -119,6 +120,7 @@ return [
'KZ' => 'Cazaquistão',
'KE' => 'Quênia',
'KI' => 'Quiribati',
+ 'XK' => 'Kosovo',
'KW' => 'Kuwait',
'KG' => 'Quirguistão',
'LA' => 'Laos',
@@ -250,4 +252,5 @@ return [
'YE' => 'Iêmen',
'ZM' => 'Zâmbia',
'ZW' => 'Zimbábue',
+
];
diff --git a/resources/views/auth/forgot/create.blade.php b/resources/views/auth/forgot/create.blade.php
index 9f3deb2ed..ced46325e 100644
--- a/resources/views/auth/forgot/create.blade.php
+++ b/resources/views/auth/forgot/create.blade.php
@@ -41,8 +41,9 @@
override="class"
data-loading-text="{{ trans('general.loading') }}"
>
- {{ trans('general.send') }}
-