-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcs.csv
We can't make this file beautiful and searchable because it's too large.
8126 lines (8103 loc) · 807 KB
/
cs.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DocType: Accounting Period,Period Name,Název období
DocType: Employee,Salary Mode,Mode Plat
apps/erpnext/erpnext/public/js/hub/marketplace.js,Register,Registrovat
apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js,Partially Received,Částečně přijato
DocType: Patient,Divorced,Rozvedený
DocType: Support Settings,Post Route Key,Zadejte klíč trasy
DocType: Buying Settings,Allow Item to be added multiple times in a transaction,"Povolit položky, které se přidávají vícekrát v transakci"
DocType: Content Question,Content Question,Obsahová otázka
apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py,Cancel Material Visit {0} before cancelling this Warranty Claim,Materiál Navštivte {0} před zrušením této záruční reklamaci Zrušit
DocType: Customer Feedback Table,Qualitative Feedback,Kvalitativní zpětná vazba
apps/erpnext/erpnext/config/education.py,Assessment Reports,Zprávy o hodnocení
DocType: Invoice Discounting,Accounts Receivable Discounted Account,Účty pohledávek se slevou
apps/erpnext/erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js,Canceled,Zrušeno
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Consumer Products,Spotřební zboží
DocType: Supplier Scorecard,Notify Supplier,Informujte dodavatele
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,"Prosím, vyberte typ Party první"
DocType: Item,Customer Items,Zákazník položky
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,Pasiva
DocType: Project,Costing and Billing,Kalkulace a fakturace
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},Advance měna účtu by měla být stejná jako měna společnosti {0}
DocType: QuickBooks Migrator,Token Endpoint,Koncový bod tokenu
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,Účet {0}: Nadřazený účet {1} nemůže být hlavní kniha
DocType: Item,Publish Item to hub.erpnext.com,Publikování položku do hub.erpnext.com
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,Nelze najít aktivní období dovolené
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,ohodnocení
DocType: Item,Default Unit of Measure,Výchozí Měrná jednotka
DocType: SMS Center,All Sales Partner Contact,Všechny Partneři Kontakt
DocType: Department,Leave Approvers,Schvalovatelé dovolených
DocType: Employee,Bio / Cover Letter,Bio / krycí dopis
apps/erpnext/erpnext/public/js/hub/pages/Publish.vue,Search Items ...,Prohledat položky ...
DocType: Patient Encounter,Investigations,Vyšetřování
DocType: Restaurant Order Entry,Click Enter To Add,Klepněte na tlačítko Zadat pro přidání
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py,"Missing value for Password, API Key or Shopify URL","Chybějící hodnota pro heslo, klíč API nebo URL obchodu"
DocType: Employee,Rented,Pronajato
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js,All Accounts,Všechny účty
apps/erpnext/erpnext/hr/doctype/employee_transfer/employee_transfer.py,Cannot transfer Employee with status Left,Nelze přenést zaměstnance se stavem doleva
DocType: Vehicle Service,Mileage,Najeto
apps/erpnext/erpnext/assets/doctype/asset/asset.js,Do you really want to scrap this asset?,Opravdu chcete zrušit tuto pohledávku?
DocType: Drug Prescription,Update Schedule,Aktualizovat plán
apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.js,Select Default Supplier,Vybrat Výchozí Dodavatel
apps/erpnext/erpnext/hr/doctype/job_offer/job_offer.js,Show Employee,Zobrazit zaměstnance
DocType: Payroll Period,Standard Tax Exemption Amount,Standardní částka osvobození od daně
DocType: Exchange Rate Revaluation Account,New Exchange Rate,Nový směnný kurz
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py,Currency is required for Price List {0},Měna je vyžadováno pro Ceníku {0}
DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* Bude se vypočítá v transakci.
DocType: Delivery Trip,MAT-DT-.YYYY.-,MAT-DT-.YYYY.-
DocType: Purchase Order,Customer Contact,Kontakt se zákazníky
DocType: Shift Type,Enable Auto Attendance,Povolit automatickou účast
apps/erpnext/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js,Please enter Warehouse and Date,Zadejte prosím sklad a datum
DocType: Lost Reason Detail,Opportunity Lost Reason,Příležitost Ztracený důvod
DocType: Patient Appointment,Check availability,Zkontrolujte dostupnost
DocType: Retention Bonus,Bonus Payment Date,Bonus Datum platby
DocType: Employee,Job Applicant,Job Žadatel
DocType: Job Card,Total Time in Mins,Celkový čas v minách
apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py,This is based on transactions against this Supplier. See timeline below for details,To je založeno na transakcích proti tomuto dodavateli. Viz časovou osu níže podrobnosti
DocType: Manufacturing Settings,Overproduction Percentage For Work Order,Procento nadvýroby pro pracovní pořadí
DocType: Landed Cost Voucher,MAT-LCV-.YYYY.-,MAT-LCV-.YYYY.-
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Legal,Právní
DocType: Sales Invoice,Transport Receipt Date,Datum přijetí dopravy
DocType: Shopify Settings,Sales Order Series,Série objednávek
DocType: Vital Signs,Tongue,Jazyk
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Actual type tax cannot be included in Item rate in row {0},Aktuální typ daň nemůže být zahrnutý v ceně Položka v řádku {0}
DocType: Allowed To Transact With,Allowed To Transact With,Povoleno k transakci s
DocType: Bank Guarantee,Customer,Zákazník
DocType: Purchase Receipt Item,Required By,Vyžadováno
DocType: Delivery Note,Return Against Delivery Note,Návrat Proti dodací list
DocType: Asset Category,Finance Book Detail,Detail knihy financí
apps/erpnext/erpnext/assets/doctype/asset/asset.py,All the depreciations has been booked,Všechny odpisy byly zaúčtovány
DocType: Purchase Order,% Billed,% Fakturováno
apps/erpnext/erpnext/hr/report/bank_remittance/bank_remittance.py,Payroll Number,Mzdové číslo
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Exchange Rate must be same as {0} {1} ({2}),Exchange Rate musí být stejná jako {0} {1} ({2})
DocType: Employee Tax Exemption Declaration,HRA Exemption,HRA výjimka
DocType: Sales Invoice,Customer Name,Jméno zákazníka
DocType: Vehicle,Natural Gas,Zemní plyn
DocType: Project,Message will sent to users to get their status on the project,Uživatelům bude zaslána zpráva o stavu jejich projektu
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank account cannot be named as {0},Bankovní účet nemůže být jmenován jako {0}
DocType: Employee Tax Exemption Declaration,HRA as per Salary Structure,HRA podle platové struktury
DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,"Heads (nebo skupiny), proti nimž účetní zápisy jsou vyrobeny a stav je veden."
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,Outstanding for {0} cannot be less than zero ({1}),Vynikající pro {0} nemůže být nižší než nula ({1})
apps/erpnext/erpnext/public/js/controllers/transaction.js,Service Stop Date cannot be before Service Start Date,Datum ukončení servisu nemůže být před datem zahájení servisu
DocType: Manufacturing Settings,Default 10 mins,Výchozí 10 min
DocType: Leave Type,Leave Type Name,Jméno typu absence
apps/erpnext/erpnext/templates/pages/projects.js,Show open,Ukázat otevřené
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py,Series Updated Successfully,Řada Aktualizováno Úspěšně
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html,Checkout,Odhlásit se
apps/erpnext/erpnext/controllers/accounts_controller.py,{0} in row {1},{0} v řádku {1}
DocType: Asset Finance Book,Depreciation Start Date,Datum zahájení odpisování
DocType: Pricing Rule,Apply On,Naneste na
DocType: Item Price,Multiple Item prices.,Více ceny položku.
,Purchase Order Items To Be Received,Položky vydané objednávky k přijetí
DocType: SMS Center,All Supplier Contact,Vše Dodavatel Kontakt
DocType: Support Settings,Support Settings,Nastavení podpůrných
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0} is added in the child company {1},Účet {0} je přidán do podřízené společnosti {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py,Invalid credentials,Neplatné přihlašovací údaje
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,ITC Available (whether in full op part),ITC k dispozici (ať už v plné op části)
DocType: Amazon MWS Settings,Amazon MWS Settings,Amazon MWS Nastavení
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py,Processing Vouchers,Zpracování poukázek
apps/erpnext/erpnext/utilities/transaction_base.py,Row #{0}: Rate must be same as {1}: {2} ({3} / {4}) ,"Řádek # {0}: Cena musí být stejné, jako {1}: {2} ({3} / {4})"
,Batch Item Expiry Status,Batch položky vypršení platnosti Stav
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank Draft,Bank Návrh
DocType: Journal Entry,ACC-JV-.YYYY.-,ACC-JV-.YYYY.-
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Total Late Entries,Celkem pozdních záznamů
DocType: Mode of Payment Account,Mode of Payment Account,Způsob platby účtu
apps/erpnext/erpnext/config/healthcare.py,Consultation,Konzultace
DocType: Accounts Settings,Show Payment Schedule in Print,Zobrazit plán placení v tisku
apps/erpnext/erpnext/stock/doctype/item/item.py,Item Variants updated,Varianty položek byly aktualizovány
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py,Sales and Returns,Prodej a výnosy
apps/erpnext/erpnext/stock/doctype/item/item.js,Show Variants,Zobrazit Varianty
DocType: Academic Term,Academic Term,Akademický Term
DocType: Employee Tax Exemption Sub Category,Employee Tax Exemption Sub Category,Osvobození od daně z příjmů zaměstnanců
apps/erpnext/erpnext/regional/italy/utils.py,Please set an Address on the Company '%s',Zadejte prosím adresu společnosti '% s'
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,Material,Materiál
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,"Maximum benefit of employee {0} exceeds {1} by the sum {2} of benefit application pro-rata component\
amount and previous claimed amount",Maximální užitek zaměstnance {0} přesahuje {1} součtem {2} částky pro-rata složky žádosti o dávku \ částka a předchozí nárokovaná částka
DocType: Opening Invoice Creation Tool Item,Quantity,Množství
,Customers Without Any Sales Transactions,Zákazníci bez jakýchkoli prodejních transakcí
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Accounts table cannot be blank.,Účty tabulka nemůže být prázdné.
DocType: Delivery Trip,Use Google Maps Direction API to calculate estimated arrival times,Pro výpočet odhadovaných časů příjezdu použijte rozhraní Google Maps Direction API
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Loans (Liabilities),Úvěry (závazky)
DocType: Patient Encounter,Encounter Time,Čas setkání
DocType: Staffing Plan Detail,Total Estimated Cost,Celkové odhadované náklady
DocType: Employee Education,Year of Passing,Rok Passing
DocType: Routing,Routing Name,Název směrování
DocType: Item,Country of Origin,Země původu
DocType: Soil Texture,Soil Texture Criteria,Kritéria textury půdy
apps/erpnext/erpnext/templates/generators/item/item_add_to_cart.html,In Stock,Na skladě
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Contact Details,Primární kontaktní údaje
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Open Issues,otevřené problémy
DocType: Production Plan Item,Production Plan Item,Výrobní program Item
DocType: Leave Ledger Entry,Leave Ledger Entry,Opusťte zápis do knihy
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},Uživatel {0} je již přiřazena k Employee {1}
DocType: Lab Test Groups,Add new line,Přidat nový řádek
apps/erpnext/erpnext/utilities/activation.py,Create Lead,Vytvořit potenciálního zákazníka
DocType: Production Plan,Projected Qty Formula,Předpokládané množství vzorce
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Health Care,Péče o zdraví
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py,Delay in payment (Days),Zpoždění s platbou (dny)
DocType: Payment Terms Template Detail,Payment Terms Template Detail,Platební podmínky
DocType: Hotel Room Reservation,Guest Name,Jméno hosta
DocType: Delivery Note,Issue Credit Note,Vystavení kreditní poznámky
DocType: Lab Prescription,Lab Prescription,Lab Předpis
,Delay Days,Delay Dny
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py,Service Expense,Service Expense
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Serial Number: {0} is already referenced in Sales Invoice: {1},Sériové číslo: {0} je již uvedeno v prodejní faktuře: {1}
DocType: Bank Statement Transaction Invoice Item,Invoice,Faktura
DocType: Employee Tax Exemption Declaration Category,Maximum Exempted Amount,Maximální osvobozená částka
DocType: Purchase Invoice Item,Item Weight Details,Položka podrobnosti o hmotnosti
DocType: Asset Maintenance Log,Periodicity,Periodicita
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Fiscal Year {0} is required,Fiskální rok {0} je vyžadována
apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py,Net Profit/Loss,Čistý zisk / ztráta
DocType: Employee Group Table,ERPNext User ID,ERPDalší ID uživatele
DocType: Crop Cycle,The minimum distance between rows of plants for optimum growth,Minimální vzdálenost mezi řadami rostlin pro optimální růst
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Please select Patient to get prescribed procedure,"Chcete-li získat předepsaný postup, vyberte možnost Pacient"
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Defense,Obrana
DocType: Salary Component,Abbr,Zkr
DocType: Appraisal Goal,Score (0-5),Score (0-5)
DocType: Tally Migration,Tally Creditors Account,Účet věřitelů
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: {1} {2} does not match with {3},Řádek {0}: {1} {2} se neshoduje s {3}
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Row # {0}:,Řádek č. {0}:
DocType: Timesheet,Total Costing Amount,Celková kalkulace Částka
DocType: Sales Invoice,Vehicle No,Vozidle
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,"Prosím, vyberte Ceník"
DocType: Accounts Settings,Currency Exchange Settings,Nastavení směnného kurzu
DocType: Work Order Operation,Work In Progress,Na cestě
DocType: Leave Control Panel,Branch (optional),Větev (volitelné)
apps/erpnext/erpnext/education/report/absent_student_report/absent_student_report.py,Please select date,"Prosím, vyberte datum"
DocType: Item Price,Minimum Qty ,Minimální počet
DocType: Finance Book,Finance Book,Finanční kniha
DocType: Patient Encounter,HLC-ENC-.YYYY.-,HLC-ENC-.YYYY.-
DocType: Daily Work Summary Group,Holiday List,Seznam dovolené
apps/erpnext/erpnext/config/quality_management.py,Review and Action,Přezkum a akce
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,This employee already has a log with the same timestamp.{0},Tento zaměstnanec již má záznam se stejným časovým razítkem. {0}
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Accountant,Účetní
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py,Selling Price List,Prodejní ceník
DocType: Patient,Tobacco Current Use,Aktuální tabákové použití
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Selling Rate,Prodejní sazba
DocType: Cost Center,Stock User,Sklad Uživatel
DocType: Soil Analysis,(Ca+Mg)/K,(Ca + Mg) / K
DocType: Delivery Stop,Contact Information,Kontaktní informace
apps/erpnext/erpnext/public/js/hub/pages/Search.vue,Search for anything ...,Hledat cokoli ...
DocType: Company,Phone No,Telefon
DocType: Delivery Trip,Initial Email Notification Sent,Původní e-mailové oznámení bylo odesláno
DocType: Bank Statement Settings,Statement Header Mapping,Mapování hlaviček výpisu
,Sales Partners Commission,Obchodní partneři Komise
DocType: Soil Texture,Sandy Clay Loam,Sandy Clay Loam
DocType: Purchase Invoice,Rounding Adjustment,Nastavení zaoblení
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation cannot have more than 5 characters,Zkratka nesmí mít více než 5 znaků
DocType: Amazon MWS Settings,AU,AU
DocType: Payment Order,Payment Request,Platba Poptávka
apps/erpnext/erpnext/config/retail.py,To view logs of Loyalty Points assigned to a Customer.,Zobrazení logů věrnostních bodů přidělených zákazníkovi.
DocType: Asset,Value After Depreciation,Hodnota po odpisech
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,"Did not found transfered item {0} in Work Order {1}, the item not added in Stock Entry","Nenašli jste převedenou položku {0} v objednávce {1}, položka nebyla přidána do položky zásob"
DocType: Student,O+,O +
apps/erpnext/erpnext/stock/doctype/material_request/material_request_dashboard.py,Related,Příbuzný
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,Attendance date can not be less than employee's joining date,Datum návštěvnost nemůže být nižší než spojovací data zaměstnance
DocType: Grading Scale,Grading Scale Name,Klasifikační stupnice Name
DocType: Employee Training,Training Date,Datum školení
apps/erpnext/erpnext/public/js/hub/marketplace.js,Add Users to Marketplace,Přidejte uživatele do Marketplace
apps/erpnext/erpnext/accounts/doctype/account/account.js,This is a root account and cannot be edited.,To je kořen účtu a nelze upravovat.
DocType: POS Profile,Company Address,adresa společnosti
DocType: BOM,Operations,Operace
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py,Cannot set authorization on basis of Discount for {0},Nelze nastavit oprávnění na základě Sleva pro {0}
apps/erpnext/erpnext/regional/india/utils.py,e-Way Bill JSON cannot be generated for Sales Return as of now,Účet e-Way Bill JSON již nelze vygenerovat pro vrácení prodeje
DocType: Subscription,Subscription Start Date,Datum zahájení předplatného
DocType: Healthcare Settings,Default receivable accounts to be used if not set in Patient to book Appointment charges.,"Výchozí pohledávkové účty, které se použijí, pokud nejsou nastaveny v Pacientovi pro účtování poplatků za schůzku."
DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name","Připojit CSV soubor se dvěma sloupci, jeden pro starý název a jeden pro nový název"
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Address 2,Z adresy 2
apps/erpnext/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js,Get Details From Declaration,Získejte podrobnosti z prohlášení
apps/erpnext/erpnext/accounts/utils.py,{0} {1} not in any active Fiscal Year.,{0} {1} není v žádném aktivním fiskální rok.
DocType: Packed Item,Parent Detail docname,Parent Detail docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py,"Reference: {0}, Item Code: {1} and Customer: {2}","Odkaz: {0}, kód položky: {1} a zákazník: {2}"
apps/erpnext/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py,{0} {1} is not present in the parent company,{0} {1} není v mateřské společnosti
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py,Trial Period End Date Cannot be before Trial Period Start Date,Datum ukončení zkušebního období nemůže být před datem zahájení zkušebního období
apps/erpnext/erpnext/utilities/user_progress.py,Kg,Kg
DocType: Tax Withholding Category,Tax Withholding Category,Daňové zadržení kategorie
apps/erpnext/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py,Cancel the journal entry {0} first,Nejprve zrušte záznam žurnálu {0}
DocType: Purchase Invoice,ACC-PINV-.YYYY.-,ACC-PINV-.YYYY.-
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},Kusovník není zadán pro subdodavatelskou položku {0} na řádku {1}
DocType: Vital Signs,Reflexes,Reflexy
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js,{0} Result submittted,{0} Výsledek byl předložen
DocType: Item Attribute,Increment,Přírůstek
apps/erpnext/erpnext/templates/pages/search_help.py,Help Results for,Výsledky nápovědy pro
apps/erpnext/erpnext/public/js/stock_analytics.js,Select Warehouse...,Vyberte sklad ...
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Advertising,Reklama
apps/erpnext/erpnext/hr/doctype/expense_claim_type/expense_claim_type.py,Same Company is entered more than once,Stejný Společnost je zapsána více než jednou
DocType: Patient,Married,Ženatý
apps/erpnext/erpnext/accounts/party.py,Not permitted for {0},Není dovoleno {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Get items from,Položka získaná z
DocType: Stock Entry,Send to Subcontractor,Odeslat subdodavateli
DocType: Purchase Invoice,Apply Tax Withholding Amount,Použijte částku s odečtením daně
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Total completed qty can not be greater than for quantity,Celkový počet dokončených nemůže být větší než pro množství
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Stock cannot be updated against Delivery Note {0},Sklad nelze aktualizovat na dodací list {0}
apps/erpnext/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py,Total Amount Credited,Celková částka připsána
apps/erpnext/erpnext/templates/generators/item_group.html,No items listed,Žádné položky nejsou uvedeny
DocType: Asset Repair,Error Description,Popis chyby
DocType: Payment Reconciliation,Reconcile,Srovnat
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Grocery,Potraviny
DocType: Quality Inspection Reading,Reading 1,Čtení 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pension Funds,Penzijní fondy
DocType: Exchange Rate Revaluation Account,Gain/Loss,Zisk / ztráta
DocType: Crop,Perennial,Trvalka
DocType: Program,Is Published,Je publikováno
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Delivery Notes,Zobrazit dodací listy
apps/erpnext/erpnext/controllers/status_updater.py,"To allow over billing, update ""Over Billing Allowance"" in Accounts Settings or the Item.","Chcete-li povolit přeúčtování, aktualizujte položku „Příplatek za fakturaci“ v Nastavení účtů nebo v položce."
DocType: Patient Appointment,Procedure,Postup
DocType: Accounts Settings,Use Custom Cash Flow Format,Použijte formát vlastní peněžní toky
DocType: SMS Center,All Sales Person,Všichni obchodní zástupci
DocType: Monthly Distribution,**Monthly Distribution** helps you distribute the Budget/Target across months if you have seasonality in your business.,"** Měsíční Distribuce ** umožňuje distribuovat Rozpočet / Target celé měsíce, pokud máte sezónnosti ve vaší firmě."
apps/erpnext/erpnext/accounts/page/pos/pos.js,Not items found,Nebyl nalezen položek
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Salary Structure Missing,Plat Struktura Chybějící
DocType: Lead,Person Name,Osoba Jméno
,Supplier Ledger Summary,Shrnutí účetní knihy dodavatele
DocType: Sales Invoice Item,Sales Invoice Item,Položka prodejní faktury
DocType: Quality Procedure Table,Quality Procedure Table,Tabulka kvality
DocType: Account,Credit,Úvěr
DocType: POS Profile,Write Off Cost Center,Odepsat nákladové středisko
apps/erpnext/erpnext/public/js/setup_wizard.js,"e.g. ""Primary School"" or ""University""",například "Základní škola" nebo "univerzita"
apps/erpnext/erpnext/config/stock.py,Stock Reports,Stock Reports
DocType: Warehouse,Warehouse Detail,Sklad Detail
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py,Last carbon check date cannot be a future date,Datum poslední kontroly uhlíku nemůže být budoucí
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"Termínovaný Datum ukončení nemůže být později než v roce Datum ukončení akademického roku, ke kterému termín je spojena (akademický rok {}). Opravte data a zkuste to znovu."
apps/erpnext/erpnext/stock/doctype/item/item.py,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Je dlouhodobý majetek"" nemůže být nezaškrtnutý protože existuje zápis aktiva oproti této položce"
DocType: Delivery Trip,Departure Time,Čas odjezdu
DocType: Vehicle Service,Brake Oil,Brake Oil
DocType: Tax Rule,Tax Type,Daňové Type
,Completed Work Orders,Dokončené pracovní příkazy
DocType: Support Settings,Forum Posts,Příspěvky ve fóru
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage",Úkol byl označen jako úloha na pozadí. V případě jakéhokoli problému se zpracováním na pozadí přidá systém komentář k chybě v tomto smíření zásob a vrátí se do fáze konceptu.
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,"Sorry,coupon code validity has not started","Litujeme, platnost kódu kupónu nezačala"
apps/erpnext/erpnext/regional/india/utils.py,Taxable Amount,Zdanitelná částka
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,You are not authorized to add or update entries before {0},Nejste oprávněni přidávat nebo aktualizovat údaje před {0}
DocType: Leave Policy,Leave Policy Details,Zanechat podrobnosti o zásadách
DocType: BOM,Item Image (if not slideshow),Item Image (ne-li slideshow)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}.,Řádek # {0}: Operace {1} není dokončena pro {2} množství hotového zboží v objednávce {3}. Aktualizujte prosím provozní stav pomocí Job Card {4}.
DocType: Work Order Operation,(Hour Rate / 60) * Actual Operation Time,(Hodinová sazba / 60) * Skutečný čas operace
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Row #{0}: Reference Document Type must be one of Expense Claim or Journal Entry,Řádek # {0}: Referenční typ dokumentu musí být jedním z nákladového tvrzení nebo záznamu v deníku
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Select BOM,Vybrat BOM
DocType: SMS Log,SMS Log,SMS Log
DocType: Call Log,Ringing,Zvoní
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py,Cost of Delivered Items,Náklady na dodávaných výrobků
apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py,The holiday on {0} is not between From Date and To Date,Dovolená na {0} není mezi Datum od a do dnešního dne
DocType: Inpatient Record,Admission Scheduled,Přijetí naplánováno
DocType: Student Log,Student Log,Student Log
apps/erpnext/erpnext/config/buying.py,Templates of supplier standings.,Šablony dodavatelů.
DocType: Lead,Interested,Zájemci
apps/erpnext/erpnext/hr/report/employee_leave_balance/employee_leave_balance.py,Opening,Otvor
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Program: ,Program:
DocType: Item,Copy From Item Group,Kopírovat z bodu Group
DocType: Journal Entry,Opening Entry,Otevření Entry
apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js,Account Pay Only,Účet Pay Pouze
DocType: Loan,Repay Over Number of Periods,Splatit Over počet období
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Quantity to Produce can not be less than Zero,Množství na výrobu nesmí být menší než nula
DocType: Stock Entry,Additional Costs,Dodatečné náklady
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account with existing transaction can not be converted to group.,Účet s transakcemi nelze převést na skupinu.
DocType: Lead,Product Enquiry,Dotaz Product
DocType: Education Settings,Validate Batch for Students in Student Group,Ověřit dávku pro studenty ve skupině studentů
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},Žádný záznam volno nalezených pro zaměstnance {0} na {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,Nerealizovaný účet zisku / ztráty na účtu Exchange
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js,Please enter company first,"Prosím, nejprave zadejte společnost"
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Please select Company first,"Prosím, vyberte první firma"
DocType: Employee Education,Under Graduate,Za absolventa
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Please set default template for Leave Status Notification in HR Settings.,Prosím nastavte výchozí šablonu pro ohlášení stavu o stavu v HR nastaveních.
apps/erpnext/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js,Target On,Target On
DocType: BOM,Total Cost,Celkové náklady
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.js,Allocation Expired!,Platnost přidělení vypršela!
DocType: Soil Analysis,Ca/K,Ca / K
DocType: Leave Type,Maximum Carry Forwarded Leaves,Maximální počet přepravených listů
DocType: Salary Slip,Employee Loan,zaměstnanec Loan
DocType: Additional Salary,HR-ADS-.YY.-.MM.-,HR-ADS-.YY .- MM.-
DocType: Fee Schedule,Send Payment Request Email,Odeslat e-mail s žádostí o platbu
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Item {0} does not exist in the system or has expired,Bod {0} neexistuje v systému nebo vypršela
DocType: Supplier,Leave blank if the Supplier is blocked indefinitely,"Nechte prázdné, pokud je dodavatel blokován neomezeně"
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Real Estate,Nemovitost
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html,Statement of Account,Výpis z účtu
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pharmaceuticals,Farmaceutické
DocType: Purchase Invoice Item,Is Fixed Asset,Je dlouhodobý majetek
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Future Payments,Zobrazit budoucí platby
DocType: Patient,HLC-PAT-.YYYY.-,HLC-PAT-.YYYY.-
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,This bank account is already synchronized,Tento bankovní účet je již synchronizován
DocType: Homepage,Homepage Section,Sekce domovské stránky
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Work Order has been {0},Pracovní příkaz byl {0}
DocType: Budget,Applicable on Purchase Order,Platí pro objednávku
DocType: Item,STO-ITEM-.YYYY.-,STO-ITEM-.YYYY.-
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,Zásady hesla pro platové lístky nejsou nastaveny
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Duplicate customer group found in the cutomer group table,Duplicitní skupinu zákazníků uvedeny v tabulce na knihy zákazníků skupiny
DocType: Location,Location Name,Název umístění
DocType: Quality Procedure Table,Responsible Individual,Odpovědná osoba
DocType: Naming Series,Prefix,Prefix
apps/erpnext/erpnext/hr/notification/training_scheduled/training_scheduled.html,Event Location,Umístění události
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Available Stock,Dostupné skladem
DocType: Asset Settings,Asset Settings,Nastavení aktiv
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Consumable,Spotřební
DocType: Student,B-,B-
DocType: Assessment Result,Grade,Školní známka
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,Item Code > Item Group > Brand,Kód položky> Skupina položek> Značka
DocType: Restaurant Table,No of Seats,Počet sedadel
DocType: Sales Invoice,Overdue and Discounted,Po lhůtě splatnosti a se slevou
apps/erpnext/erpnext/public/js/call_popup/call_popup.js,Call Disconnected,Hovor byl odpojen
DocType: Sales Invoice Item,Delivered By Supplier,Dodává se podle dodavatele
DocType: Asset Maintenance Task,Asset Maintenance Task,Úloha údržby aktiv
DocType: SMS Center,All Contact,Vše Kontakt
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Annual Salary,Roční Plat
DocType: Daily Work Summary,Daily Work Summary,Denní práce Souhrn
DocType: Period Closing Voucher,Closing Fiscal Year,Uzavření fiskálního roku
apps/erpnext/erpnext/accounts/party.py,{0} {1} is frozen,{0} {1} je zmrazený
apps/erpnext/erpnext/setup/doctype/company/company.py,Please select Existing Company for creating Chart of Accounts,Vyberte existující společnosti pro vytváření účtový rozvrh
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Stock Expenses,Stock Náklady
apps/erpnext/erpnext/stock/doctype/batch/batch.js,Select Target Warehouse,Vyberte objekt Target Warehouse
apps/erpnext/erpnext/hr/doctype/employee/employee.js,Please enter Preferred Contact Email,"Prosím, zadejte Preferred Kontakt e-mail"
DocType: Purchase Invoice Item,Accepted Qty,Přijato Množství
DocType: Journal Entry,Contra Entry,Contra Entry
DocType: Journal Entry Account,Credit in Company Currency,Úvěrové společnosti v měně
DocType: Lab Test UOM,Lab Test UOM,Laboratorní test UOM
DocType: Delivery Note,Installation Status,Stav instalace
DocType: BOM,Quality Inspection Template,Šablona inspekce kvality
apps/erpnext/erpnext/education/doctype/student_attendance_tool/student_attendance_tool.js,"Do you want to update attendance?<br>Present: {0}\
<br>Absent: {1}",Chcete aktualizovat docházku? <br> Present: {0} \ <br> Chybí: {1}
apps/erpnext/erpnext/controllers/buying_controller.py,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Schválené + Zamítnuté množství se musí rovnat množství Přijaté u položky {0}
DocType: Item,Supply Raw Materials for Purchase,Dodávky suroviny pro nákup
DocType: Agriculture Analysis Criteria,Fertilizer,Hnojivo
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,"Cannot ensure delivery by Serial No as \
Item {0} is added with and without Ensure Delivery by \
Serial No.","Nelze zajistit dodávku podle sériového čísla, protože je přidána položka {0} se službou Zajistit dodání podle \ sériového čísla"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,pro POS fakturu je nutná alespoň jeden způsob platby.
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Batch no is required for batched item {0},Šarže č. Je vyžadována pro dávkovou položku {0}
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,Položka faktury bankovního výpisu
DocType: Salary Detail,Tax on flexible benefit,Daň z flexibilní výhody
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,"Bod {0} není aktivní, nebo byl dosažen konec života"
DocType: Student Admission Program,Minimum Age,Minimální věk
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,Příklad: Základní Mathematics
DocType: Customer,Primary Address,primární adresa
apps/erpnext/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py,Diff Qty,Rozdílové množství
DocType: Production Plan,Material Request Detail,Podrobnosti o vyžádání materiálu
DocType: Selling Settings,Default Quotation Validity Days,Výchozí dny platnosti kotací
apps/erpnext/erpnext/controllers/accounts_controller.py,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Chcete-li zahrnout daně na řádku v poměru Položka {0}, daně v řádcích {1} musí být zahrnuty"
apps/erpnext/erpnext/config/quality_management.py,Quality Procedure.,Postup kvality.
DocType: SMS Center,SMS Center,SMS centrum
DocType: Payroll Entry,Validate Attendance,Ověřit účast
DocType: Sales Invoice,Change Amount,změna Částka
DocType: Party Tax Withholding Config,Certificate Received,Certifikát byl přijat
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,Nastavte hodnotu faktury pro B2C. B2CL a B2CS vypočítané na základě této fakturované hodnoty.
DocType: BOM Update Tool,New BOM,Nový BOM
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,Předepsané postupy
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,Zobrazit pouze POS
DocType: Supplier Group,Supplier Group Name,Název skupiny dodavatelů
DocType: Driver,Driving License Categories,Kategorie řidičských oprávnění
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,Zadejte prosím datum doručení
DocType: Depreciation Schedule,Make Depreciation Entry,Udělat Odpisy Entry
DocType: Closed Document,Closed Document,Uzavřený dokument
DocType: HR Settings,Leave Settings,Ponechte nastavení
DocType: Appraisal Template Goal,KRA,KRA
DocType: Lead,Request Type,Typ požadavku
DocType: Purpose of Travel,Purpose of Travel,Účel cesty
DocType: Payroll Period,Payroll Periods,Mzdové lhůty
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Broadcasting,Vysílání
apps/erpnext/erpnext/config/retail.py,Setup mode of POS (Online / Offline),Režim nastavení POS (Online / Offline)
DocType: Manufacturing Settings,Disables creation of time logs against Work Orders. Operations shall not be tracked against Work Order,Zakáže vytváření časových protokolů proti pracovním příkazům. Operace nesmí být sledovány proti pracovní objednávce
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Execution,Provedení
apps/erpnext/erpnext/config/manufacturing.py,Details of the operations carried out.,Podrobnosti o prováděných operací.
DocType: Asset Maintenance Log,Maintenance Status,Status Maintenance
DocType: Purchase Invoice Item,Item Tax Amount Included in Value,Částka daně z položky zahrnutá v hodnotě
apps/erpnext/erpnext/non_profit/doctype/member/member_dashboard.py,Membership Details,Podrobnosti o členství
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,{0} {1}: Supplier is required against Payable account {2},{0} {1}: Dodavatel je vyžadován oproti splatnému účtu {2}
apps/erpnext/erpnext/config/buying.py,Items and Pricing,Položky a Ceny
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.html,Total hours: {0},Celkem hodin: {0}
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,From Date should be within the Fiscal Year. Assuming From Date = {0},"Od data by měla být v rámci fiskálního roku. Za předpokladu, že od data = {0}"
DocType: Patient Medical Record,HLC-PMR-.YYYY.-,HLC-PMR-.YYYY.-
DocType: Drug Prescription,Interval,Interval
DocType: Pricing Rule,Promotional Scheme Id,ID propagačního schématu
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Preference,Přednost
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward Supplies(liable to reverse charge,Dočasné dodávky (podléhají zpětnému poplatku
DocType: Supplier,Individual,Individuální
DocType: Academic Term,Academics User,akademici Uživatel
DocType: Cheque Print Template,Amount In Figure,Na obrázku výše
DocType: Loan Application,Loan Info,Informace o úvěr
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,All Other ITC,Všechny ostatní ITC
apps/erpnext/erpnext/config/crm.py,Plan for maintenance visits.,Plán pro návštěvy údržby.
DocType: Supplier Scorecard Period,Supplier Scorecard Period,Období dodavatele skóre karty
DocType: Support Settings,Search APIs,API vyhledávání
DocType: Share Transfer,Share Transfer,Sdílet přenos
,Expiring Memberships,Platnost členství
apps/erpnext/erpnext/templates/pages/home.html,Read blog,Přečtěte si blog
DocType: POS Profile,Customer Groups,Skupiny zákazníků
apps/erpnext/erpnext/public/js/financial_statements.js,Financial Statements,Finanční výkazy
DocType: Guardian,Students,studenti
apps/erpnext/erpnext/config/buying.py,Rules for applying pricing and discount.,Pravidla pro používání cen a slevy.
DocType: Daily Work Summary,Daily Work Summary Group,Denní shrnutí skupiny práce
DocType: Practitioner Schedule,Time Slots,Časové úseky
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py,Price List must be applicable for Buying or Selling,Ceník musí být použitelný pro nákup nebo prodej
DocType: Shift Assignment,Shift Request,Žádost o posun
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Installation date cannot be before delivery date for Item {0},Datum Instalace nemůže být před datem dodání pro bod {0}
DocType: Purchase Invoice Item,Discount on Price List Rate (%),Sleva na Ceník Rate (%)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js,Item Template,Šablona položky
DocType: Job Offer,Select Terms and Conditions,Vyberte Podmínky
apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py,Out Value,limitu
DocType: Bank Statement Settings Item,Bank Statement Settings Item,Položka nastavení bankovního výpisu
DocType: Woocommerce Settings,Woocommerce Settings,Nastavení Woocommerce
DocType: Leave Ledger Entry,Transaction Name,Název transakce
DocType: Production Plan,Sales Orders,Prodejní objednávky
apps/erpnext/erpnext/selling/doctype/customer/customer.py,Multiple Loyalty Program found for the Customer. Please select manually.,Pro zákazníka byl nalezen vícenásobný věrnostní program. Zvolte prosím ručně.
DocType: Purchase Taxes and Charges,Valuation,Ocenění
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js,Set as Default,Nastavit jako výchozí
apps/erpnext/erpnext/stock/doctype/batch/batch.py,Expiry date is mandatory for selected item.,Datum vypršení platnosti je pro vybranou položku povinné.
,Purchase Order Trends,Nákupní objednávka trendy
apps/erpnext/erpnext/utilities/user_progress.py,Go to Customers,Přejděte na položku Zákazníci
DocType: Hotel Room Reservation,Late Checkin,Pozdní checkin
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Finding linked payments,Nalezení propojených plateb
apps/erpnext/erpnext/templates/emails/request_for_quotation.html,The request for quotation can be accessed by clicking on the following link,Žádost o cenovou nabídku lze přistupovat kliknutím na následující odkaz
DocType: Quiz Result,Selected Option,Vybraná možnost
DocType: SG Creation Tool Course,SG Creation Tool Course,SG nástroj pro tvorbu hřiště
DocType: Bank Statement Transaction Invoice Item,Payment Description,Popis platby
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Insufficient Stock,nedostatečná Sklad
DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Zakázat Plánování kapacit a Time Tracking
DocType: Email Digest,New Sales Orders,Nové Prodejní objednávky
DocType: Bank Account,Bank Account,Bankovní účet
DocType: Travel Itinerary,Check-out Date,Zkontrolovat datum
DocType: Leave Type,Allow Negative Balance,Povolit záporný zůstatek
apps/erpnext/erpnext/projects/doctype/project_type/project_type.py,You cannot delete Project Type 'External',Nelze odstranit typ projektu "Externí"
apps/erpnext/erpnext/public/js/utils.js,Select Alternate Item,Vyberte alternativní položku
DocType: Employee,Create User,Vytvořit uživatele
DocType: Selling Settings,Default Territory,Výchozí Territory
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Television,Televize
DocType: Work Order Operation,Updated via 'Time Log',"Aktualizováno přes ""Time Log"""
apps/erpnext/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py,Select the customer or supplier.,Vyberte zákazníka nebo dodavatele.
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Select only one Priority as Default.,Jako výchozí vyberte pouze jednu prioritu.
apps/erpnext/erpnext/controllers/taxes_and_totals.py,Advance amount cannot be greater than {0} {1},Množství předem nemůže být větší než {0} {1}
apps/erpnext/erpnext/healthcare/doctype/practitioner_schedule/practitioner_schedule.js,"Time slot skiped, the slot {0} to {1} overlap exisiting slot {2} to {3}","Časový interval přeskočil, slot {0} až {1} překrýval existující slot {2} na {3}"
DocType: Naming Series,Series List for this Transaction,Řada seznam pro tuto transakci
DocType: Company,Enable Perpetual Inventory,Povolit trvalý inventář
DocType: Bank Guarantee,Charges Incurred,Poplatky vznikly
apps/erpnext/erpnext/public/js/education/lms/quiz.js,Something went wrong while evaluating the quiz.,Při vyhodnocování kvízu se něco pokazilo.
DocType: Company,Default Payroll Payable Account,"Výchozí mzdy, splatnou Account"
apps/erpnext/erpnext/public/js/hub/pages/Item.vue,Edit Details,Upravit detaily
apps/erpnext/erpnext/education/doctype/student_group/student_group.js,Update Email Group,Aktualizace Email Group
DocType: POS Profile,Only show Customer of these Customer Groups,Zobrazovat pouze Zákazníka těchto skupin zákazníků
DocType: Sales Invoice,Is Opening Entry,Je vstupní otvor
apps/erpnext/erpnext/public/js/conf.js,Documentation,Dokumentace
DocType: Lab Test Template,"If unchecked, the item wont be appear in Sales Invoice, but can be used in group test creation. ","Pokud není zaškrtnuto, bude položka zobrazena v faktuře prodeje, ale může být použita při vytváření skupinových testů."
DocType: Customer Group,Mention if non-standard receivable account applicable,Zmínka v případě nestandardní pohledávky účet použitelná
DocType: Course Schedule,Instructor Name,instruktor Name
DocType: Company,Arrear Component,Součást výdajů
apps/erpnext/erpnext/stock/doctype/pick_list/pick_list.py,Stock Entry has been already created against this Pick List,Položka Zásoby již byla vytvořena na základě tohoto výběrového seznamu
DocType: Supplier Scorecard,Criteria Setup,Nastavení kritérií
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,For Warehouse is required before Submit,Pro Sklad je povinné před Odesláním
apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html,Received On,Přijaté On
DocType: Codification Table,Medical Code,Lékařský zákoník
apps/erpnext/erpnext/config/integrations.py,Connect Amazon with ERPNext,Spojte Amazon s ERPNext
apps/erpnext/erpnext/templates/generators/item/item_configure.html,Contact Us,Kontaktujte nás
DocType: Delivery Note Item,Against Sales Invoice Item,Proti položce vydané faktury
DocType: Agriculture Analysis Criteria,Linked Doctype,Linked Doctype
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py,Net Cash from Financing,Čistý peněžní tok z financování
apps/erpnext/erpnext/accounts/page/pos/pos.js,"LocalStorage is full , did not save","Místní úložiště je plná, nezachránil"
DocType: Lead,Address & Contact,Adresa a kontakt
DocType: Leave Allocation,Add unused leaves from previous allocations,Přidat nevyužité listy z předchozích přídělů
DocType: Sales Partner,Partner website,webové stránky Partner
DocType: Restaurant Order Entry,Add Item,Přidat položku
DocType: Party Tax Withholding Config,Party Tax Withholding Config,Konz
DocType: Lab Test,Custom Result,Vlastní výsledek
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js,Bank accounts added,Bankovní účty přidány
DocType: Call Log,Contact Name,Kontakt Jméno
DocType: Plaid Settings,Synchronize all accounts every hour,Synchronizujte všechny účty každou hodinu
DocType: Course Assessment Criteria,Course Assessment Criteria,Hodnotící kritéria hřiště
DocType: Pricing Rule Detail,Rule Applied,Platí pravidlo
DocType: Service Level Priority,Resolution Time Period,Časové rozlišení řešení
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Tax Id: ,DIČ:
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student ID: ,Student ID:
DocType: POS Customer Group,POS Customer Group,POS Customer Group
DocType: Healthcare Practitioner,Practitioner Schedules,Pracovník plánuje
DocType: Cheque Print Template,Line spacing for amount in words,řádkování za částku ve slovech
DocType: Vehicle,Additional Details,další detaily
apps/erpnext/erpnext/templates/generators/bom.html,No description given,No vzhledem k tomu popis
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js,Fetch Items from Warehouse,Načíst položky ze skladu
apps/erpnext/erpnext/config/buying.py,Request for purchase.,Žádost o koupi.
DocType: POS Closing Voucher Details,Collected Amount,Sběrná částka
DocType: Lab Test,Submitted Date,Datum odeslání
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js,Company field is required,Pole společnosti je povinné
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,This is based on the Time Sheets created against this project,To je založeno na časových výkazů vytvořených proti tomuto projektu
DocType: Call Log,Recording URL,Záznam URL
apps/erpnext/erpnext/crm/doctype/email_campaign/email_campaign.py,Start Date cannot be before the current date,Datum zahájení nemůže být před aktuálním datem
,Open Work Orders,Otevřete pracovní objednávky
DocType: Healthcare Practitioner,Out Patient Consulting Charge Item,Položka pro poplatek za konzultaci s pacientem
DocType: Payment Term,Credit Months,Kreditní měsíce
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Net Pay cannot be less than 0,Čistý Pay nemůže být nižší než 0
DocType: Contract,Fulfilled,Splnil
DocType: Inpatient Record,Discharge Scheduled,Plnění je naplánováno
apps/erpnext/erpnext/hr/doctype/employee/employee.py,Relieving Date must be greater than Date of Joining,Uvolnění Datum musí být větší než Datum spojování
DocType: POS Closing Voucher,Cashier,Pokladní
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Leaves per Year,Dovolených za rok
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Row {0}: Zkontrolujte ""Je Advance"" proti účtu {1}, pokud je to záloha záznam."
apps/erpnext/erpnext/stock/utils.py,Warehouse {0} does not belong to company {1},Sklad {0} nepatří ke společnosti {1}
DocType: Email Digest,Profit & Loss,Ztráta zisku
apps/erpnext/erpnext/utilities/user_progress.py,Litre,Litr
DocType: Task,Total Costing Amount (via Time Sheet),Celková kalkulace Částka (přes Time Sheet)
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule.py,Please setup Students under Student Groups,"Prosím, nastavte studenty pod studentskými skupinami"
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.js,Complete Job,Kompletní úloha
DocType: Item Website Specification,Item Website Specification,Položka webových stránek Specifikace
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Leave Blocked,Absence blokována
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} has reached its end of life on {1},Položka {0} dosáhla konce své životnosti na {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js,Bank Entries,bankovní Příspěvky
DocType: Customer,Is Internal Customer,Je interní zákazník
DocType: Crop,Annual,Roční
apps/erpnext/erpnext/accounts/doctype/loyalty_program/loyalty_program.js,"If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)","Pokud je zaškrtnuto políčko Auto Opt In, zákazníci budou automaticky propojeni s daným věrným programem (při uložení)"
DocType: Stock Reconciliation Item,Stock Reconciliation Item,Reklamní Odsouhlasení Item
DocType: Stock Entry,Sales Invoice No,Prodejní faktuře č
DocType: Website Filter Field,Website Filter Field,Pole filtru webových stránek
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,Supply Type,Druh napájení
DocType: Material Request Item,Min Order Qty,Min Objednané množství
DocType: Student Group Creation Tool Course,Student Group Creation Tool Course,Student Group Creation Tool hřiště
DocType: Lead,Do Not Contact,Nekontaktujte
apps/erpnext/erpnext/utilities/user_progress.py,People who teach at your organisation,"Lidé, kteří vyučují ve vaší organizaci"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Software Developer,Software Developer
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js,Create Sample Retention Stock Entry,Vytvořte položku Vzorek retenčních zásob
DocType: Item,Minimum Order Qty,Minimální objednávka Množství
DocType: Supplier,Supplier Type,Dodavatel Type
DocType: Course Scheduling Tool,Course Start Date,Začátek Samozřejmě Datum
,Student Batch-Wise Attendance,Student Batch-Wise Účast
DocType: POS Profile,Allow user to edit Rate,Umožnit uživateli upravovat Rate
DocType: Item,Publish in Hub,Publikovat v Hub
DocType: Student Admission,Student Admission,Student Vstupné
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} is cancelled,Položka {0} je zrušen
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Depreciation Row {0}: Depreciation Start Date is entered as past date,Odpisový řádek {0}: Datum zahájení odpisování je zadáno jako poslední datum
DocType: Contract Template,Fulfilment Terms and Conditions,Smluvní podmínky
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js,Material Request,Požadavek na materiál
DocType: Bank Reconciliation,Update Clearance Date,Aktualizace Výprodej Datum
apps/erpnext/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py,Bundle Qty,Balíček Množství
,GSTR-2,GSTR-2
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},Položka {0} nebyl nalezen v "suroviny dodané" tabulky v objednávce {1}
DocType: Salary Slip,Total Principal Amount,Celková hlavní částka
DocType: Student Guardian,Relation,Vztah
DocType: Quiz Result,Correct,Opravit
DocType: Student Guardian,Mother,Matka
DocType: Restaurant Reservation,Reservation End Time,Doba ukončení rezervace
DocType: Crop,Biennial,Dvouletý
,BOM Variance Report,Zpráva o odchylce kusovníku
apps/erpnext/erpnext/config/selling.py,Confirmed orders from Customers.,Potvrzené objednávky od zákazníků.
DocType: Purchase Receipt Item,Rejected Quantity,Odmíntnuté množství
apps/erpnext/erpnext/education/doctype/fees/fees.py,Payment request {0} created,Byla vytvořena žádost o platbu {0}
DocType: Inpatient Record,Admitted Datetime,Přidané datum
DocType: Work Order,Backflush raw materials from work-in-progress warehouse,Zpětné suroviny z nedokončeného skladu
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py,Open Orders,Otevřené objednávky
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,Unable to find Salary Component {0},Nelze najít komponentu platu {0}
apps/erpnext/erpnext/healthcare/setup.py,Low Sensitivity,Nízká citlivost
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_log/shopify_log.js,Order rescheduled for sync,Objednávka byla přepracována pro synchronizaci
apps/erpnext/erpnext/templates/emails/training_event.html,Please confirm once you have completed your training,Potvrďte prosím po dokončení školení
DocType: Lead,Suggestions,Návrhy
DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Položka Skupina-moudrý rozpočty na tomto území. Můžete také sezónnosti nastavením distribuce.
DocType: Plaid Settings,Plaid Public Key,Plaid Public Key
DocType: Payment Term,Payment Term Name,Název platebního termínu
DocType: Healthcare Settings,Create documents for sample collection,Vytvořte dokumenty pro výběr vzorků
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Platba proti {0} {1} nemůže být větší než dlužné částky {2}
apps/erpnext/erpnext/patches/v11_0/add_healthcare_service_unit_tree_root.py,All Healthcare Service Units,Všechny jednotky zdravotnických služeb
apps/erpnext/erpnext/setup/default_energy_point_rules.py,On Converting Opportunity,O převodu příležitostí
DocType: Bank Account,Address HTML,Adresa HTML
DocType: Lead,Mobile No.,Mobile No.
apps/erpnext/erpnext/selling/doctype/pos_closing_voucher/closing_voucher_details.html,Mode of Payments,Způsob platby
DocType: Maintenance Schedule,Generate Schedule,Generování plán
DocType: Purchase Invoice Item,Expense Head,Náklady Head
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Please select Charge Type first,"Prosím, vyberte druh tarifu první"
DocType: Crop,"You can define all the tasks which need to carried out for this crop here. The day field is used to mention the day on which the task needs to be carried out, 1 being the 1st day, etc.. ","Můžete definovat všechny úkoly, které je třeba provést pro tuto plodinu zde. Denní pole se používá k uvedení den, kdy má být úkol proveden, 1 je 1. den atd."
DocType: Student Group Student,Student Group Student,Student Skupina Student
apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py,Latest,Nejnovější
DocType: Asset Maintenance Task,2 Yearly,2 Každoročně
DocType: Education Settings,Education Settings,Nastavení vzdělávání
DocType: Vehicle Service,Inspection,Inspekce
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,Chybí informace o elektronické fakturaci
DocType: Leave Allocation,HR-LAL-.YYYY.-,HR-LAL-.YYYY.-
DocType: Exchange Rate Revaluation Account,Balance In Base Currency,Zůstatek v základní měně
DocType: Supplier Scorecard Scoring Standing,Max Grade,Max stupeň
DocType: Email Digest,New Quotations,Nové Citace
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Attendance not submitted for {0} as {1} on leave.,Ústředna nebyla odeslána do {0} jako {1}.
DocType: Journal Entry,Payment Order,Platební příkaz
DocType: Employee Tax Exemption Declaration,Income From Other Sources,Příjmy z jiných zdrojů
DocType: Warehouse,"If blank, parent Warehouse Account or company default will be considered","Pokud je prázdné, bude se brát v úvahu výchozí rodičovský účet nebo výchozí společnost"
DocType: HR Settings,Emails salary slip to employee based on preferred email selected in Employee,"E-maily výplatní pásce, aby zaměstnanci na základě přednostního e-mailu vybraného v zaměstnaneckých"
DocType: Tax Rule,Shipping County,vodní doprava County
DocType: Currency Exchange,For Selling,Pro prodej
apps/erpnext/erpnext/config/desktop.py,Learn,Učit se
,Trial Balance (Simple),Zkušební zůstatek (jednoduchý)
DocType: Purchase Invoice Item,Enable Deferred Expense,Aktivovat odložený náklad
apps/erpnext/erpnext/templates/includes/order/order_taxes.html,Applied Coupon Code,Kód použitého kupónu
DocType: Asset,Next Depreciation Date,Vedle Odpisy Datum
apps/erpnext/erpnext/projects/doctype/activity_type/activity_type.js,Activity Cost per Employee,Náklady na činnost na jednoho zaměstnance
DocType: Accounts Settings,Settings for Accounts,Nastavení účtů
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py,Supplier Invoice No exists in Purchase Invoice {0},Dodavatelské faktury No existuje ve faktuře {0}
apps/erpnext/erpnext/config/crm.py,Manage Sales Person Tree.,Správa obchodník strom.
DocType: Job Applicant,Cover Letter,Průvodní dopis
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py,Outstanding Cheques and Deposits to clear,Vynikající Šeky a vklady s jasnými
DocType: Item,Synced With Hub,Synchronizovány Hub
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward supplies from ISD,Spotřební materiál od ISD
DocType: Driver,Fleet Manager,Fleet manager
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Row #{0}: {1} can not be negative for item {2},Řádek # {0}: {1} nemůže být negativní na položku {2}
apps/erpnext/erpnext/setup/doctype/company/company.js,Wrong Password,Špatné Heslo
DocType: POS Profile,Offline POS Settings,Nastavení offline offline
DocType: Stock Entry Detail,Reference Purchase Receipt,Referenční potvrzení o nákupu
DocType: Stock Reconciliation,MAT-RECO-.YYYY.-,MAT-RECO-.YYYY.-
apps/erpnext/erpnext/templates/includes/cart/cart_items.html,Variant Of,Varianta
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Completed Qty can not be greater than 'Qty to Manufacture',"Dokončené množství nemůže být větší než ""Množství do výroby"""
apps/erpnext/erpnext/public/js/purchase_trends_filters.js,Period based On,Období založené na
DocType: Period Closing Voucher,Closing Account Head,Závěrečný účet hlava
DocType: Employee,External Work History,Vnější práce History
apps/erpnext/erpnext/projects/doctype/task/task.py,Circular Reference Error,Kruhové Referenční Chyba
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Report Card,Studentská karta
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Pin Code,Z kódu PIN
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Sales Person,Zobrazit prodejní osobu
DocType: Appointment Type,Is Inpatient,Je hospitalizován
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian1 Name,Jméno Guardian1
DocType: Delivery Note,In Words (Export) will be visible once you save the Delivery Note.,"Ve slovech (export) budou viditelné, jakmile uložíte doručení poznámku."
DocType: Cheque Print Template,Distance from left edge,Vzdálenost od levého okraje
apps/erpnext/erpnext/utilities/bot.py,{0} units of [{1}](#Form/Item/{1}) found in [{2}](#Form/Warehouse/{2}),{0} jednotek [{1}] (# Form / bodu / {1}) byla nalezena v [{2}] (# Form / sklad / {2})
DocType: Lead,Industry,Průmysl
DocType: BOM Item,Rate & Amount,Cena a částka
apps/erpnext/erpnext/config/website.py,Settings for website product listing,Nastavení pro seznam produktů na webu
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Amount of Integrated Tax,Výše integrované daně
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Upozornit e-mailem na tvorbu automatických Materiál Poptávka
DocType: Accounting Dimension,Dimension Name,Název dimenze
apps/erpnext/erpnext/healthcare/setup.py,Resistant,Odolný
apps/erpnext/erpnext/hotels/doctype/hotel_room_reservation/hotel_room_reservation.py,Please set Hotel Room Rate on {},"Prosím, nastavte Hotel Room Rate na {}"
DocType: Journal Entry,Multi Currency,Více měn
DocType: Bank Statement Transaction Invoice Item,Invoice Type,Typ faktury
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py,Valid from date must be less than valid upto date,Platné od data musí být kratší než platné datum
apps/erpnext/erpnext/accounts/doctype/bank_statement_transaction_entry/bank_statement_transaction_entry.py,Exception occurred while reconciling {0},Při sladění došlo k výjimce {0}
DocType: Purchase Invoice,Set Accepted Warehouse,Nastavit přijímaný sklad
DocType: Employee Benefit Claim,Expense Proof,Výkaz výdajů
apps/erpnext/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py,Saving {0},Uložení {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Delivery Note,Dodací list
DocType: Patient Encounter,Encounter Impression,Setkání s impresi
apps/erpnext/erpnext/config/help.py,Setting up Taxes,Nastavení Daně
apps/erpnext/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py,Cost of Sold Asset,Náklady prodaných aktiv
DocType: Volunteer,Morning,Ráno
apps/erpnext/erpnext/accounts/utils.py,Payment Entry has been modified after you pulled it. Please pull it again.,"Vstup Platba byla změněna poté, co ji vytáhl. Prosím, vytáhněte ji znovu."
DocType: Program Enrollment Tool,New Student Batch,Nová studentská dávka
apps/erpnext/erpnext/accounts/doctype/item_tax_template/item_tax_template.py,{0} entered twice in Item Tax,{0} vloženo dvakrát v Daňové Položce
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Summary for this week and pending activities,Shrnutí pro tento týden a probíhajícím činnostem
DocType: Student Applicant,Admitted,"připustil,"
DocType: Workstation,Rent Cost,Rent Cost
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Plaid transactions sync error,Chyba synchronizace plaidních transakcí
DocType: Leave Ledger Entry,Is Expired,Platnost vypršela
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py,Amount After Depreciation,Částka po odpisech
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Upcoming Calendar Events,Nadcházející Události v kalendáři
apps/erpnext/erpnext/public/js/templates/item_quick_entry.html,Variant Attributes,Variant atributy
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Please select month and year,Vyberte měsíc a rok
DocType: Employee,Company Email,Společnost E-mail
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,User has not applied rule on the invoice {0},Uživatel na fakturu neuplatnil pravidlo {0}
DocType: GL Entry,Debit Amount in Account Currency,Debetní Částka v měně účtu
DocType: Supplier Scorecard,Scoring Standings,Hodnocení bodů
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,Hodnota objednávky
DocType: Certified Consultant,Certified Consultant,Certifikovaný konzultant
apps/erpnext/erpnext/config/accounting.py,Bank/Cash transactions against party or for internal transfer,Banka / Hotovostní operace proti osobě nebo pro interní převod
DocType: Shipping Rule,Valid for Countries,"Platí pro země,"
apps/erpnext/erpnext/hr/doctype/training_event/training_event.py,End time cannot be before start time,Čas ukončení nemůže být před časem zahájení
apps/erpnext/erpnext/templates/generators/item/item_configure.js,1 exact match.,1 přesná shoda.
apps/erpnext/erpnext/stock/doctype/item/item.js,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Tento bod je šablona a nemůže být použit v transakcích. Atributy položky budou zkopírovány do variant, pokud je nastaveno ""No Copy"""
DocType: Grant Application,Grant Application,Žádost o grant
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py,Total Order Considered,Celková objednávka Zvážil
DocType: Certification Application,Not Certified,Není certifikováno
DocType: Asset Value Adjustment,New Asset Value,Nová hodnota aktiv
DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Sazba, za kterou je měna zákazníka převedena na základní měnu zákazníka"
DocType: Course Scheduling Tool,Course Scheduling Tool,Samozřejmě Plánování Tool
apps/erpnext/erpnext/controllers/accounts_controller.py,Row #{0}: Purchase Invoice cannot be made against an existing asset {1},Řádek # {0}: faktury nelze provést vůči stávajícímu aktivu {1}
DocType: Crop Cycle,LInked Analysis,Llnked Analysis
DocType: POS Closing Voucher,POS Closing Voucher,POS uzávěrka
apps/erpnext/erpnext/support/doctype/issue_priority/issue_priority.py,Issue Priority Already Exists,Priorita problému již existuje
DocType: Invoice Discounting,Loan Start Date,Datum zahájení půjčky
DocType: Contract,Lapsed,Zrušeno
DocType: Item Tax Template Detail,Tax Rate,Tax Rate
apps/erpnext/erpnext/education/doctype/course_activity/course_activity.py,Course Enrollment {0} does not exists,Zápis do kurzu {0} neexistuje
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Application period cannot be across two allocation records,Období žádosti nesmí být v rámci dvou alokačních záznamů
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py,{0} already allocated for Employee {1} for period {2} to {3},{0} již přidělené pro zaměstnance {1} na dobu {2} až {3}
DocType: Buying Settings,Backflush Raw Materials of Subcontract Based On,Backflush Suroviny subdodávky založené na
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py,Purchase Invoice {0} is already submitted,Přijatá faktura {0} je již odeslána
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Row # {0}: Batch No must be same as {1} {2},"Row # {0}: Batch No musí být stejné, jako {1} {2}"
DocType: Material Request Plan Item,Material Request Plan Item,Položka materiálu požadovaného plánu
DocType: Leave Type,Allow Encashment,Povolit nákres
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Convert to non-Group,Převést na non-Group
DocType: Exotel Settings,Account SID,SID účtu
DocType: Bank Statement Transaction Invoice Item,Invoice Date,Datum Fakturace
DocType: GL Entry,Debit Amount,Debetní Částka
apps/erpnext/erpnext/accounts/party.py,There can only be 1 Account per Company in {0} {1},Tam může být pouze 1 účet na společnosti v {0} {1}
DocType: Support Search Source,Response Result Key Path,Cesta k klíčovému výsledku odpovědi
DocType: Journal Entry,Inter Company Journal Entry,Inter Company Entry Journal
apps/erpnext/erpnext/accounts/party.py,Due Date cannot be before Posting / Supplier Invoice Date,Datum splatnosti nesmí být před datem odeslání / fakturace dodavatele
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,For quantity {0} should not be grater than work order quantity {1},Množství {0} by nemělo být větší než počet pracovních objednávek {1}
DocType: Employee Training,Employee Training,Školení zaměstnanců
DocType: Quotation Item,Additional Notes,Další poznámky
DocType: Purchase Order,% Received,% Přijaté
apps/erpnext/erpnext/education/doctype/student_group_creation_tool/student_group_creation_tool.js,Create Student Groups,Vytvoření skupiny studentů
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,"Available quantity is {0}, you need {1}","Dostupné množství je {0}, potřebujete {1}"
DocType: Volunteer,Weekends,Víkendy
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Credit Note Amount,Částka kreditní poznámky
DocType: Setup Progress Action,Action Document,Akční dokument
DocType: Chapter Member,Website URL,URL webu
,Finished Goods,Hotové zboží
DocType: Delivery Note,Instructions,Instrukce
DocType: Quality Inspection,Inspected By,Zkontrolován
DocType: Asset,ACC-ASS-.YYYY.-,ACC-ASS-.YYYY.-
DocType: Asset Maintenance Log,Maintenance Type,Typ Maintenance
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,{0} - {1} is not enrolled in the Course {2},{0} - {1} není zařazen do kurzu {2}
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Name: ,Jméno studenta:
DocType: POS Closing Voucher,Difference,Rozdíl
DocType: Delivery Settings,Delay between Delivery Stops,Zpoždění mezi doručením
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Serial No {0} does not belong to Delivery Note {1},Pořadové číslo {0} není součástí dodávky Poznámka: {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py,"There seems to be an issue with the server's GoCardless configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Zdá se, že existuje problém se konfigurací serveru GoCardless. Nebojte se, v případě selhání bude částka vrácena na váš účet."
apps/erpnext/erpnext/templates/pages/demo.html,ERPNext Demo,ERPNext Demo
apps/erpnext/erpnext/public/js/utils/item_selector.js,Add Items,Přidat položky
DocType: Item Quality Inspection Parameter,Item Quality Inspection Parameter,Položka Kontrola jakosti Parametr
DocType: Leave Application,Leave Approver Name,Jméno schvalovatele dovolené
DocType: Depreciation Schedule,Schedule Date,Plán Datum
DocType: Amazon MWS Settings,FR,FR
DocType: Packed Item,Packed Item,Zabalená položka
DocType: Job Offer Term,Job Offer Term,Termín nabídky práce
apps/erpnext/erpnext/config/buying.py,Default settings for buying transactions.,Výchozí nastavení pro nákup transakcí.
apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py,Activity Cost exists for Employee {0} against Activity Type - {1},Existuje Náklady aktivity pro zaměstnance {0} proti Typ aktivity - {1}
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,Povinná pole - Získajte studenty z
DocType: Program Enrollment,Enrolled courses,Zapsané kurzy
DocType: Currency Exchange,Currency Exchange,Směnárna
apps/erpnext/erpnext/support/doctype/issue/issue.js,Resetting Service Level Agreement.,Obnovení dohody o úrovni služeb.
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Item Name,Název položky
DocType: Authorization Rule,Approving User (above authorized value),Schválení uživatele (nad oprávněné hodnoty)
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py,Credit Balance,Credit Balance
DocType: Employee,Widowed,Ovdovělý
DocType: Request for Quotation,Request for Quotation,Žádost o cenovou nabídku
DocType: Healthcare Settings,Require Lab Test Approval,Požadovat schválení testu laboratoře
DocType: Attendance,Working Hours,Pracovní doba
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html,Total Outstanding,Naprosto vynikající
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Změnit výchozí / aktuální pořadové číslo existujícího série.
DocType: Accounts Settings,Percentage you are allowed to bill more against the amount ordered. For example: If the order value is $100 for an item and tolerance is set as 10% then you are allowed to bill for $110.,"Procento, které máte možnost vyúčtovat více oproti objednané částce. Například: Pokud je hodnota objednávky 100 $ pro položku a tolerance je nastavena na 10%, pak máte možnost vyúčtovat za 110 $."
DocType: Dosage Strength,Strength,Síla
apps/erpnext/erpnext/public/js/controllers/transaction.js,Cannot find Item with this barcode,Nelze najít položku s tímto čárovým kódem
apps/erpnext/erpnext/accounts/page/pos/pos.js,Create a new Customer,Vytvořit nový zákazník
apps/erpnext/erpnext/non_profit/report/expiring_memberships/expiring_memberships.py,Expiring On,Vypnuto Zapnuto
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,"If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict.","Je-li více pravidla pro tvorbu cen i nadále přednost, jsou uživatelé vyzváni k nastavení priority pro vyřešení konfliktu."
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js,Purchase Return,Nákup Return
apps/erpnext/erpnext/utilities/activation.py,Create Purchase Orders,Vytvoření objednávek
,Purchase Register,Nákup Register
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py,Patient not found,Pacient nebyl nalezen
DocType: Landed Cost Item,Applicable Charges,Použitelné Poplatky
DocType: Workstation,Consumable Cost,Spotřební Cost
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Response Time for {0} at index {1} can't be greater than Resolution Time.,Doba odezvy pro {0} při indexu {1} nemůže být delší než doba řešení.
DocType: Purchase Receipt,Vehicle Date,Datum Vehicle
DocType: Campaign Email Schedule,Campaign Email Schedule,Plán e-mailu kampaně
DocType: Student Log,Medical,Lékařský
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Please select Drug,Vyberte prosím lék
apps/erpnext/erpnext/crm/doctype/lead/lead.py,Lead Owner cannot be same as the Lead,Olovo Majitel nemůže být stejný jako olovo
DocType: Announcement,Receiver,Přijímač
DocType: Location,Area UOM,Oblast UOM
apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py,Workstation is closed on the following dates as per Holiday List: {0},Workstation je uzavřena v následujících dnech podle Prázdninový Seznam: {0}
apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py,Opportunities,Příležitosti
DocType: Lab Test Template,Single,Jednolůžkový
DocType: Compensatory Leave Request,Work From Date,Práce od data
DocType: Salary Slip,Total Loan Repayment,Celková splátky
DocType: Project User,View attachments,Zobrazit přílohy
DocType: Account,Cost of Goods Sold,Náklady na prodej zboží
DocType: Article,Publish Date,Datum publikování
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Please enter Cost Center,"Prosím, zadejte nákladové středisko"
DocType: Drug Prescription,Dosage,Dávkování
DocType: Journal Entry Account,Sales Order,Prodejní objednávky
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py,Avg. Selling Rate,Avg. Prodej Rate
DocType: Assessment Plan,Examiner Name,Jméno Examiner
DocType: Lab Test Template,No Result,Žádný výsledek
DocType: Woocommerce Settings,"The fallback series is ""SO-WOO-"".",Záložní řada je „SO-WOO-“.
DocType: Purchase Invoice Item,Quantity and Rate,Množství a cena
DocType: Delivery Note,% Installed,% Instalováno
apps/erpnext/erpnext/utilities/user_progress.py,Classrooms/ Laboratories etc where lectures can be scheduled.,"Učebny / etc laboratoře, kde mohou být naplánovány přednášky."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Company currencies of both the companies should match for Inter Company Transactions.,Společné měny obou společností by měly odpovídat mezipodnikovým transakcím.
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Please enter company name first,"Prosím, zadejte nejprve název společnosti"
DocType: Travel Itinerary,Non-Vegetarian,Nevegetarián
DocType: Purchase Invoice,Supplier Name,Dodavatel Name
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html,Read the ERPNext Manual,Přečtěte si ERPNext Manuál
DocType: HR Settings,Show Leaves Of All Department Members In Calendar,Zobrazit listy všech členů katedry v kalendáři
DocType: Purchase Invoice,01-Sales Return,01-Návrat prodeje
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Qty per BOM Line,Množství na řádek kusovníku
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js,Temporarily on Hold,Dočasně pozdrženo
DocType: Account,Is Group,Is Group
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py,Credit Note {0} has been created automatically,Kreditní poznámka {0} byla vytvořena automaticky
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Request for Raw Materials,Žádost o suroviny
DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Automaticky nastavit sériových čísel na základě FIFO
DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,"Zkontrolujte, zda dodavatelské faktury Počet Jedinečnost"
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Address Details,Údaje o primární adrese
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Public token is missing for this bank,Pro tuto banku chybí veřejný token
DocType: Vehicle Service,Oil Change,Výměna oleje
DocType: Leave Encashment,Leave Balance,Nechat zůstatek
DocType: Asset Maintenance Log,Asset Maintenance Log,Protokol o údržbě aktiv
apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js,'To Case No.' cannot be less than 'From Case No.',"""DO Případu č.' nesmí být menší než ""Od Případu č.'"
DocType: Certification Application,Non Profit,Non Profit
DocType: Production Plan,Not Started,Nezahájeno
DocType: Lead,Channel Partner,Channel Partner
DocType: Account,Old Parent,Staré nadřazené
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,Povinná oblast - Akademický rok
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,{0} {1} is not associated with {2} {3},{0} {1} není přidružen k {2} {3}
DocType: Opportunity,Converted By,Převedeno
apps/erpnext/erpnext/public/js/hub/components/ReviewArea.vue,You need to login as a Marketplace User before you can add any reviews.,"Než budete moci přidat recenze, musíte se přihlásit jako uživatel Marketplace."
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Row {0} : Operation is required against the raw material item {1},Řádek {0}: vyžaduje se operace proti položce suroviny {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py,Please set default payable account for the company {0},Nastavte prosím výchozí splatný účet společnosti {0}
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Transaction not allowed against stopped Work Order {0},Transakce není povolena proti zastavenému pracovnímu příkazu {0}
DocType: Setup Progress Action,Min Doc Count,Minimální počet dokumentů
apps/erpnext/erpnext/config/manufacturing.py,Global settings for all manufacturing processes.,Globální nastavení pro všechny výrobní procesy.
DocType: Accounts Settings,Accounts Frozen Upto,Účty Frozen aľ
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js,Process Day Book Data,Zpracovat data denní knihy
DocType: SMS Log,Sent On,Poslán na
apps/erpnext/erpnext/public/js/call_popup/call_popup.js,Incoming call from {0},Příchozí hovor od {0}
apps/erpnext/erpnext/stock/doctype/item/item.py,Attribute {0} selected multiple times in Attributes Table,Atribut {0} vybraný několikrát v atributech tabulce
DocType: HR Settings,Employee record is created using selected field. ,Záznam Zaměstnanec je vytvořena pomocí vybrané pole.
DocType: Sales Order,Not Applicable,Nehodí se
DocType: Amazon MWS Settings,UK,Spojené království
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,Opening Invoice Item,Otevření položky faktury
DocType: Request for Quotation Item,Required Date,Požadovaná data
DocType: Accounts Settings,Billing Address,Fakturační adresa
DocType: Bank Statement Settings,Statement Headers,Záhlaví prohlášení
DocType: Travel Request,Costing,Rozpočet
DocType: Tax Rule,Billing County,fakturace County
DocType: Purchase Taxes and Charges,"If checked, the tax amount will be considered as already included in the Print Rate / Print Amount","Je-li zaškrtnuto, bude částka daně považovat za již zahrnuty v tisku Rate / Tisk Částka"
DocType: Request for Quotation,Message for Supplier,Zpráva pro dodavatele
DocType: BOM,Work Order,Zakázka
DocType: Sales Invoice,Total Qty,Celkem Množství
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian2 Email ID,ID e-mailu Guardian2
DocType: Item,Show in Website (Variant),Show do webových stránek (Variant)
DocType: Employee,Health Concerns,Zdravotní Obavy
DocType: Payroll Entry,Select Payroll Period,Vyberte mzdové
DocType: Purchase Invoice,Unpaid,Nezaplacený
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js,Reserved for sale,Vyhrazeno pro prodej
DocType: Packing Slip,From Package No.,Od č balíčku
apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py,Row #{0}: Payment document is required to complete the transaction,Řádek # {0}: K dokončení transakce je vyžadován platební doklad
DocType: Item Attribute,To Range,K Rozsah
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Securities and Deposits,Cenné papíry a vklady
apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py,"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method","Metoda oceňování nelze změnit, neboť existují transakce proti některým položkám, které nemají vlastní metodu oceňování"
DocType: Student Report Generation Tool,Attended by Parents,Zúčastnili se rodiče
apps/erpnext/erpnext/hr/doctype/shift_assignment/shift_assignment.py,Employee {0} has already applied for {1} on {2} : ,Zaměstnanec {0} již požádal o {1} dne {2}:
DocType: Inpatient Record,AB Positive,AB pozitivní
DocType: Job Opening,Description of a Job Opening,Popis jednoho volných pozic
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Pending activities for today,Nevyřízené aktivity pro dnešek
DocType: Salary Structure,Salary Component for timesheet based payroll.,Plat komponent pro mzdy časového rozvrhu.
DocType: Driver,Applicable for external driver,Platí pro externí ovladač
DocType: Sales Order Item,Used for Production Plan,Používá se pro výrobní plán
DocType: BOM,Total Cost (Company Currency),Celkové náklady (měna společnosti)
DocType: Loan,Total Payment,Celková platba
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Cannot cancel transaction for Completed Work Order.,Nelze zrušit transakci pro dokončenou pracovní objednávku.
DocType: Manufacturing Settings,Time Between Operations (in mins),Doba mezi operací (v min)
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,PO already created for all sales order items,PO již vytvořeno pro všechny položky prodejní objednávky
DocType: Healthcare Service Unit,Occupied,Obsazený
DocType: Clinical Procedure,Consumables,Spotřební materiál
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Include Default Book Entries,Zahrnout výchozí položky knihy
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} {1} is cancelled so the action cannot be completed,"{0} {1} je zrušena, takže akce nemůže být dokončena"
apps/erpnext/erpnext/manufacturing/doctype/production_plan/production_plan.js,"Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured.","Plánované množství: Množství, pro které byla zvýšena pracovní objednávka, ale čeká na výrobu."
DocType: Customer,Buyer of Goods and Services.,Kupující zboží a služeb.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,jsou vyžadovány 'customer_field_value' a 'timestamp'.
DocType: Journal Entry,Accounts Payable,Účty za úplatu
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,"Část {0} nastavená v této žádosti o platbu se liší od vypočtené částky všech platebních plánů: {1}. Před odesláním dokumentu se ujistěte, že je to správné."
DocType: Patient,Allergies,Alergie
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,Vybrané kusovníky nejsou stejné položky
apps/erpnext/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py,Cannot set the field <b>{0}</b> for copying in variants,Nelze nastavit pole <b>{0}</b> pro kopírování ve variantách
apps/erpnext/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js,Change Item Code,Změnit kód položky
DocType: Supplier Scorecard Standing,Notify Other,Upozornit ostatní
DocType: Vital Signs,Blood Pressure (systolic),Krevní tlak (systolický)
apps/erpnext/erpnext/controllers/buying_controller.py,{0} {1} is {2},{0} {1} je {2}
DocType: Item Price,Valid Upto,Valid aľ
DocType: Leave Type,Expire Carry Forwarded Leaves (Days),Vyprší doručené listy (dny)
DocType: Training Event,Workshop,Dílna
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Upozornění na nákupní objednávky
apps/erpnext/erpnext/utilities/user_progress.py,List a few of your customers. They could be organizations or individuals.,Seznam několik svých zákazníků. Ty by mohly být organizace nebo jednotlivci.
DocType: Employee Tax Exemption Proof Submission,Rented From Date,Pronajato od data
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Enough Parts to Build,Dost Části vybudovat
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js,Please save first,Nejprve prosím uložte
DocType: POS Profile User,POS Profile User,Uživatel profilu POS
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Row {0}: Depreciation Start Date is required,Řádek {0}: Je vyžadován počáteční datum odpisování
DocType: Purchase Invoice Item,Service Start Date,Datum zahájení služby
DocType: Subscription Invoice,Subscription Invoice,Předplatné faktura
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Direct Income,Přímý příjmů
DocType: Patient Appointment,Date TIme,Čas schůzky
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py,"Can not filter based on Account, if grouped by Account","Nelze filtrovat na základě účtu, pokud seskupeny podle účtu"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Administrative Officer,Správní ředitel
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,Vyberte možnost Kurz
DocType: Codification Table,Codification Table,Kodifikační tabulka
DocType: Timesheet Detail,Hrs,hod
apps/erpnext/erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js,Changes in {0},Změny v {0}
DocType: Employee Skill,Employee Skill,Dovednost zaměstnanců
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Difference Account,Rozdíl účtu
DocType: Pricing Rule,Discount on Other Item,Sleva na další položku
DocType: Purchase Invoice,Supplier GSTIN,Dodavatel GSTIN
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.js,View Form,Zobrazit formulář
DocType: Work Order,Additional Operating Cost,Další provozní náklady
DocType: Lab Test Template,Lab Routine,Lab Rutine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Cosmetics,Kosmetika
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py,Please select Completion Date for Completed Asset Maintenance Log,Zvolte datum dokončení dokončeného protokolu údržby aktiv
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} is not the default supplier for any items.,{0} není výchozím dodavatelem pro žádné položky.
apps/erpnext/erpnext/stock/doctype/item/item.py,"To merge, following properties must be same for both items","Chcete-li sloučit, tyto vlastnosti musí být stejné pro obě položky"
DocType: Supplier,Block Supplier,Zablokujte dodavatele
DocType: Shipping Rule,Net Weight,Hmotnost
DocType: Job Opening,Planned number of Positions,Plánovaný počet pozic
DocType: Employee,Emergency Phone,Nouzový telefon
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,{0} {1} does not exist.,{0} {1} neexistuje.
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py,Buy,Koupit
,Serial No Warranty Expiry,Pořadové č záruční lhůty
DocType: Sales Invoice,Offline POS Name,Offline POS Name
DocType: Task,Dependencies,Závislosti
apps/erpnext/erpnext/utilities/user_progress.py,Student Application,Studentská aplikace
DocType: Bank Statement Transaction Payment Item,Payment Reference,Odkaz na platby
DocType: Supplier,Hold Type,Typ zadržení
apps/erpnext/erpnext/education/doctype/grading_scale/grading_scale.py,Please define grade for Threshold 0%,Zadejte prosím stupeň pro Threshold 0%
DocType: Bank Statement Transaction Payment Item,Bank Statement Transaction Payment Item,Položka platební transakce bankovního účtu
DocType: Sales Order,To Deliver,Dodat
DocType: Purchase Invoice Item,Item,Položka
apps/erpnext/erpnext/healthcare/setup.py,High Sensitivity,Vysoká citlivost
apps/erpnext/erpnext/config/non_profit.py,Volunteer Type information.,Informace o typu dobrovolníka.
DocType: Cash Flow Mapping Template,Cash Flow Mapping Template,Šablona mapování peněžních toků
DocType: Travel Request,Costing Details,Kalkulovat podrobnosti
apps/erpnext/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js,Show Return Entries,Zobrazit položky návratu
apps/erpnext/erpnext/accounts/page/pos/pos.js,Serial no item cannot be a fraction,Sériové žádná položka nemůže být zlomkem
DocType: Journal Entry,Difference (Dr - Cr),Rozdíl (Dr - Cr)
DocType: Bank Guarantee,Providing,Poskytování
DocType: Account,Profit and Loss,Zisky a ztráty
DocType: Tally Migration,Tally Migration,Tally Migration
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js,"Not permitted, configure Lab Test Template as required","Není povoleno, podle potřeby nastavte šablonu testování laboratoře"
DocType: Patient,Risk Factors,Rizikové faktory
DocType: Patient,Occupational Hazards and Environmental Factors,Pracovní nebezpečí a environmentální faktory
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Stock Entries already created for Work Order ,Zápisy již vytvořené pro pracovní objednávku
apps/erpnext/erpnext/templates/pages/cart.html,See past orders,Zobrazit minulé objednávky
apps/erpnext/erpnext/public/js/hub/pages/Selling.vue,{0} conversations,{0} konverzací
DocType: Vital Signs,Respiratory rate,Dechová frekvence
apps/erpnext/erpnext/config/help.py,Managing Subcontracting,Správa Subdodávky
DocType: Vital Signs,Body Temperature,Tělesná teplota
DocType: Project,Project will be accessible on the website to these users,Projekt bude k dispozici na webových stránkách k těmto uživatelům
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},"Nelze zrušit {0} {1}, protože sériové číslo {2} nepatří do skladu {3}"
DocType: Detected Disease,Disease,Choroba
DocType: Company,Default Deferred Expense Account,Výchozí účet odložených výdajů
apps/erpnext/erpnext/config/projects.py,Define Project type.,Definujte typ projektu.
DocType: Supplier Scorecard,Weighting Function,Funkce vážení
DocType: Employee Tax Exemption Proof Submission,Total Actual Amount,Celková skutečná částka
DocType: Healthcare Practitioner,OP Consulting Charge,Konzultační poplatek OP
apps/erpnext/erpnext/utilities/user_progress.py,Setup your ,Nastavte si
DocType: Student Report Generation Tool,Show Marks,Zobrazit značky
DocType: Support Settings,Get Latest Query,Získejte nejnovější dotaz
DocType: Quotation,Rate at which Price list currency is converted to company's base currency,"Sazba, za kterou je ceníková měna převedena na základní měnu společnosti"
apps/erpnext/erpnext/setup/doctype/company/company.py,Account {0} does not belong to company: {1},Účet {0} nepatří k firmě: {1}
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation already used for another company,Zkratka již byla použita pro jinou společnost
DocType: Selling Settings,Default Customer Group,Výchozí Customer Group
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Payment Tems,Platební tems
DocType: Employee,IFSC Code,Kód IFSC
DocType: Global Defaults,"If disable, 'Rounded Total' field will not be visible in any transaction","Je-li zakázat, ""zaokrouhlí celková"" pole nebude viditelný v jakékoli transakce"
DocType: BOM,Operating Cost,Provozní náklady
DocType: Crop,Produced Items,Vyrobené položky
DocType: Bank Statement Transaction Entry,Match Transaction to Invoices,Shoda transakce na faktury
apps/erpnext/erpnext/erpnext_integrations/exotel_integration.py,Error in Exotel incoming call,Chyba při příchozím hovoru Exotel
DocType: Sales Order Item,Gross Profit,Hrubý Zisk
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Unblock Invoice,Odblokovat fakturu
apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py,Increment cannot be 0,Přírůstek nemůže být 0
DocType: Company,Delete Company Transactions,Smazat transakcí Company
DocType: Production Plan Item,Quantity and Description,Množství a popis
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,Reference No and Reference Date is mandatory for Bank transaction,Referenční číslo a referenční datum je povinný pro bankovní transakce
DocType: Purchase Receipt,Add / Edit Taxes and Charges,Přidat / Upravit daní a poplatků
DocType: Payment Entry Reference,Supplier Invoice No,Dodavatelské faktury č
DocType: Territory,For reference,Pro srovnání
DocType: Healthcare Settings,Appointment Confirmation,Potvrzení jmenování
DocType: Inpatient Record,HLC-INP-.YYYY.-,HLC-INP-.RRRR.-
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,"Cannot delete Serial No {0}, as it is used in stock transactions","Nelze odstranit Pořadové číslo {0}, který se používá na skladě transakcích"
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Closing (Cr),Uzavření (Cr)
DocType: Purchase Invoice,Registered Composition,Registrované složení
apps/erpnext/erpnext/hr/notification/training_feedback/training_feedback.html,Hello,Ahoj
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js,Move Item,Přemístit položku
DocType: Employee Incentive,Incentive Amount,Část pobídky
,Employee Leave Balance Summary,Shrnutí zůstatku zaměstnanců
DocType: Serial No,Warranty Period (Days),Záruční doba (dny)