Skip to main content

Black Friday 2025! Only until December 1st: coupon FRIDAY25 for 40% off Yearly/Lifetime membership!

Read more here

akaunting/akaunting

9348 stars
3 code files
View akaunting/akaunting on GitHub

resources/lang/lt-LT/currencies.php

Open in GitHub
return [
'code' => 'Kodas',
'rate' => 'Kursas',
'default' => 'Numatytoji valiuta',
'decimal_mark' => 'Dešimtainis ženklas',
'thousands_separator' => 'Tūkstančių skyriklis',
'precision' => 'Tikslumas',
'symbol' => [
'symbol' => 'Simbolis',
'position' => 'Simbolio pozicija',
'before' => 'Suma prieš',
'after' => 'Suma po',
]
];

resources/views/settings/currencies/create.blade.php

Open in GitHub
@extends('layouts.admin')
 
@section('title', trans('general.title.new', ['type' => trans_choice('general.currencies', 1)]))
 
@section('content')
//
<div class="card-body">
<div class="row">
{{ Form::textGroup('name', trans('general.name'), 'chart-bar') }}
 
{{ Form::selectGroup('code', trans('currencies.code'), 'code', $codes, null, ['required' => 'required', 'change' => 'onChangeCode']) }}
 
{{ Form::textGroup('rate', trans('currencies.rate'), 'sliders-h', ['@input' => 'onChangeRate', 'required' => 'required']) }}
 
{{ Form::selectGroup('precision', trans('currencies.precision'), 'dot-circle', $precisions, null, ['model' => 'form.precision']) }}
 
{{ Form::textGroup('symbol', trans('currencies.symbol.symbol'), 'font') }}
 
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ["1" => trans('currencies.symbol.before'), "0" => trans('currencies.symbol.after')], null, ['model' => 'form.symbol_first']) }}
 
{{ Form::textGroup('decimal_mark', trans('currencies.decimal_mark'), 'sign') }}
 
{{ Form::textGroup('thousands_separator', trans('currencies.thousands_separator'), 'slash', []) }}
 
{{ Form::radioGroup('enabled', trans('general.enabled'), true) }}
 
{{ Form::radioGroup('default_currency', trans('currencies.default'), false) }}
</div>
</div>
//

resources/lang/en-US/currencies.php

Open in GitHub
return [
'code' => 'Code',
'rate' => 'Rate',
'default' => 'Default Currency',
'decimal_mark' => 'Decimal Place',
'thousands_separator' => 'Thousands Separator',
'precision' => 'Precision',
'symbol' => [
'symbol' => 'Symbol',
'position' => 'Symbol Position',
'before' => 'Before Amount',
'after' => 'After Amount',
]
];

We'd Love Your Feedback

Tell us what you like or what we can improve

Feel free to share anything you like or dislike about this page or the platform in general.