diff --git a/frappe/__init__.py b/frappe/__init__.py
index 3d7e8fb0a4..f112c44589 100644
--- a/frappe/__init__.py
+++ b/frappe/__init__.py
@@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template
-__version__ = '10.0.3'
+__version__ = '10.0.4'
__title__ = "Frappe Framework"
local = Local()
diff --git a/frappe/core/doctype/data_import/importer.py b/frappe/core/doctype/data_import/importer.py
index 19d88b7df5..f78aa1792e 100644
--- a/frappe/core/doctype/data_import/importer.py
+++ b/frappe/core/doctype/data_import/importer.py
@@ -201,19 +201,20 @@ def upload(rows = None, submit_after_import=None, ignore_encoding_errors=False,
def validate_naming(doc):
autoname = frappe.get_meta(doctype).autoname
- if ".#" in autoname or "hash" in autoname:
- autoname = ""
- elif autoname[0:5] == 'field':
- autoname = autoname[6:]
- elif autoname=='naming_series:':
- autoname = 'naming_series'
- else:
- return True
+ if autoname:
+ if ".#" in autoname or "hash" in autoname:
+ autoname = ""
+ elif autoname[0:5] == 'field':
+ autoname = autoname[6:]
+ elif autoname=='naming_series:':
+ autoname = 'naming_series'
+ else:
+ return True
- if (autoname and autoname not in doc) or (autoname and not doc[autoname]):
- from frappe.model.base_document import get_controller
- if not hasattr(get_controller(doctype), "autoname"):
- frappe.throw(_("{0} is a mandatory field".format(autoname)))
+ if (autoname not in doc) or (not doc[autoname]):
+ from frappe.model.base_document import get_controller
+ if not hasattr(get_controller(doctype), "autoname"):
+ frappe.throw(_("{0} is a mandatory field".format(autoname)))
return True
users = frappe.db.sql_list("select name from tabUser")
diff --git a/frappe/translations/af.csv b/frappe/translations/af.csv
index 8c3833a048..941ca446fe 100644
--- a/frappe/translations/af.csv
+++ b/frappe/translations/af.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","'N Nuwe taak, {0}, is aan jou toegewys deur {1}. {2}"
DocType: Email Queue,Email Queue records.,E-pos waglys rekords.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Post
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Kies asseblief Party-tipe eerste
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Kies asseblief Party-tipe eerste
DocType: Address,Punjab,Punjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Hernoem baie items deur 'n .csv-lêer op te laai.
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Hernoem baie items deur 'n .csv-lêer op te laai.
DocType: Workflow State,pause,breek
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,U mag nie toegang tot hierdie bladsy kry nie.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.
Guidelines to install ldap dependancies and python package,Lyk dat ldap nie op die stelsel geïnstalleer is nie.
Riglyne om ldap-afhanklikes en python-pakkette te installeer
@@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook gebruikersnaam
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Let wel: Meervoudige sessies sal toegelaat word in die geval van 'n mobiele toestel
apps/frappe/frappe/core/doctype/user/user.py +664,Enabled email inbox for user {users},Aktiveer e-pos inkassie vir gebruiker {gebruikers}
apps/frappe/frappe/email/queue.py +249,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan nie hierdie e-pos stuur nie. U het die stuurlimiet van {0} e-posse vir hierdie maand gekruis.
-apps/frappe/frappe/public/js/legacy/form.js +761,Permanently Submit {0}?,Permanent Dien {0} in?
+apps/frappe/frappe/public/js/legacy/form.js +765,Permanently Submit {0}?,Permanent Dien {0} in?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Laai lêer rugsteun af
DocType: Address,County,County
DocType: Workflow,If Checked workflow status will not override status in list view,As gekontroleerde werkvloeistatus nie status in lysvertoning ignoreer nie
@@ -26,9 +26,11 @@ apps/frappe/frappe/utils/file_manager.py +32,Please select a file or url,Kies as
apps/frappe/frappe/public/js/frappe/views/treeview.js +86,{0} Tree,{0} Boom
DocType: User,User Emails,Gebruiker e-posse
DocType: User,Username,Gebruikersnaam
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Import Zip,Invoer zip
apps/frappe/frappe/model/base_document.py +553,Value too big,Waarde te groot
DocType: DocField,DocField,DocField
DocType: GSuite Settings,Run Script Test,Doen Skriftoets
+DocType: Data Import,Total Rows,Totale Rye
DocType: Contact,Department,Departement
DocType: DocField,Options,opsies
apps/frappe/frappe/client.py +95,Cannot edit standard fields,Kan nie standaard velde wysig nie
@@ -38,25 +40,24 @@ DocType: Workflow,Document States,Dokument State
apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not find what you were looking for.,Jammer! Ek kon nie vind waarvoor jy gesoek het nie.
DocType: Data Migration Run,Logs,Logs
DocType: Custom DocPerm,This role update User Permissions for a user,Hierdie rol werk gebruikers toestemmings op vir 'n gebruiker
-apps/frappe/frappe/public/js/frappe/model/model.js +512,Rename {0},Hernoem {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +522,Rename {0},Hernoem {0}
DocType: Workflow State,zoom-out,zoom-out
apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan nie {0} oopmaak as sy instansie oop is nie
-apps/frappe/frappe/model/document.py +1066,Table {0} cannot be empty,Tabel {0} kan nie leeg wees nie
+apps/frappe/frappe/model/document.py +1072,Table {0} cannot be empty,Tabel {0} kan nie leeg wees nie
DocType: SMS Parameter,Parameter,parameter
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +854,With Ledgers,Met grootboeke
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker
-apps/frappe/frappe/public/js/frappe/views/image/image_view.js +24,Images,beelde
-DocType: Communication,Reference Owner,Verwysings Eienaar
+apps/frappe/frappe/public/js/frappe/views/image/image_view.js +10,Images,beelde
+DocType: Activity Log,Reference Owner,Verwysings Eienaar
DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Kleinste sirkulerende breuk eenheid (munt). Vir bv. 1 sent vir USD en dit moet ingeskryf word as 0.01
DocType: Social Login Keys,GitHub,GitHub
apps/frappe/frappe/model/base_document.py +547,"{0}, Row {1}","{0}, ry {1}"
apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Gee asseblief 'n volle naam.
-apps/frappe/frappe/model/document.py +1040,Beginning with,Begin met
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +53,Data Import Template,Data Invoer Sjabloon
-apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Ouer
+apps/frappe/frappe/model/document.py +1046,Beginning with,Begin met
+apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Data Invoer Sjabloon
+apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Ouer
DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","As dit geaktiveer is, sal die wagwoord sterkte afgedwing word op grond van die minimum wagwoord telling waarde. 'N Waarde van 2 is medium sterk en 4 is baie sterk."
DocType: About Us Settings,"""Team Members"" or ""Management""","Spanlede" of "Bestuur"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +464,Default for 'Check' type of field must be either '0' or '1',Standaard vir 'Check' tipe veld moet '0' of '1' wees.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for 'Check' type of field must be either '0' or '1',Standaard vir 'Check' tipe veld moet '0' of '1' wees.
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,gister
DocType: Contact,Designation,aanwysing
DocType: Test Runner,Test Runner,Toets hardloper
@@ -72,16 +73,15 @@ DocType: DocType,Is Published Field,Is gepubliseerde veld
DocType: Email Group,Email Group,E-posgroep
DocType: Note,Seen By,Gesien deur
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +17,Add Multiple,Voeg meerdere by
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Not Like,Nie soos
+apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +11,Not Like,Nie soos
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Stel die vertoningsetiket vir die veld
-apps/frappe/frappe/model/document.py +1057,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet {1} {2} wees
-apps/frappe/frappe/config/setup.py +223,"Change field properties (hide, readonly, permission etc.)","Verander veld eienskappe (versteek, lees, toestemming ens)"
+apps/frappe/frappe/model/document.py +1063,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet {1} {2} wees
+apps/frappe/frappe/config/setup.py +230,"Change field properties (hide, readonly, permission etc.)","Verander veld eienskappe (versteek, lees, toestemming ens)"
apps/frappe/frappe/integrations/oauth2.py +108,Define Frappe Server URL in Social Login Keys,Definieer Frappe-bediener-URL in die sosiale aanmeld sleutels
DocType: Workflow State,lock,sluit
apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Stellings vir Kontak Ons Page.
-apps/frappe/frappe/core/doctype/user/user.py +888,Administrator Logged In,Administrateur ingeteken
+apps/frappe/frappe/core/doctype/user/user.py +890,Administrator Logged In,Administrateur ingeteken
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakopsies, soos "Verkoopsvraag, Ondersteuningsvraag" ens. Elk op 'n nuwe reël of geskei deur kommas."
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Laai af
DocType: Data Migration Run,Insert,insetsel
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Kies {0}
DocType: DocField,Color,Kleur
@@ -90,17 +90,15 @@ DocType: Data Migration Run,Log,Meld
DocType: Workflow State,indent-right,streepje-reg
DocType: Has Role,Has Role,Het Rol
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tyd in sekondes om QR-kode prent op bediener te behou. Min: 240
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +20,Invalid Email Account,Ongeldige e-pos rekening
apps/frappe/frappe/public/js/frappe/ui/upload.html +12,Web Link,Web Link
DocType: Deleted Document,Restored,herstel
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,1 minute ago,1 minuut gelede
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +46,"Recommended bulk editing records via import, or understanding the import format.","Aanbevole massabewerkingsrekords via invoer, of verstaan die invoerformaat."
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +36,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Afgesien van Stelselbestuurder, kan rolle met Set User Permissions reg permitte vir ander gebruikers vir daardie dokumenttipe stel."
DocType: Company History,Company History,Maatskappygeskiedenis
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +19,Reset,herstel
DocType: Workflow State,volume-up,volume-up
-apps/frappe/frappe/core/page/data_import_tool/importer.py +60,Only allowed {0} rows in one import,Slegs toegelaat {0} rye in een invoer
apps/frappe/frappe/config/integrations.py +83,Webhooks calling API requests into web apps,Webhooks roep API-versoeke in webprogramme
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To import or update records, you must first download the template for importing.","Om rekords te invoer of by te werk, moet u eers die sjabloon aflaai vir invoer."
DocType: DocType,Default Print Format,Standaarddrukformaat
DocType: Workflow State,Tags,Tags
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Geen: Einde van Workflow
@@ -116,7 +114,7 @@ apps/frappe/frappe/utils/password_strength.py +104,"Repeats like ""abcabcabc"" a
apps/frappe/frappe/templates/emails/administrator_logged_in.html +3,"If you think this is unauthorized, please change the Administrator password.","As u dink dat dit ongemagtig is, verander asseblief die Administrateur wagwoord."
apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} is verpligtend
DocType: Workflow State,eject,verwyder
-apps/frappe/frappe/public/js/legacy/clientscriptAPI.js +290,Field {0} not found.,Veld {0} nie gevind nie.
+apps/frappe/frappe/public/js/legacy/client_script_helpers.js +290,Field {0} not found.,Veld {0} nie gevind nie.
DocType: Standard Reply,Owner,Eienaar
DocType: Communication,Visit,Besoek
DocType: LDAP Settings,LDAP Search String,LDAP soekstring
@@ -124,10 +122,12 @@ DocType: Translation,Translation,vertaling
apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installeer
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mnr
DocType: Custom Script,Client,kliënt
-apps/frappe/frappe/public/js/legacy/form.js +468,This form has been modified after you have loaded it,Hierdie vorm is verander nadat jy dit gelaai het
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +153,Select Column,Kies Kolom
+apps/frappe/frappe/public/js/legacy/form.js +472,This form has been modified after you have loaded it,Hierdie vorm is verander nadat jy dit gelaai het
DocType: User Permission for Page and Report,User Permission for Page and Report,Gebruiker Toestemming vir bladsy en verslag
DocType: Address,Himachal Pradesh,Himachal Pradesh
DocType: System Settings,"If not set, the currency precision will depend on number format","Indien nie ingestel nie, sal die geldeenheidsprecisie afhang van die nommerformaat"
+DocType: Data Import,Import Log,Invoer Log
apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Voeg beeldskyfies in webbladsye in.
apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,stuur
DocType: Workflow Action,Workflow Action Name,Werkstroom Aksie Naam
@@ -138,18 +138,18 @@ apps/frappe/frappe/public/js/frappe/form/save.js +146,"Mandatory fields required
apps/frappe/frappe/utils/password_strength.py +192,Capitalization doesn't help very much.,Kapitalisering help nie baie nie.
DocType: Error Snapshot,Friendly Title,Vriendelike Titel
DocType: Newsletter,Email Sent?,E-pos is gestuur?
-DocType: Authentication Log,Authentication Log,Verifikasie log
apps/frappe/frappe/desk/form/save.py +50,Did not cancel,Het nie kanselleer nie
DocType: Workflow State,plus,plus
apps/frappe/frappe/integrations/oauth2.py +118,Logged in as Guest or Administrator,Aangemeld as Gaste of Administrateur
DocType: Email Account,UNSEEN,ONGEZIENE
-apps/frappe/frappe/config/desktop.py +19,File Manager,Lêer bestuurder
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +34,File Manager,Lêer bestuurder
DocType: OAuth Bearer Token,Refresh Token,Refresh Token
DocType: Address,Goa,Goa
DocType: Webhook,Doc Event,Doc Event
apps/frappe/frappe/public/js/frappe/misc/user.js +61,You,jy
DocType: Website Theme,lowercase,klein
DocType: Print Format,Helvetica,helvetica
+apps/frappe/frappe/public/js/frappe/list/list_view.js +741,Cannot delete {0},Kan nie {0} uitvee nie
DocType: Address,Jharkhand,Jharkhand
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Nuusbrief is reeds gestuur
apps/frappe/frappe/twofactor.py +124,"Login session expired, refresh page to retry","Inteken sessie het verval, verfris bladsy om weer te probeer"
@@ -159,19 +159,18 @@ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_
DocType: Email Unsubscribe,Email Unsubscribe,E-pos Uitschrijven
DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Kies 'n beeld van ongeveer 150px breedte met 'n deursigtige agtergrond vir die beste resultate.
apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Derdeparty-programme
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +391,The first user will become the System Manager (you can change this later).,Die eerste gebruiker sal die stelselbestuurder word (jy kan dit later verander).
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,The first user will become the System Manager (you can change this later).,Die eerste gebruiker sal die stelselbestuurder word (jy kan dit later verander).
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType moet Submitterable wees vir die gekose Doc Event
,App Installer,App Installer
DocType: Workflow State,circle-arrow-up,sirkel-pyl-up
DocType: Email Domain,Email Domain,E-pos Domein
DocType: Workflow State,italic,italic
apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Vir almal
-apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Import without Create,{0}: Kan nie invoer sonder skep instel nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +728,{0}: Cannot set Import without Create,{0}: Kan nie invoer sonder skep instel nie
DocType: SMS Settings,Enter url parameter for message,Voer die URL-parameter in vir die boodskap
apps/frappe/frappe/templates/emails/auto_email_report.html +46,View report in your browser,Bekyk verslag in jou blaaier
apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Gebeurtenis en ander kalenders.
apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle velde is nodig om die kommentaar in te dien.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +855,Drag to sort columns,Sleep om kolomme te sorteer
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Breedtes kan in px of% gestel word.
apps/frappe/frappe/public/js/frappe/form/print.js +101,Start,begin
DocType: Contact,First Name,Eerste naam
@@ -180,15 +179,16 @@ DocType: Portal Settings,Standard Sidebar Menu,Standaard Zijbalk Menu
apps/frappe/frappe/core/doctype/file/file.py +173,Cannot delete Home and Attachments folders,Kan nie Huis- en Bylae-dopgehou verwyder nie
apps/frappe/frappe/config/desk.py +19,Files,lêers
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Toestemmings word toegepas op gebruikers op grond van watter rolle hulle toegewys word.
-apps/frappe/frappe/public/js/frappe/views/communication.js +478,You are not allowed to send emails related to this document,U mag nie e-posse met betrekking tot hierdie dokument stuur nie
+apps/frappe/frappe/public/js/frappe/views/communication.js +480,You are not allowed to send emails related to this document,U mag nie e-posse met betrekking tot hierdie dokument stuur nie
apps/frappe/frappe/model/db_query.py +514,Please select atleast 1 column from {0} to sort/group,Kies asseblief ten minste 1 kolom van {0} om te sorteer / groepeer
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kontroleer dit as jy jou betaling met die Sandbox API toets
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,U mag nie 'n standaard webwerf-tema uitvee nie
+DocType: Data Import,Log Details,Log besonderhede
DocType: Feedback Trigger,Example,voorbeeld
DocType: Webhook Header,Webhook Header,Webhook Header
DocType: Workflow State,gift,geskenk
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd
-apps/frappe/frappe/core/doctype/communication/email.py +282,Unable to find attachment {0},Kan nie aanhangsel {0} vind nie
+apps/frappe/frappe/core/doctype/communication/email.py +284,Unable to find attachment {0},Kan nie aanhangsel {0} vind nie
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +228,Assign a permission level to the field.,Ken 'n toestemmingsvlak toe aan die veld.
apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,Cannot Remove,Kan nie verwyder nie
apps/frappe/frappe/public/js/frappe/request.js +87,The resource you are looking for is not available,"Die hulpbron wat jy soek, is nie beskikbaar nie"
@@ -205,23 +205,24 @@ DocType: Workflow State,chevron-up,Chevron-up
DocType: DocType,Allow Guest to View,Laat gas toe om te sien
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,dokumentasie
DocType: Webhook,on_change,on_change
-apps/frappe/frappe/public/js/frappe/list/list_view.js +863,Delete {0} items permanently?,Vee {0} items permanent uit?
+apps/frappe/frappe/public/js/frappe/list/list_view.js +727,Delete {0} items permanently?,Vee {0} items permanent uit?
apps/frappe/frappe/core/doctype/user/user.py +101,Not Allowed,Nie toegelaat nie
DocType: DocShare,Internal record of document shares,Interne rekord van dokument aandele
DocType: Workflow State,Comment,kommentaar
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",U kan die ingediende dokumente verander deur hulle te kanselleer en dan te wysig.
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +23,Invalid module path,Ongeldige module pad
+DocType: Data Import,Update records,Dateer rekords op
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +22,Invalid module path,Ongeldige module pad
DocType: DocField,Display,vertoning
DocType: Email Group,Total Subscribers,Totale inskrywers
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","As 'n rol nie toegang op vlak 0 het nie, is hoër vlakke betekenisloos."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +739,Save As,Stoor as
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +569,Save As,Stoor as
DocType: Communication,Seen,gesien
apps/frappe/frappe/public/js/frappe/form/layout.js +147,Show more details,Wys meer besonderhede
DocType: System Settings,Run scheduled jobs only if checked,Begin slegs geskeduleerde werk as dit nagegaan word
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Sal slegs gewys word as seksieopskrifte aangeskakel is
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Argief
apps/frappe/frappe/public/js/frappe/socketio_client.js +386,File Upload,Lêeroplaai
-DocType: Communication,Message,Boodskap
+DocType: Activity Log,Message,Boodskap
DocType: Communication,Rating,gradering
DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Druk Breedte van die veld, as die veld 'n kolom in 'n tabel is"
DocType: Dropbox Settings,Dropbox Access Key,Dropbox toegang sleutel
@@ -233,6 +234,7 @@ apps/frappe/frappe/templates/includes/login/login.js +39,Valid email and name re
DocType: DocType,Hide Heading,Versteek Opskrif
DocType: Address,Current,Huidige
apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Groepe DocTypes
+apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Google Maps integrasie
DocType: Auto Email Report,XLSX,XLSX
DocType: Workflow State,remove-circle,verwyder-sirkel
DocType: Help Article,Beginner,Beginner
@@ -242,19 +244,20 @@ apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,Nie
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,Herstel na verstek
DocType: Workflow,Transition Rules,Oorgangsreëls
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,voorbeeld:
+DocType: Google Maps,Google Maps,Google kaarte
DocType: Workflow,Defines workflow states and rules for a document.,Definieer werkstroom state en reëls vir 'n dokument.
DocType: Workflow State,Filter,filter
apps/frappe/frappe/model/db_schema.py +569,Fieldname {0} cannot have special characters like {1},Veldnaam {0} kan nie spesiale karakters soos {1} hê nie
-apps/frappe/frappe/config/setup.py +119,Update many values at one time.,Dateer baie waardes op een slag.
+apps/frappe/frappe/config/setup.py +126,Update many values at one time.,Dateer baie waardes op een slag.
apps/frappe/frappe/model/document.py +627,Error: Document has been modified after you have opened it,Fout: Dokument is verander nadat u dit oopgemaak het
-apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ingeteken: {1}
+apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} ingeteken: {1}
DocType: Address,West Bengal,Wes Bengaal
-apps/frappe/frappe/core/doctype/doctype/doctype.py +747,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Toewys indien indien nie Submittable
+apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Toewys indien indien nie Submittable
DocType: Social Login Keys,Facebook,Facebook
apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Gefiltreer met "{0}"
DocType: Salutation,Administrator,administrateur
apps/frappe/frappe/desk/page/chat/chat.js +54,Message from {0},Boodskap van {0}
-DocType: Communication,Closed,gesluit
+DocType: Activity Log,Closed,gesluit
DocType: Blog Settings,Blog Title,Blog Titel
apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standaard rolle kan nie gedeaktiveer word nie
DocType: Address,Mizoram,Mizoram
@@ -263,7 +266,7 @@ apps/frappe/frappe/model/db_query.py +505,Cannot use sub-query in order by,Kan n
DocType: Web Form,Button Help,Knoppie Hulp
DocType: Kanban Board Column,purple,pers
DocType: About Us Settings,Team Members,Spanlede
-apps/frappe/frappe/public/js/frappe/upload.js +229,Please attach a file or set a URL,Heg asseblief 'n lêer aan of stel 'n URL in
+apps/frappe/frappe/public/js/frappe/upload.js +246,Please attach a file or set a URL,Heg asseblief 'n lêer aan of stel 'n URL in
DocType: Address Template,System Manager,Stelselbestuurder
DocType: Custom DocPerm,Permissions,permissions
DocType: Dropbox Settings,Allow Dropbox Access,Laat Dropbox-toegang toe
@@ -272,22 +275,19 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL-voorwaardes.
DocType: User,Get your globally recognized avatar from Gravatar.com,Kry jou wêreldwye erkende avatar van Gravatar.com
apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Jou intekening het op {0} verval. Om te vernuwe, {1}."
DocType: Workflow State,plus-sign,plus-teken
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +25,Setup already complete,Opstelling is reeds voltooi
apps/frappe/frappe/__init__.py +915,App {0} is not installed,Program {0} is nie geïnstalleer nie
DocType: Data Migration Plan,Mappings,afbeeldings
DocType: Workflow State,Refresh,Verfris
DocType: Event,Public,openbare
-apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Niks om te wys nie
+apps/frappe/frappe/public/js/frappe/list/base_list.js +288,Nothing to show,Niks om te wys nie
DocType: System Settings,Enable Two Factor Auth,Aktiveer twee faktore
apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Gekyk deur
DocType: DocField,Print Hide If No Value,Druk verberg as geen waarde
DocType: Kanban Board Column,yellow,geel
-apps/frappe/frappe/core/doctype/doctype/doctype.py +576,Is Published Field must be a valid fieldname,Die gepubliseerde veld moet 'n geldige veldnaam wees
+apps/frappe/frappe/core/doctype/doctype/doctype.py +578,Is Published Field must be a valid fieldname,Die gepubliseerde veld moet 'n geldige veldnaam wees
apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Laai aanhangsel
DocType: Block Module,Block Module,Blok Module
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Sjabloon eksporteer
apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Nuwe waarde
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Geen toestemming om te wysig nie
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Voeg 'n kolom by
apps/frappe/frappe/www/contact.html +34,Your email address,Jou eposadres
DocType: Desktop Icon,Module,module
@@ -302,12 +302,13 @@ DocType: Website Settings,Set Banner from Image,Stel Banner van Beeld
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Global Search
DocType: Email Account,SparkPost,SparkPost
apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},'N Nuwe rekening is vir jou geskep by {0}
-apps/frappe/frappe/templates/includes/login/login.js +188,Instructions Emailed,Instruksies E-pos
-apps/frappe/frappe/public/js/frappe/views/communication.js +467,Enter Email Recipient(s),Voer e-pos ontvanger (s) in
+apps/frappe/frappe/templates/includes/login/login.js +190,Instructions Emailed,Instruksies E-pos
+apps/frappe/frappe/public/js/frappe/views/communication.js +469,Enter Email Recipient(s),Voer e-pos ontvanger (s) in
DocType: Print Format,Verdana,Verdana
DocType: Email Flag Queue,Email Flag Queue,E-pos vlag wachtrij
-apps/frappe/frappe/config/setup.py +191,Stylesheets for Print Formats,Stylvelle vir drukformate
+apps/frappe/frappe/config/setup.py +198,Stylesheets for Print Formats,Stylvelle vir drukformate
apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan nie oop {0} identifiseer nie. Probeer iets anders.
+apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,
No results found for '
,Geen resultate gevind vir '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,U inligting is ingedien apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Gebruiker {0} kan nie uitgevee word nie DocType: System Settings,Currency Precision,Geld Precisie @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Attachment DocType: Communication,Message ID,Boodskap ID DocType: Property Setter,Field Name,Veldnaam apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite is nie gekonfigureer nie. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,of +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,of apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,module naam ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Aanhou DocType: Custom Field,Fieldname,field Name DocType: Workflow State,certificate,sertifikaat DocType: User,Tile,Teël apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Verifieer ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Eerste data kolom moet leeg wees. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Eerste data kolom moet leeg wees. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Wys alle weergawes DocType: Workflow State,Print,Print DocType: User,Restrict IP,Beperk IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Kan nie e-posse stuur nie apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Soek of tik 'n opdrag -DocType: Communication,Timeline Name,Tydlyn Naam +DocType: Activity Log,Timeline Name,Tydlyn Naam DocType: Email Account,e.g. smtp.gmail.com,bv. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Voeg 'n nuwe reël by DocType: Contact,Sales Master Manager,Verkope Meester Bestuurder @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,S DocType: Top Bar Item,Parent Label,Ouer Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Jou navraag is ontvang. Ons sal binnekort terugkom. As u enige addisionele inligting het, beantwoord asseblief hierdie e-pos." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Magtigings word outomaties vertaal na standaardverslae en soektogte. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Login token vereis +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} is 'n verpligte veld +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Login token vereis DocType: Event,Repeat Till,Herhaal tot apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,nuwe apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Stel asseblief die script-URL op Gsuite-instellings in @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Komende Gebeurtenisse vir Vandag DocType: Email Alert Recipient,Email By Document Field,E-pos per dokumentveld DocType: Domain Settings,Domain Settings,Domein instellings -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Lêers grootte: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Lêers grootte: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,opgradering apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Kan nie verbind nie: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,'N Woord op sigself is maklik om te raai. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Breukeenhede apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} van {1} tot {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Merk as Klaar DocType: Communication,Type,tipe -DocType: Authentication Log,Subject,Onderwerp +DocType: Activity Log,Subject,Onderwerp DocType: Web Form,Amount Based On Field,Bedrag gebaseer op veld apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Gebruiker is verpligtend vir Deel DocType: DocField,Hidden,verborge @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Laat onvolledige vorms toe apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} moet eerste gestel word apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Gebruik 'n paar woorde, vermy algemene frases." DocType: Workflow State,plane,vliegtuig -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","As u nuwe rekords oplaai, word "Naming Series" verplig, indien teenwoordig." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","As u nuwe rekords oplaai, word "Naming Series" verplig, indien teenwoordig." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Kry Alerts vir Vandag apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType kan slegs deur Administrateur hernoem word apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},verander waarde van {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","As die gebruiker enige rol nagegaan het, word die gebruiker 'n "System User". "Stelselgebruiker" het toegang tot die lessenaar" DocType: Report,JSON,into apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Gaan asseblief jou e-pos na verifikasie -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Vou kan nie aan die einde van die vorm wees nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Vou kan nie aan die einde van die vorm wees nie DocType: Communication,Bounced,gestuur DocType: Deleted Document,Deleted Name,Naam uitgevee apps/frappe/frappe/config/setup.py +14,System and Website Users,Stelsel- en webwerfgebruikers @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Pull Update DocType: Auto Email Report,No of Rows (Max 500),Aantal Rye (Max 500) DocType: Language,Language Code,Taalkode apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Jou aflaai word gebou, dit kan 'n rukkie neem ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Voeg filter by +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Voeg filter by apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS gestuur na volgende nommers: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Jou gradering: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} en {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} en {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Voeg altyd "Konsep" -opskrif by vir die druk van konsepdokumente DocType: Data Migration Run,Current Mapping Start,Huidige kaarte begin apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,E-pos is gemerk as strooipos DocType: About Us Settings,Website Manager,Webwerf Bestuurder apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Lêeroplaai ontkoppel. Probeer asseblief weer. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,U het gedrukte of gekanselleerde dokumente gekies -apps/frappe/frappe/model/document.py +1180,Document Queued,Dokument wagtend +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,U het gedrukte of gekanselleerde dokumente gekies +apps/frappe/frappe/model/document.py +1186,Document Queued,Dokument wagtend DocType: GSuite Templates,Destination ID,Bestemming ID DocType: Desktop Icon,List,lys -DocType: Communication,Link Name,Skakel Naam -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in ry {1} kan nie versteek en verpligtend wees as standaard nie +DocType: Activity Log,Link Name,Skakel Naam +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in ry {1} kan nie versteek en verpligtend wees as standaard nie DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Ongeldige Wagwoord: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Ongeldige Wagwoord: DocType: Print Settings,Send document web view link in email,Stuur dokumentwebbladsy skakel in e-pos apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Jou terugvoer vir dokument {0} word suksesvol gestoor -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,vorige +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,vorige apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} rye vir {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-geldeenheid. Vir bv. "Cent" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Kies opgelaaide lêer DocType: Letter Head,Check this to make this the default letter head in all prints,Kontroleer hierdie om die standaard letterkop in alle afdrukke te maak DocType: Print Format,Server,bediener -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Nuwe Kanbanraad +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Nuwe Kanbanraad DocType: Desktop Icon,Link,skakel apps/frappe/frappe/utils/file_manager.py +111,No file attached,Geen lêer aangeheg nie DocType: Version,Version,weergawe DocType: User,Fill Screen,Vulskerm -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan nie hierdie boomverslag wys nie, as gevolg van ontbrekende data. Hoogs waarskynlik word dit as gevolg van toestemmings uitgefiltreer." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Kies Lêer +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan nie hierdie boomverslag wys nie, as gevolg van ontbrekende data. Hoogs waarskynlik word dit as gevolg van toestemmings uitgefiltreer." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Oplaai misluk -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Wysig via Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Wysig via Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokument tipe ..., bv. kliënt" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Die kondisie '{0}' is ongeldig DocType: Workflow State,barcode,barcode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Voeg jou eie vertalings by +apps/frappe/frappe/config/setup.py +242,Add your own translations,Voeg jou eie vertalings by DocType: Country,Country Name,Land Naam DocType: About Us Team Member,About Us Team Member,Oor Ons Spanlid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Toestemmings word ingestel op rolle en dokumenttipes (genoem DocTypes) deur regte soos Lees, Skryf, Skep, Skrap, Inskryf, Kanselleer, Verander, Verslag, Invoer, Uitvoer, Druk, E-pos en Gebruiker Toestemmings in te stel." DocType: Event,Wednesday,Woensdag -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Beeldveld moet 'n geldige veldnaam wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Beeldveld moet 'n geldige veldnaam wees DocType: OAuth Client,Token,teken DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (naam) van die entiteit wie se eiendom ingestel moet word apps/frappe/frappe/limits.py +84,"To renew, {0}.","Om te vernuwe, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,Program {0} reeds apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Geen voorskou nie DocType: Workflow State,exclamation-sign,uitroep-teken apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Wys toestemmings -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Tydlyn veld moet 'n skakel of dinamiese skakel wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Tydlyn veld moet 'n skakel of dinamiese skakel wees apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumreeks -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Bladsy {0} van {1} DocType: About Us Settings,Introduce your company to the website visitor.,Stel jou besigheid bekend aan die webwerf besoeker. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","Enkripsiesleutel is ongeldig, gaan asseblief na site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 kommentaar DocType: Email Alert,Days Before,Dae voor DocType: Workflow State,volume-down,volume-down -apps/frappe/frappe/desk/reportview.py +262,No Tags,Geen etikette +apps/frappe/frappe/desk/reportview.py +266,No Tags,Geen etikette DocType: DocType,List View Settings,Lys vertoning instellings DocType: Email Account,Send Notification to,Stuur kennisgewing aan DocType: DocField,Collapsible,opvoubare apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,gered apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Waarmee het jy hulp nodig? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opsies vir kies. Elke opsie op 'n nuwe lyn. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Permanent Kanselleer {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Permanent Kanselleer {0}? DocType: Workflow State,music,musiek apps/frappe/frappe/www/qrcode.html +3,QR Code,QR-kode apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Laaste gewysigde datum DocType: Web Page,Settings,instellings apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Spesifiseer asseblief die doktipe DocType: Print Format,Style Settings,Styl instellings -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet 'n geldige veldnaam wees -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,meer +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet 'n geldige veldnaam wees +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,meer DocType: Contact,Sales Manager,Verkoopsbestuurder -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,hernoem +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,hernoem DocType: Print Format,Format Data,Formateer data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,soos +apps/frappe/frappe/utils/bot.py +91,Like,soos DocType: Customize Form Field,Customize Form Field,Pas vorm veld aan DocType: OAuth Client,Grant Type,Toekenningstipe apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Kyk watter dokumente deur 'n gebruiker leesbaar is apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Noteringsprogram nie toegelaat nie DocType: Deleted Document,Hub Sync ID,Hub-sinkronisasie-ID -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,gebruik% as wildkaart +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,gebruik% as wildkaart apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-pos Domein nie vir hierdie rekening gekonfigureer nie, Skep een?" DocType: User,Reset Password Key,Herstel wagwoord sleutel DocType: Email Account,Enable Auto Reply,Aktiveer Outomatiese Antwoord @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimum Wagwoord telling DocType: DocType,Fields,Velde DocType: System Settings,Your organization name and address for the email footer.,Jou organisasie se naam en adres vir die e-posvoet. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Ouer Tabel +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Ouer Tabel apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup voltooi! apps/frappe/frappe/config/desktop.py +60,Developer,Ontwikkelaar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Geskep @@ -542,7 +543,7 @@ DocType: DocField,Set Only Once,Stel slegs een keer DocType: Email Queue Recipient,Email Queue Recipient,E-pos wachtrij ontvanger DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Gebruikersnaam {0} bestaan reeds -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,"{0}: Kan nie invoer invoer nie, aangesien {1} nie invoerbaar is nie" +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,"{0}: Kan nie invoer invoer nie, aangesien {1} nie invoerbaar is nie" apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Daar is 'n fout in u adres sjabloon {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -551,19 +552,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,hoë DocType: S3 Backup Settings,Secret Access Key,Geheime toegangsleutel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Manlik -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP-geheime is herstel. Herregistrasie sal nodig wees by volgende aanmelding. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP-geheime is herstel. Herregistrasie sal nodig wees by volgende aanmelding. DocType: Communication,From Full Name,Van Volle Naam apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Jy het nie toegang tot Rapporteer nie: {0} DocType: User,Send Welcome Email,Stuur welkom e-pos -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Verwyder filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Verwyder filter DocType: Address,Daman and Diu,Daman en Diu DocType: Address,Personal,persoonlike -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Bulk Hernoem +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Bulk Hernoem DocType: Email Queue,Show as cc,Wys as cc DocType: DocField,Heading,Opskrif DocType: Workflow State,resize-vertical,grootte-vertikale -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Laai DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inleidende inligting vir die Kontak Ons Bladsy DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,duime af @@ -574,7 +573,7 @@ DocType: DocField,In Global Search,In Global Search DocType: Workflow State,indent-left,streepje-links apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,Dit is riskant om hierdie lêer te verwyder: {0}. Kontak asseblief u stelselbestuurder. DocType: Currency,Currency Name,Geld Naam -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,Geen e-posse +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,Geen e-posse DocType: Report,Javascript,Javascript DocType: File,Content Hash,Inhoud Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Stoor die JSON van die laaste bekende weergawes van verskeie geïnstalleerde programme. Dit word gebruik om vrylatingnotas te wys. @@ -588,26 +587,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan nie standaard afdrukformaat hê nie, Gebruik pasvorm" DocType: Report,Query,navraag DocType: DocType,Sort Order,Sorteervolgorde -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'In lys vertoning' nie toegelaat vir tipe {0} in ry {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'In lys vertoning' nie toegelaat vir tipe {0} in ry {1} DocType: Custom Field,Select the label after which you want to insert new field.,Kies die etiket waarna jy nuwe veld wil invoeg. ,Document Share Report,Dokument Deel Verslag DocType: User,Last Login,Laaste Aanmelding -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Veldnaam word benodig in ry {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Veldnaam word benodig in ry {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,kolom DocType: Custom Field,Adds a custom field to a DocType,Voeg 'n pasgemaakte veld by 'n DocType DocType: File,Is Home Folder,Is Tuisblad apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} is nie 'n geldige epos adres nie -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Kies ten minste 1 rekord vir druk +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Kies ten minste 1 rekord vir druk apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Gebruiker '{0}' het reeds die rol '{1}' DocType: System Settings,Two Factor Authentication method,Twee faktor verifikasie metode apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Gedeel met {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,bedank -DocType: Communication,Reference Name,Verwysingsnaam +DocType: Activity Log,Reference Name,Verwysingsnaam apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Kletsondersteuning DocType: Error Snapshot,Exception,uitsondering -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Geen resultate gevind vir '
DocType: Email Account,Use IMAP,Gebruik IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Kan nie versoek aan die Frappe-bediener-URL nie +DocType: Activity Log,Activity Log,Aktiwiteit log DocType: Integration Request,Authorized,gemagtigde DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,"Enkel tipes het slegs een rekord, geen tabelle geassosieer nie. Waardes word gestoor in tabSingles" DocType: System Settings,Enable Password Policy,Aktiveer wagwoordbeleid @@ -615,27 +614,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Lys apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Veldtipe kan nie verander word vir {0} DocType: Workflow,Rules defining transition of state in the workflow.,Reëls wat die oorgang van die staat in die werkstroom definieer. DocType: File,Folder,gids +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Invoer / Uitvoer data van CSV en Excel lêers. DocType: DocField,Index,indeks DocType: Email Group,Newsletter Manager,Nuusbrief Bestuurder apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opsie 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} tot {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} tot {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Teken van fout tydens versoeke. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} is suksesvol by die e-posgroep gevoeg. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,"Moenie opskrifte wat vooraf in die sjabloon ingestel is, wysig nie" +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,"Moenie opskrifte wat vooraf in die sjabloon ingestel is, wysig nie" apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Aanmelding Verifikasiekode van {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Maak lêer (s) privaat of publiek? +DocType: Data Import,Import Status,Invoerstatus +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Maak lêer (s) privaat of publiek? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Geskeduleer om te stuur na {0} DocType: Kanban Board Column,Indicator,aanwyser DocType: DocShare,Everyone,almal DocType: Workflow State,backward,agteruit -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slegs een reël word toegelaat met dieselfde Rol, Vlak en {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slegs een reël word toegelaat met dieselfde Rol, Vlak en {1}" DocType: Email Queue,Add Unsubscribe Link,Voeg uittreksel uit apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nog geen kommentaar. Begin 'n nuwe bespreking. DocType: Workflow State,share,aandeel apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Jou intekening het op {0} verval. Om te hernu, stuur asseblief 'n e-pos aan {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Stel nommersreeks vir transaksies. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Stel nommersreeks vir transaksies. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,"Jy kan nie van iets wat jy geskep het, hou nie" apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","BK, BCC & Standaard Antwoord" DocType: User,Last IP,Laaste IP @@ -645,7 +646,7 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migrasie Connect DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filter rekords gebaseer op Gebruikers Toestemmings gedefinieer vir 'n gebruiker DocType: Note,Notify Users On Every Login,Stel gebruikers in kennis van elke inskrywing DocType: PayPal Settings,API Password,API wagwoord -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Tik die python module of kies connector tipe +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Tik die python module of kies connector tipe apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Veldnaam nie vir Aangepaste veld gestel nie apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Laaste opgedateer deur apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,is nie toegelaat nie. @@ -654,7 +655,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Kan nie lêer uitvee soos dit behoort aan {0} {1} waarvoor u nie toestemmings het nie apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Me DocType: Website Theme,Background Color,Agtergrondkleur -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Daar was foute tydens die stuur van e-pos. Probeer asseblief weer. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Daar was foute tydens die stuur van e-pos. Probeer asseblief weer. DocType: Portal Settings,Portal Settings,Portal instellings DocType: Data Migration Mapping,Mapping,Karteer DocType: Web Page,0 is highest,0 is die hoogste @@ -666,6 +667,7 @@ DocType: Language,Language Name,Taal Naam DocType: Email Group Member,Email Group Member,E-posgroeplid DocType: Email Alert,Value Changed,Waarde verander apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Duplikaat naam {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,weer probeer DocType: Web Form Field,Web Form Field,Web vorm veld apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Versteek veld in Rapport Bouer apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML wysig @@ -673,12 +675,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Winkel DocType: DocField,Button,Button apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} is nou die standaarddrukformaat vir {1} doktipe -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Argiefkolomme +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Argiefkolomme DocType: Email Account,Default Outgoing,Verstek Uitgaande DocType: Workflow State,play,speel apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Klik op die onderstaande skakel om u registrasie te voltooi en stel 'n nuwe wagwoord in apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Het nie bygevoeg nie -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Geen e-pos rekeninge toegeken nie +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Geen e-pos rekeninge toegeken nie DocType: Contact Us Settings,Contact Us Settings,Kontak ons instellings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Soek tans ... DocType: Workflow State,text-width,teks-wydte @@ -691,38 +693,37 @@ DocType: Feedback Trigger,Check Communication,Kontroleer kommunikasie DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Builder-verslae word direk deur die verslagbouer bestuur. Niks om te doen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Kontroleer asseblief jou e-posadres -apps/frappe/frappe/model/document.py +1039,none of,geeneen van +apps/frappe/frappe/model/document.py +1045,none of,geeneen van apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Stuur vir my 'n kopie DocType: Dropbox Settings,App Secret Key,App Geheime Sleutel DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Webwerf apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Gekontroleerde items sal op die lessenaar gewys word -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} kan nie vir enkeltipes gestel word nie -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanbanraad {0} bestaan nie. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} kan nie vir enkeltipes gestel word nie +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanbanraad {0} bestaan nie. +DocType: Data Import,Data Import,Data invoer apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} bekyk tans hierdie dokument DocType: ToDo,Assigned By Full Name,Toegewys deur Volle Naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} opgedateer -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Verslag kan nie vir enkeltipes gestel word nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Verslag kan nie vir enkeltipes gestel word nie apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dae gelede DocType: Email Account,Awaiting Password,Wagwoord wag DocType: Address,Address Line 1,Adres Lyn 1 DocType: Custom DocPerm,Role,Rol apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Instellings ... -apps/frappe/frappe/utils/data.py +459,Cent,sent -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Stel e-pos saam -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","State vir werkstroom (bv. Konsep, Goedgekeur, Kanselleer)." +apps/frappe/frappe/utils/data.py +464,Cent,sent +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,Stel e-pos saam +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","State vir werkstroom (bv. Konsep, Goedgekeur, Kanselleer)." DocType: Print Settings,Allow Print for Draft,Laat Print for draft toe apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Stel Hoeveelheid -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Dien hierdie dokument in om te bevestig +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Dien hierdie dokument in om te bevestig DocType: Contact,Unsubscribed,uitgeteken apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Stel persoonlike rolle vir bladsy en rapporteer apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,gradering: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Kan nie UIDVALIDITY in imap status reaksie vind nie -,Data Import Tool,Data Invoer Gereedskap DocType: Address,Dadra and Nagar Haveli,Dadra en Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Stel asseblief die standaard e-pos rekening op van Setup> Email> Email Account apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Laai lêers op, wag asseblief vir 'n paar sekondes." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Heg jou prentjie aan +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Heg jou prentjie aan apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Rywaardes verander DocType: Workflow State,Stop,stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Skakel na die bladsy wat jy wil oopmaak. Los leeg as jy dit 'n groepouer wil maak. @@ -746,7 +747,7 @@ DocType: Report,Script Report,Skrifverslag DocType: OAuth Authorization Code,Scopes,bestekke DocType: About Us Settings,Company Introduction,Maatskappy Inleiding DocType: DocField,Length,lengte -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Herstel of permanent 'n dokument uitvee. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Herstel of permanent 'n dokument uitvee. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite toets uitgevoer met sukses. GSuite integrasie is korrek opgestel DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -754,17 +755,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,Program {0} verwyder DocType: Custom DocPerm,Apply User Permissions,Pas gebruikertoestemmings toe DocType: User,Modules HTML,Modules HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Ontbrekende waardes word vereis +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Ontbrekende waardes word vereis DocType: DocType,Other Settings,Ander instellings DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Merk as ongelees apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} is nie ingestel nie -DocType: Authentication Log,Operation,operasie +DocType: Activity Log,Operation,operasie DocType: Customize Form,Change Label (via Custom Translation),Verander etiket (via aangepaste vertaling) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Geen toestemming vir {0} {1} {2} DocType: Address,Permanent,permanente apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Let wel: Ander toestemmingsreëls kan ook van toepassing wees apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Nie toegelaat om toegang tot {0} by {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","As dit gekontroleer is, sal rye met geldige data ingevoer word en ongeldige rye sal in 'n nuwe lêer gedumpeer word sodat u later kan invoer." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Bekyk dit in jou blaaier DocType: DocType,Search Fields,Soek velde DocType: System Settings,OTP Issuer Name,OTP Uitreiker Naam @@ -772,7 +775,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Geen dokument gekies nie apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,gebeurtenis -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:",Op {0} het {1} geskryf: +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:",Op {0} het {1} geskryf: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Kan nie standaard veld uitvee nie. Jy kan dit wegsteek as jy wil DocType: Top Bar Item,For top bar,Vir topbalk apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Wag vir u rugsteun. U sal 'n e-pos ontvang met die aflaai skakel @@ -788,35 +791,34 @@ DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,emmer apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Bedienerfout: Gaan asseblief jou bedienerlogboeke of kontak tegniese ondersteuning. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Welkom e-pos gestuur -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Kom ons stel die stelsel voor vir eerste gebruik. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Kom ons stel die stelsel voor vir eerste gebruik. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Gewilde apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Reeds geregistreer DocType: System Settings,Float Precision,Vloot Precision apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Net administrateur kan wysig -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Lêernaam +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Lêernaam DocType: DocType,Editable Grid,Bewerkbare rooster DocType: Property Setter,Property Setter,Eiendom Setter DocType: Web Form,Allow Print,Laat Print toe apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Geen programme geïnstalleer nie apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Merk die veld as verpligtend DocType: Communication,Clicked,gekliek -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} DocType: User,Google User ID,Google-gebruikers-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Geskeduleer om te stuur DocType: DocType,Track Seen,Spoor gesien apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Hierdie metode kan slegs gebruik word om 'n kommentaar te skep DocType: Kanban Board Column,orange,oranje -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Geen {0} gevind -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Voeg gepasmaakte vorms by. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Geen {0} gevind +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Voeg gepasmaakte vorms by. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,hierdie dokument ingedien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Die stelsel bied baie vooraf gedefinieerde rolle. Jy kan nuwe rolle byvoeg om fyner regte te stel. DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,domeine +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,domeine DocType: Blog Category,Blog Category,Blog Kategorie apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Kan nie kaarteer nie omdat die volgende voorwaarde misluk: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Rolle HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Kies eers 'n Brand Image. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,aktiewe @@ -824,9 +826,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Blou apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,Alle aanpassings sal verwyder word. Bevestig asseblief. DocType: Page,Page HTML,Bladsy HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,Verdere nodes kan slegs geskep word onder 'Groep'-tipe nodusse +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,Verdere nodes kan slegs geskep word onder 'Groep'-tipe nodusse DocType: SMS Parameter,Header,kop -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Onbekende kolom: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Onbekende kolom: {0} DocType: Email Alert Recipient,Email By Role,E-pos per rol apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Gebruikers met 'n rol {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Installeer App {0} @@ -849,22 +851,22 @@ DocType: User,Represents a User in the system.,Verteenwoordig 'n gebruiker i DocType: Communication,Label,Etiket apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Die taak {0}, wat jy aan {1} toegewys het, is gesluit." DocType: User,Modules Access,Modules Toegang -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Maak asseblief hierdie venster toe +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Maak asseblief hierdie venster toe DocType: Print Format,Print Format Type,Drukformaat Tipe DocType: Newsletter,A Lead with this Email Address should exist,'N Lood met hierdie e-posadres moet bestaan apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source Aansoeke vir die Web DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","Voeg die naam van 'n "Google Web Font" by, byvoorbeeld "Open Sans"" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Versoek uitgeskakel +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Aktiveer / deaktiveer domeine DocType: Role Permission for Page and Report,Allow Roles,Laat rolle toe DocType: DocType,Hide Toolbar,Versteek nutsbalk DocType: User,Last Active,Laaste Aktief DocType: Email Account,SMTP Settings for outgoing emails,SMTP-instellings vir uitgaande e-posse -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Invoer misluk apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Jou wagwoord is opgedateer. Hier is jou nuwe wagwoord DocType: Email Account,Auto Reply Message,Outo-antwoordboodskap DocType: Feedback Trigger,Condition,toestand -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} uur gelede -apps/frappe/frappe/utils/data.py +574,1 month ago,1 maand gelede +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} uur gelede +apps/frappe/frappe/utils/data.py +586,1 month ago,1 maand gelede DocType: Contact,User ID,Gebruikers-ID DocType: Communication,Sent,gestuur DocType: Address,Kerala,Kerala @@ -894,13 +896,13 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Jou intekening sal môre verval. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Gered! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} is nie 'n geldige heks kleur nie apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Mevrou apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,meester DocType: DocType,User Cannot Create,Gebruiker kan nie skep nie apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Vouer {0} bestaan nie -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,Dropbox toegang is goedgekeur! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,Dropbox toegang is goedgekeur! DocType: Customize Form,Enter Form Type,Vul vormtipe in +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Geen rekords gemerk. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Verwyder veld DocType: User,Send Password Update Notification,Stuur wagwoord update kennisgewing @@ -912,7 +914,7 @@ DocType: Kanban Board Column,Green,groen DocType: Custom DocPerm,Additional Permissions,Bykomende Toestemmings DocType: Email Account,Always use Account's Email Address as Sender,Gebruik altyd rekening se e-posadres as sender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Teken in om kommentaar te lewer -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Begin die invoer van data onder hierdie reël +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Begin die invoer van data onder hierdie reël apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},veranderde waardes vir {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Pas ... @@ -921,7 +923,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,gestremde DocType: Workflow State,eye-close,oog-close DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Verskaffer instellings -apps/frappe/frappe/config/setup.py +257,Applications,aansoeke +apps/frappe/frappe/config/setup.py +264,Applications,aansoeke apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Rapporteer hierdie probleem DocType: Custom Script,Adds a custom script (client or server) to a DocType,Voeg 'n persoonlike skrif (kliënt of bediener) by 'n DocType DocType: Address,City/Town,Stad / Dorp @@ -931,11 +933,10 @@ DocType: Address,Is Your Company Address,Is u maatskappy se adres apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Redigeer tans DocType: Workflow Action,Workflow Action Master,Workflow Action Master DocType: Custom Field,Field Type,Veldtipe -apps/frappe/frappe/utils/data.py +489,only.,enigste. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP-geheime kan slegs deur die Administrateur herstel word. +apps/frappe/frappe/utils/data.py +494,only.,enigste. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP-geheime kan slegs deur die Administrateur herstel word. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,Vermy jare wat met jou geassosieer word. DocType: GSuite Templates,GSuite Templates,GSuite Templates -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Neerdaal apps/frappe/frappe/utils/goal.py +109,Goal,doel apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,Ongeldige posbediener. Regstel asseblief en probeer weer. DocType: DocField,"For Links, enter the DocType as range. @@ -944,10 +945,9 @@ DocType: Workflow State,film,film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Geen toestemming om te lees nie {0} apps/frappe/frappe/config/desktop.py +8,Tools,gereedskap apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Vermy onlangse jare. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Meervoudige wortelknope word nie toegelaat nie. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Meervoudige wortelknope word nie toegelaat nie. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","As dit geaktiveer is, sal gebruikers elke keer in kennis gestel word wanneer hulle inteken. As dit nie geaktiveer is nie, sal gebruikers slegs een keer in kennis gestel word." DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","As gekontroleer, sal gebruikers nie die dialoog Bevestig toegang kry nie." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID-veld is nodig om waardes te wysig met behulp van Rapport. Kies asseblief die ID-veld met die kolom kieser apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,kommentaar apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,bevestig apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Ineenstort alles @@ -967,7 +967,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Stel gebruiker toestemmings DocType: Email Account,Email Account Name,E-pos rekening naam apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Kies Dokumentsoorte -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,Iets het verkeerd gegaan tydens die skep van dropbox-toegangstoken. Kontroleer asseblief die foutlogboek vir meer besonderhede. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,Iets het verkeerd gegaan tydens die skep van dropbox-toegangstoken. Kontroleer asseblief die foutlogboek vir meer besonderhede. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Nuusbriewe aan kontakte, lei." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","bv. "Ondersteuning", "Verkope", "Jerry Yang"" @@ -983,26 +983,24 @@ DocType: User,Facebook User ID,Facebook gebruikers ID DocType: Workflow State,fast-forward,vinnig vooruit DocType: Communication,Communication,kommunikasie apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Kontroleer kolomme om te kies, sleep om volgorde te stel." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Dit is PERMANENTE aksie en jy kan nie ongedaan maak nie. Aanhou? DocType: Event,Every Day,Elke dag DocType: LDAP Settings,Password for Base DN,Wagwoord vir Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tafelveld -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Kolomme gebaseer op +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Kolomme gebaseer op apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Sleutel sleutels in om integrasie met Google GSuite te aktiveer DocType: Workflow State,move,skuif -apps/frappe/frappe/model/document.py +1223,Action Failed,Aksie het misluk +apps/frappe/frappe/model/document.py +1229,Action Failed,Aksie het misluk apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,Vir gebruiker -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Grafiek van rekeninge +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Grafiek van rekeninge DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,U het {0} dae oor in u intekening +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,U het {0} dae oor in u intekening apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Uitgaande e-pos rekening is nie korrek nie apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperend Gestremd apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} geïnstalleer -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Stel asseblief e-pos adres in +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Stel asseblief e-pos adres in DocType: System Settings,Date and Number Format,Datum en nommerformaat apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Maksimum aanhangsel grootte is {0} MB -apps/frappe/frappe/model/document.py +1038,one of,een van -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Kies asseblief die lêer om te kopieer +apps/frappe/frappe/model/document.py +1044,one of,een van apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kyk een oomblik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Wys etikette DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","As Streng gebruikertoestemming toegepas word, en gebruikertoestemming vir 'n DocType vir 'n gebruiker gedefinieer is, sal al die dokumente waar die waarde van die skakel leeg is, nie aan daardie gebruiker vertoon word nie." @@ -1012,15 +1010,16 @@ DocType: Web Form,Actions,aksies DocType: Workflow State,align-justify,in lyn-regverdig DocType: User,Middle Name (Optional),Middelnaam (opsioneel) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Nie toegelaat -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Die volgende velde het ontbrekende waardes: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,Jy het nie genoeg regte om die aksie te voltooi nie +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Die volgende velde het ontbrekende waardes: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,Jy het nie genoeg regte om die aksie te voltooi nie apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Geen resultate DocType: System Settings,Security,sekuriteit apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Geskeduleer om na {0} ontvangers te stuur +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,sny apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},hernoem van {0} tot {1} DocType: Currency,**Currency** Master,** Geld ** Meester DocType: Email Account,No of emails remaining to be synced,Geen e-posse wat oorbly om gesinkroniseer te word nie -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,oplaai +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,oplaai apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Stoor asseblief die dokument voor opdrag apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klik hier om insekte en voorstelle te plaas DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adres en ander wettige inligting wat u moontlik in die voetskrif wil plaas. @@ -1032,7 +1031,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} minute gelede DocType: Kanban Board Column,lightblue,ligblou apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Dieselfde veld word meer as een keer ingeskryf -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Kies Kolomme apps/frappe/frappe/templates/includes/list/filters.html +19,clear,duidelik apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Elke dag moet die gebeure op dieselfde dag eindig. DocType: Communication,User Tags,Gebruiker-etikette @@ -1046,7 +1044,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Teken in DocType: Web Page,Main Section,Hoofafdeling DocType: Page,Icon,ikoon apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,om waardes tussen 5 en 10 te filter -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Wenk: Sluit simbole, nommers en hoofletters in die wagwoord in" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Wenk: Sluit simbole, nommers en hoofletters in die wagwoord in" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Gebruiker Permissions Manager apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / jjjj apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite script toets @@ -1067,42 +1066,44 @@ DocType: Website Settings,Copyright,kopiereg apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gaan DocType: OAuth Authorization Code,Invalid,Ongeldig DocType: ToDo,Due Date,Vervaldatum -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Kwartaal +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Kwartaal DocType: Social Login Keys,Google Client Secret,Google Client Secret DocType: Website Settings,Hide Footer Signup,Versteek voetskrifinskrywing apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,hierdie dokument gekanselleer apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skryf 'n Python-lêer in dieselfde gids waar dit gered is en stuur kolom en resultaat terug. DocType: DocType,Sort Field,Sorteer Veld DocType: Razorpay Settings,Razorpay Settings,Razorpay instellings -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Wysig filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Veld {0} van tipe {1} kan nie verpligtend wees nie +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Wysig filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Veld {0} van tipe {1} kan nie verpligtend wees nie apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Voeg nog by DocType: System Settings,Session Expiry Mobile,Sessie Vervaldatum apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Soek resultate vir apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Kies om af te laai: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Indien {0} toegelaat word DocType: Custom DocPerm,If user is the owner,As gebruiker die eienaar is +apps/frappe/frappe/config/integrations.py +88,Maps,kaarte ,Activity,aktiwiteit DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hulp: Om te skakel na 'n ander rekord in die stelsel, gebruik "# Vorm / Nota / [Nota Naam]" as die skakel-URL. (moenie "http: //" gebruik nie)" DocType: User Permission,Allow,laat apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Kom ons vermy herhaalde woorde en karakters DocType: Communication,Delayed,vertraag -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Lys van backups beskikbaar vir aflaai +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Lys van backups beskikbaar vir aflaai apps/frappe/frappe/www/login.html +86,Sign up,Teken aan DocType: Test Runner,Output,uitset DocType: Email Alert,Set Property After Alert,Stel Eiendom Na Alert -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Voeg velde by vorms. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Voeg velde by vorms. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,Dit lyk of daar iets fout is met die webwerf se Paypal-opset. DocType: File,rgt,rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Leër tipe DocType: Workflow State,leaf,blaar DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: Contact Us Settings,Email ID,E-pos ID +DocType: Activity Log,Keep track of all update feeds,Hou tred met alle opdaterings feeds DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","As gebruikertoestemmings aangevra word, word dit aangevra vir Rapport DocType, maar geen gebruikersmagtigings is gedefinieer vir Verslag vir 'n gebruiker nie, dan word alle verslae aan daardie gebruiker gewys." DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: Voeg Reference: {{ reference_doctype }} {{ reference_name }}
om dokumentverwysing te stuur
apps/frappe/frappe/modules/utils.py +196,App not found,Program nie gevind nie
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kan nie 'n {0} teen 'n kinderdokument skep nie: {1}
@@ -1893,7 +1897,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,passiewe
DocType: Contact,Accounts Manager,Rekeningbestuurder
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Jou betaling is gekanselleer.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Kies Lêertipe
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Kies Lêertipe
DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,bladsy nie gevind nie
DocType: DocField,Precision,presisie
@@ -1920,12 +1924,12 @@ DocType: Property Setter,Property Type,Eiendomsoort
DocType: Workflow State,screenshot,kiekie
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Slegs administrateur kan 'n standaardverslag stoor. Hersien en stoor asseblief.
DocType: System Settings,Background Workers,Agtergrondwerkers
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Veldnaam {0} strydig met meta-objek
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Veldnaam {0} strydig met meta-objek
DocType: Deleted Document,Data,data
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument Status
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Jy het {0} van {1} gemaak
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Nie toegelaat om in te voer nie
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Nie toegelaat om in te voer nie
DocType: Social Login Keys,Frappe Client Secret,Frappe Client Secret
DocType: Deleted Document,Deleted DocType,Doktipe verwyder
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Toestemmingsvlakke
@@ -1933,11 +1937,11 @@ DocType: Workflow State,Warning,waarskuwing
DocType: Data Migration Run,Percent Complete,Persent Voltooi
DocType: Tag Category,Tag Category,Tag Kategorie
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!",Ignoreer item {0} omdat 'n groep met dieselfde naam bestaan!
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,help
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,help
DocType: User,Login Before,Login voor
DocType: Web Page,Insert Style,Voeg styl in
-apps/frappe/frappe/config/setup.py +262,Application Installer,Aansoek Installer
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Nuwe verslag naam
+apps/frappe/frappe/config/setup.py +269,Application Installer,Aansoek Installer
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Nuwe verslag naam
DocType: Workflow State,info-sign,Info-teken
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Waarde vir {0} kan nie 'n lys wees nie
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet hierdie geldeenheid geformateer word? As dit nie ingestel is nie, sal die stelsel standaard gebruik word"
@@ -1950,6 +1954,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Rol Toestemmings
DocType: Help Article,Intermediate,Intermediêre
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Gekanselleer dokument herstel as konsep
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan nie uitvee of kanselleer nie omdat {0} {1} gekoppel is aan {2} {3} {4}
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kan lees
DocType: Custom Role,Response,reaksie
DocType: DocField,Geolocation,ligginggewing
@@ -1973,8 +1978,8 @@ DocType: OAuth Client,Default Redirect URI,Standaard Herlei URI
DocType: Email Alert,Recipients,ontvangers
DocType: System Settings,Choose authentication method to be used by all users,Kies verifikasie metode wat deur alle gebruikers gebruik moet word
DocType: Workflow State,ok-sign,ok-teken
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Dokumente verwyder
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,Die CSV-formaat is hooflettergevoelig
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Dokumente verwyder
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,Die CSV-formaat is hooflettergevoelig
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Desktop-ikoon bestaan reeds
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Dupliseer
DocType: Newsletter,Create and Send Newsletters,Skep en stuur nuusbriewe
@@ -1982,14 +1987,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Andaman en Nicobar-eilande
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Spesifiseer asseblief watter waarde veld moet nagegaan word
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","Ouer" beteken die ouertafel waarin hierdie ry bygevoeg moet word
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","Ouer" beteken die ouertafel waarin hierdie ry bygevoeg moet word
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kan nie hierdie e-pos stuur nie. U het die stuurlimiet van {0} e-posse vir hierdie dag oorgesteek.
DocType: Website Theme,Apply Style,Pas styl toe
DocType: Feedback Request,Feedback Rating,Terugvoer Waardering
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Gedeel met
DocType: Help Category,Help Articles,Hulpartikels
,Modules Setup,Modules Setup
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,tipe:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,tipe:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Jou betaling het misluk.
DocType: Communication,Unshared,ongedeelde
DocType: Address,Karnataka,Karnataka
@@ -1998,12 +2003,11 @@ DocType: User,Location,plek
,Permitted Documents For User,Toegelate dokumente vir gebruiker
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Jy moet toestemming hê om te deel
DocType: Communication,Assignment Completed,Opdrag voltooi
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Grootmaat wysig {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Grootmaat wysig {0}
DocType: Email Alert Recipient,Email Alert Recipient,E-pos Alert Ontvanger
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Nie aktief nie
DocType: About Us Settings,Settings for the About Us Page,Stellings vir die oor ons bladsy
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Strook betaling gateway instellings
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Kies Tipe dokument om af te laai
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,bv. pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Gebruik die veld om rekords te filter
DocType: DocType,View Settings,Bekyk instellings
@@ -2026,6 +2030,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Kan nie
DocType: Unhandled Email,Unhandled Email,Onbehandelde e-pos
DocType: Event,Monday,Maandag
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Maak gebruik van langer sleutelbordpatrone
+DocType: Data Import,Don't create new records,Moenie nuwe rekords skep nie
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Nested set error. Kontak asseblief die Administrateur.
DocType: Workflow State,envelope,koevert
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opsie 2
@@ -2036,41 +2041,41 @@ DocType: Website Settings,Brand Image,Brand Image
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opstel van die top navigasie balk, footer en logo."
DocType: Web Form Field,Max Value,Maksimum waarde
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Vir {0} op vlak {1} in {2} in ry {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Vir {0} op vlak {1} in {2} in ry {3}
DocType: Contact,All,Almal
DocType: Email Queue,Recipient,ontvanger
DocType: Communication,Has Attachment,Het aanhangsel
DocType: Address,Sales User,Verkope gebruiker
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Sleep-en-Drop-instrument om Print Formats te bou en aan te pas.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Sleep-en-Drop-instrument om Print Formats te bou en aan te pas.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,uit te brei
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,stel
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Hierdie navraagstyl word gestaak
DocType: Email Alert,Trigger Method,Trigger Metode
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Operateur moet een van {0} wees.
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Operateur moet een van {0} wees.
DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token
DocType: Workflow State,align-right,in lyn regs
DocType: Auto Email Report,Email To,E-pos aan
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Vouer {0} is nie leeg nie
DocType: Page,Roles,rolle
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fout: Waarde ontbreek vir {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Veld {0} kan nie gekies word nie.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Veld {0} kan nie gekies word nie.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Sessie Vervaldatum
DocType: Workflow State,ban-circle,verbod-sirkel
DocType: Email Flag Queue,Unread,ongelees
DocType: Bulk Update,Desk,lessenaar
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Filter moet 'n tupel of lys wees (in 'n lys)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Filter moet 'n tupel of lys wees (in 'n lys)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skryf 'n SELECT navraag. Nota resultaat is nie geblaai (alle data word in een keer gestuur).
DocType: Email Account,Attachment Limit (MB),Aanhegsel Limiet (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Opstel Auto E-pos
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Opstel Auto E-pos
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Dit is 'n algemene 10-wagwoord.
DocType: User,User Defaults,Gebruikers standaard
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Skep nuwe
DocType: Workflow State,chevron-down,Chevron-down
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),E-pos is nie gestuur na {0} (unsubscribed / disabled)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),E-pos is nie gestuur na {0} (unsubscribed / disabled)
DocType: Async Task,Traceback,Spoor terug
DocType: Currency,Smallest Currency Fraction Value,Kleinste Geld Fraksie Waarde
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Toewys aan
@@ -2089,7 +2094,7 @@ DocType: OAuth Client,"URIs for receiving authorization code once the user allow
DocType: Data Migration Mapping,Migration ID Field,Migrasie ID-veld
DocType: Communication,Comment Type,Soort kommentaar
DocType: OAuth Client,OAuth Client,OAuth-kliënt
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,gebruikers
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,gebruikers
DocType: Communication,Timeline field Name,Tydlyn veld Naam
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Verslag Tipe
@@ -2099,7 +2104,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Sleutel sleutels in om aan te teken via Facebook, Google, GitHub."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Kan nie lêerformaat vir {0} lees nie.
DocType: Auto Email Report,Filter Data,Filter data
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Voeg 'n merker by
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Heg asseblief eers 'n lêer aan.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Daar was foute om die naam te stel, kontak asseblief die administrateur"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Inkomende e-pos rekening is nie korrek nie
@@ -2122,7 +2126,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Stu
DocType: Website Theme,Link Color,Skakel Kleur
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Gebruiker {0} kan nie gedeaktiveer word nie
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Geagte Stelselbestuurder,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Jou land
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Jou land
DocType: Event,Sunday,Sondag
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,In Grid View
DocType: Address Template,Template,sjabloon
@@ -2147,7 +2151,7 @@ DocType: DocField,Table,tafel
DocType: File,File Size,Lêergrootte
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Jy moet inloggen om hierdie vorm in te dien
DocType: User,Background Image,Agtergrond prentjie
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Kies jou land, tydsone en geldeenheid"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Kies jou land, tydsone en geldeenheid"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,tussen
DocType: Async Task,Queued,tougestaan
@@ -2161,12 +2165,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App toegang sleutel
DocType: OAuth Bearer Token,Access Token,Toegangspunt
DocType: About Us Settings,Org History,Org Geskiedenis
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Rugsteun Grootte:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Rugsteun Grootte:
DocType: Workflow,Workflow Name,Werkstroom Naam
DocType: DocShare,Notify by Email,Stel per e-pos in kennis
DocType: DocField,In Standard Filter,In Standaard Filter
DocType: Web Form,Allow Edit,Laat Redigeer toe
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Plak
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Plak
DocType: Webhook,Doc Events,Doc Aktiwiteite
DocType: Auto Email Report,Based on Permissions For User,Gebaseer op Toestemmings vir Gebruiker
DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reëls vir hoe lande is oorgange, soos die volgende staat en watter rol mag die staat verander, ens."
@@ -2178,10 +2182,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Sluit simbole, nommers en hoofletters in die wagwoord in"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Voeg na veld '{0}' in Aangepaste veld '{1}', met die etiket '{2}', nie bestaan nie"
DocType: Workflow State,signal,sein
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Het Aanhegsels
DocType: DocType,Show Print First,Wys eers druk
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter om te plaas
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Maak 'n nuwe {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nuwe e-pos rekening
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Nuwe e-pos rekening
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument herstel
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Kies taal...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Jy kan nie 'Opsies' vir veld {0} stel nie
@@ -2202,13 +2207,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Skuif na asblik
DocType: Web Form,Web Form Fields,Web vorm velde
DocType: Website Theme,Top Bar Text Color,Bovenste balk teks kleur
+DocType: Data Import,Amended From,Gewysig Van
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Waarskuwing: Kan nie {0} vind in enige tabel wat verband hou met {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Hierdie dokument is tans in die ry vir uitvoering. Probeer asseblief weer
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Hierdie dokument is tans in die ry vir uitvoering. Probeer asseblief weer
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Lêer '{0}' nie gevind nie
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Verwyder Afdeling
DocType: User,Change Password,Verander wagwoord
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Ongeldige e-pos: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Hello!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Hello!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Gebeurtenis einde moet wees na die begin
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dit sal uit {0} uit alle ander toestelle afmeld
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Jy het nie toestemming om 'n verslag te kry nie: {0}
@@ -2217,26 +2223,27 @@ DocType: DocField,Allow Bulk Edit,Laat grootmaat wysig toe
DocType: Blog Post,Blog Post,Blog Post
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Gevorderde soek
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,U mag nie die nuusbrief sien nie.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Vlak 0 is vir dokumentvlak toestemmings, \ hoër vlakke vir veldvlak toestemmings."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Sorteer Volgens
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,Kan nie die vorm stoor as data-invoer aan die gang is nie.
DocType: Workflow,States,State
DocType: Email Alert,Attach Print,Heg druk aan
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Voorgestelde gebruikersnaam: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,dag
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,dag
,Modules,modules
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Stel lessenaar ikone
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,Betaal Sukses
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Geen {0} pos
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Kon nie lêers oplaai nie
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Geen {0} pos
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Kon nie lêers oplaai nie
DocType: OAuth Bearer Token,Revoked,herroep
DocType: Web Page,Sidebar and Comments,Zijbalk en kommentaar
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wanneer u 'n dokument verander na Kanselleer en dit stoor, sal dit 'n nuwe nommer kry wat 'n weergawe van die ou nommer is."
DocType: Stripe Settings,Publishable Key,Publiseerbare sleutel
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Begin invoer
DocType: Workflow State,circle-arrow-left,sirkel-pyl-links
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis kas bediener word nie uitgevoer nie. Kontak asseblief Administrator / Tegniese ondersteuning
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Naam
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Party Naam
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Maak 'n nuwe rekord
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,soek
DocType: Currency,Fraction,breuk
@@ -2261,8 +2268,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Kry items
DocType: Contact,Image,Image
DocType: Workflow State,remove-sign,verwyder-teken
+DocType: Domain Settings,Domains HTML,Domains HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Tik iets in die soekkassie om te soek
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Definieer werksvloei vir vorms.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Definieer werksvloei vir vorms.
DocType: Address,Other,ander
DocType: S3 Backup Settings,Access Key ID,Toegang sleutel ID
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Begin nuwe formaat
@@ -2275,6 +2283,7 @@ DocType: Customize Form Field,Is Custom Field,Is pasgemaakte veld
DocType: Workflow,"If checked, all other workflows become inactive.","As dit nagegaan word, word alle ander werkstrome inaktief."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]: [Field Type] / [Options]: [Width]
DocType: Workflow State,folder-close,gids-close
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,verslag:
DocType: Print Settings,Print taxes with zero amount,Druk belasting met nul bedrag
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} mag nie hernoem word nie
DocType: Custom Script,Custom Script,Aangepaste skrif
@@ -2286,32 +2295,35 @@ DocType: Email Flag Queue,Action,aksie
DocType: GSuite Settings,Script URL,Skrip URL
apps/frappe/frappe/www/update-password.html +111,Please enter the password,Voer asseblief die wagwoord in
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Nie toegelaat om gekanselleerde dokumente te druk nie
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,U mag nie kolomme skep nie
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,info:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,U mag nie kolomme skep nie
+DocType: Data Import,If you don't want to create any new records while updating the older records.,As u nie nuwe rekords wil skep tydens die opdatering van die ouer rekords nie.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,info:
DocType: Custom Field,Permission Level,Toestemmingsvlak
DocType: User,Send Notifications for Transactions I Follow,Stuur kennisgewings vir transaksies wat ek volg
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan nie Stel, Kanselleer, Wysig sonder Skryf, stel nie"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan nie Stel, Kanselleer, Wysig sonder Skryf, stel nie"
+DocType: Google Maps,Client Key,Kliënt Sleutel
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Is jy seker jy wil die aanhangsel uitvee?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan nie uitvee of kanselleer nie omdat {0} {1} gekoppel is aan {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Dankie
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,spaar
DocType: Print Settings,Print Style Preview,Druk Styl Voorskou
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,U mag nie hierdie webvorm dokument opdateer nie
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,e-pos
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,e-pos
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Kies asseblief Dokumenttipe eerste
DocType: About Us Settings,About Us Settings,Oor ons instellings
DocType: Website Settings,Website Theme,Webwerf Tema
DocType: DocField,In List View,In die lys skerm
DocType: Email Account,Use TLS,Gebruik TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ongeldige aanmelding of wagwoord
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Voeg pasgemaakte javascript by vorms.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Sr Nr
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Laai sjabloon af
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Voeg pasgemaakte javascript by vorms.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Sr Nr
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opstelling nie. Skep asseblief 'n nuwe e-posrekening uit Instellings> E-pos> E-posrekening
,Role Permissions Manager,Rol Toestemmings Bestuurder
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Naam van die nuwe drukformaat
DocType: Data Migration Run,Pull Insert,Trek invoeging
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,Vee aanhangsel skoon
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Verpligtend:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Verpligtend:
,User Permissions Manager,Gebruiker Permissions Manager
DocType: Property Setter,New value to be set,Nuwe waarde wat ingestel moet word
DocType: Email Alert,Days Before or After,Dae voor of na
@@ -2321,7 +2333,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Robots
DocType: User Permission,User Permission,Gebruiker Toestemming
apps/frappe/frappe/config/website.py +32,Blog,blog
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP nie geïnstalleer nie
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Laai af met data
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Laai af met data
DocType: Workflow State,hand-right,hand-reg
DocType: Website Settings,Subdomain,subdomein
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Instellings vir OAuth Verskaffer
@@ -2337,21 +2349,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Kies asseblief 'n gradering
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Herstel OTP-geheime
DocType: Email Account,Notify if unreplied for (in mins),In kennis stel indien nie gereageer vir (in mins)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,2 dae gelede
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,2 dae gelede
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategoriseer blogposte.
DocType: Workflow State,Time,tyd
DocType: DocField,Attach,heg
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is nie 'n geldige veldnaampatroon nie. Dit moet {{field_name}} wees.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is nie 'n geldige veldnaampatroon nie. Dit moet {{field_name}} wees.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Stuur terugvoerversoek slegs as daar ten minste een kommunikasie beskikbaar is vir die dokument.
DocType: Custom Role,Permission Rules,Toestemming Reëls
DocType: GSuite Settings,GSuite Settings,GSuite instellings
DocType: Address,Links,Links
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Kies asseblief die dokumenttipe.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Waarde ontbreek vir
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Voeg kind by
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Indiening van Rekord kan nie uitgevee word nie.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Indiening van Rekord kan nie uitgevee word nie.
DocType: GSuite Templates,Template Name,Sjabloon Naam
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuwe tipe dokument
DocType: Custom DocPerm,Read,Lees
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Stel asseblief die standaard e-pos rekening op van Setup> Email> Email Account
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rol Toestemming vir Bladsy en Verslag
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Rig waarde
@@ -2359,18 +2373,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Ou wagwoord
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Boodskappe van {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Om kolomme te formateer, gee kolomletters in die navraag."
DocType: Has Domain,Has Domain,Het Domein
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Steek
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Steek
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Het jy nie 'n rekening? Teken aan
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan nie Toewys Wys stel indien nie Submittable
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,Kan nie ID-veld verwyder nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan nie Toewys Wys stel indien nie Submittable
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,Skakel DocType
+DocType: Activity Log,Link DocType,Skakel DocType
DocType: Social Login Keys,Social Login Keys,Sosiale aanmeld sleutels
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Verwyder alle aanpassings?
DocType: Website Slideshow,Slideshow Name,Skyfievertoning Naam
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,kanselleer
DocType: DocType,Allow Rename,Laat hernoem toe
-DocType: Authentication Log,Full Name,Volle naam
+DocType: Activity Log,Full Name,Volle naam
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Kindertafels word as 'n rooster in ander DocTypes aangedui.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die bladsy wat jy soek, word ontbreek. Dit kan wees omdat dit verskuif word of daar is 'n tik in die skakel."
apps/frappe/frappe/www/404.html +25,Error Code: {0},Fout Kode: {0}
@@ -2400,18 +2415,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!",Voer asseblief beide u e-pos en boodskap in sodat ons terugkom na u. Dankie!
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Kon nie aan uitgaande e-pos bediener koppel nie
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Dankie vir u belangstelling om in te teken op ons opdaterings
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Aangepaste kolom
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Aangepaste kolom
DocType: Workflow State,resize-full,grootte-vol
DocType: Workflow State,off,af
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Verslag {0} is gedeaktiveer
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Aanbeveel vir die invoeging van nuwe rekords.
-DocType: Async Task,Core,Core
+DocType: Activity Log,Core,Core
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Stel toestemmings
DocType: DocField,Set non-standard precision for a Float or Currency field,Stel nie-standaard presisie vir 'n Vlot- of Geldveld
DocType: Email Account,Ignore attachments over this size,Ignoreer aanhangsels oor hierdie grootte
DocType: Address,Preferred Billing Address,Gewenste faktuuradres
apps/frappe/frappe/config/integrations.py +68,External Documents,Eksterne dokumente
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} jaar gelede
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Te veel skryf in een versoek. Stuur asseblief kleiner versoeke
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Waardes verander
DocType: Workflow State,arrow-up,pyl-up
@@ -2419,10 +2432,9 @@ DocType: OAuth Bearer Token,Expires In,Verval In
DocType: DocField,Allow on Submit,Laat toe op Submit
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Uitsondering Tipe
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Kies Kolomme
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Kies Kolomme
DocType: Web Page,Add code as <script>,Voeg kode by as <script>
DocType: Webhook,Headers,kop
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Kies Tipe
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,Voer asseblief waardes in vir die Toegangsleutel vir Toegang en App Geheime Sleutel
DocType: Web Form,Accept Payment,Aanvaar betaling
apps/frappe/frappe/config/core.py +62,A log of request errors,'N Teken van versoekfoute
@@ -2430,7 +2442,7 @@ DocType: Report,Letter Head,Briefhoof
DocType: DocType,Quick Entry,Vinnige toegang
DocType: Web Form,Button Label,Knoppie
DocType: Website Theme,UPPERCASE,HOOFLETTERS
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} items gekies
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} items gekies
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,Skakel Stuur
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Sleep elemente van die sybalk om by te voeg. Sleep hulle terug na asblik.
DocType: Workflow State,resize-small,grootte-klein
@@ -2456,21 +2468,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Aanpassin
DocType: Workflow State,Edit,wysig
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Magtigings kan bestuur word via Setup> Roltoestemmingsbestuurder
DocType: Contact Us Settings,Pincode,PIN-kode
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,Maak asseblief seker dat daar nie leë kolomme in die lêer is nie.
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,Maak asseblief seker dat daar nie leë kolomme in die lêer is nie.
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,Maak asseblief seker dat u profiel 'n e-pos adres het
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,U het ongestoorde veranderinge in hierdie vorm. Slaan asseblief voor jy verder gaan.
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Standaard vir {0} moet 'n opsie wees
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Standaard vir {0} moet 'n opsie wees
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie
DocType: User,User Image,Gebruikersbeeld
apps/frappe/frappe/email/queue.py +336,Emails are muted,E-posse is gedemp
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Opskrif Styl
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,'N Nuwe projek met hierdie naam sal geskep word
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,1 weke gelede
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,'N Nuwe projek met hierdie naam sal geskep word
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,1 weke gelede
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Jy kan nie hierdie program installeer nie
DocType: Communication,Error,fout
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Moenie e-posse stuur nie.
+DocType: Data Import,Ignore encoding errors,Ignoreer kodering foute
DocType: DocField,Column Break,Kolombreuk
DocType: Event,Thursday,Donderdag
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Jy het nie toestemming om toegang tot hierdie lêer te kry nie
@@ -2497,7 +2509,6 @@ DocType: Webhook,Webhook Request,Webhook Versoek
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,uitgewer
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Misluk: {0} tot {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Mapping Type
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Kies Verpligtend
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Snuffel
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Geen simbole, syfers of hoofletters nodig nie."
DocType: DocField,Currency,geldeenheid
@@ -2507,10 +2518,11 @@ DocType: Async Task,Running,loop
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Herstel wagwoord
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Gradeer asseblief op om meer as {0} intekenare by te voeg
DocType: Workflow State,hand-left,-Hand verlaat
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Veldtipe {0} vir {1} kan nie uniek wees nie
+DocType: Data Import,If you are updating/overwriting already created records.,As u alreeds rekords opdateer / oorskryf.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Veldtipe {0} vir {1} kan nie uniek wees nie
DocType: Email Account,Use SSL,Gebruik SSL
DocType: Workflow State,play-circle,play-sirkel
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",Ongeldige "depends_on" uitdrukking
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",Ongeldige "depends_on" uitdrukking
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Kies Drukformaat om te wysig
DocType: Address,Shipping,Gestuur
DocType: Workflow State,circle-arrow-down,sirkel-pyl-down
@@ -2522,24 +2534,22 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,pyl-regs
DocType: Workflow State,Workflow state represents the current state of a document.,Werkstroomstaat verteenwoordig die huidige toestand van 'n dokument.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token ontbreek
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Nota: die wysiging van die bladsy naam sal die vorige URL na hierdie bladsy breek.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,Nota: die wysiging van die bladsy naam sal die vorige URL na hierdie bladsy breek.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Verwyder {0}
DocType: SMS Settings,SMS Settings,SMS instellings
DocType: Company History,Highlight,hoogtepunt
DocType: OAuth Provider Settings,Force,Force
DocType: DocField,Fold,Vou
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,stygende
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standaarddrukformaat kan nie opgedateer word nie
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Miss
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,Spesifiseer asseblief
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,Spesifiseer asseblief
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Help artikel
DocType: Page,Page Name,Naam van die bladsy
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Hulp: Veld Eienskappe
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Invoer ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,unzip
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Onjuiste waarde in ry {0}: {1} moet {2} {3} wees
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Skrap {0}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Onjuiste waarde in ry {0}: {1} moet {2} {3} wees
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Skrap {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Kies 'n bestaande formaat om 'n nuwe formaat te wysig of te begin.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Het aangepaste veld {0} in {1}
DocType: System Settings,Time Zone,Tydsone
@@ -2555,16 +2565,19 @@ DocType: Workflow State,Home,huis
DocType: OAuth Provider Settings,Auto,Auto
DocType: System Settings,User can login using Email id or User Name,Gebruiker kan inskakel met e-pos-ID of gebruikersnaam
DocType: Workflow State,question-sign,vraag-teken
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Voeg kolom voor {0}
DocType: Email Account,Add Signature,Voeg handtekening by
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Verlaat hierdie gesprek
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Het nie ingestel nie
,Background Jobs,Agtergrond Werk
DocType: ToDo,ToDo,ToDo
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker
DocType: DocField,No Copy,Geen kopie
DocType: Workflow State,qrcode,QRCode
+DocType: Data Import,Submit after importing,Dien na invoer in
apps/frappe/frappe/www/login.html +31,Login with LDAP,Teken in met LDAP
DocType: Web Form,Breadcrumbs,Broodkrummels
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,As Eienaar
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,As Eienaar
DocType: Data Migration Mapping,Push,druk
DocType: OAuth Authorization Code,Expiration time,Vervaldatum
DocType: Web Page,Website Sidebar,Website Zijbalk
@@ -2580,6 +2593,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Druk instellings
DocType: Page,Yes,Ja
DocType: DocType,Max Attachments,Maksimum Aanhegsels
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Kliënt sleutel is nodig
DocType: Calendar View,End Date Field,Einddatum Veld
DocType: Desktop Icon,Page,Page
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kon nie {0} in {1} vind nie
@@ -2590,18 +2604,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},Waarde
DocType: Feedback Request,Is Manual,Is Handleiding
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styl verteenwoordig die knoppie kleur: Sukses - Groen, Gevaar - Rooi, Inverse - Swart, Primêr - Donkerblou, Inligting - Ligblou, Waarskuwing - Oranje"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,Geen verslag gelaai nie. Gebruik asseblief 'n navraagverslag / [Rapporteer Naam] om 'n verslag uit te voer.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Ry Status
DocType: Workflow Transition,Workflow Transition,Workflow Transition
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} maande gelede
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Gemaak deur
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Dropbox Setup
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Dropbox Setup
DocType: Workflow State,resize-horizontal,grootte-horisontale
DocType: Note,Content,inhoud
DocType: Data Migration Run,Push Insert,Druk Voeg
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Groepknooppunt
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Groepknooppunt
DocType: Communication,Notification,kennisgewing
DocType: DocType,Document,dokument
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Reeks {0} wat reeds in {1} gebruik word
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Nie-ondersteunde lêerformaat
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Nie-ondersteunde lêerformaat
DocType: DocField,Code,kode
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle moontlike Workflow State en rolle van die workflow. Docstatus Opsies: 0 is "gestoor", 1 is "ingedien" en 2 is "gekanselleer""
DocType: Website Theme,Footer Text Color,Voet Tekst Kleur
@@ -2609,6 +2624,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Laas gew
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Toestemmings op vlak 0 is dokumentvlak toestemmings, dws hulle is primêr vir toegang tot die dokument."
DocType: Email Alert,Print Format,Drukformaat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ongeldige betaling gateway credentials
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dit is die sjabloon lêer wat gegenereer word met slegs die rye wat fout het. U moet hierdie lêer gebruik vir korreksie en invoer.
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Stel toestemmings op dokumentsoorte en -rolle
apps/frappe/frappe/model/meta.py +159,No Label,Geen etiket
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Opdatering ...
@@ -2633,15 +2649,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,antwoor
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Bladsye in die lessenaar (plekhouers)
DocType: DocField,Collapsible Depends On,Opvoubaar hang af
DocType: Print Style,Print Style Name,Druk Styl Naam
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,deur
DocType: Print Settings,Allow page break inside tables,Laat bladsybreek binne-in tabelle toe
DocType: Email Account,SMTP Server,SMTP-bediener
DocType: Print Format,Print Format Help,Drukformaathulp
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Dateer die sjabloon op en stoor in afgelaaide formaat voordat dit aangeheg word.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,Met groepe
DocType: DocType,Beta,Beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},herstel {0} as {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","As u opdateer, kies asseblief "Oorskryf" anders sal bestaande rye nie uitgevee word nie."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","As u opdateer, kies asseblief "Oorskryf" anders sal bestaande rye nie uitgevee word nie."
DocType: Event,Every Month,Elke maand
DocType: Letter Head,Letter Head in HTML,Briefkop in HTML
DocType: Web Form,Web Form,Web vorm
@@ -2651,15 +2667,15 @@ DocType: Print Settings,Allow Print for Cancelled,Laat Print vir gekanselleer to
DocType: Communication,Integrations can use this field to set email delivery status,Integrasies kan hierdie veld gebruik om e-pos afleweringstatus te stel
DocType: Web Form,Web Page Link Text,Webblad skakel teks
DocType: Page,System Page,Stelsel Bladsy
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Stel standaard formaat, bladsy grootte, druk styl ens."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Stel standaard formaat, bladsy grootte, druk styl ens."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Sluit Soek in die boonste balk in
DocType: GSuite Settings,Allow GSuite access,Laat GSuite toegang toe
DocType: DocType,DESC,Latere
DocType: DocType,Naming,benaming
DocType: Event,Every Year,Elke jaar
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Kies Alles
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Aangepaste vertalings
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Kies Alles
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Aangepaste vertalings
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,vordering
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,per rol
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,Ontbrekende velde
@@ -2671,11 +2687,10 @@ DocType: File,Thumbnail URL,Duimnaelskets-URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Aangepaste verslae
DocType: Website Script,Website Script,Webwerf skrif
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"As jy nie 'n eie publiseer Google Apps Script-webapparaat gebruik nie, kan jy die standaard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec gebruik"
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Gepasmaakte HTML Templates vir druk transaksies.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Gepasmaakte HTML Templates vir druk transaksies.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,geaardheid
DocType: Workflow,Is Active,Is aktief
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Geen verdere rekords
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Gebruiker Permissions Manager
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Geen verdere rekords
DocType: DocField,Long Text,Lang teks
DocType: Workflow State,Primary,primêre
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gaan na hierdie URL na voltooiing van die vorm (slegs vir gasgebruikers)
@@ -2689,7 +2704,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,klok
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Fout in e-poswaarskuwing
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Deel hierdie dokument met
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,{0} {1} kan nie 'n blaar node wees nie aangesien dit kinders het
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,{0} {1} kan nie 'n blaar node wees nie aangesien dit kinders het
DocType: Communication,Info,info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Voeg bylae by
DocType: Data Migration Mapping,Sync,Sync
@@ -2729,7 +2744,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Betaling Gateway
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Om toegang te gee tot 'n rol vir slegs spesifieke rekords, gaan na die Toepassingsgebruikertoestemmings. Gebruikers toestemmings word gebruik om gebruikers met sulke rolle te beperk tot spesifieke rekords."
DocType: Portal Settings,Hide Standard Menu,Versteek Standaard Menu
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Voeg / Bestuur e-posdomeine.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Voeg / Bestuur e-posdomeine.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Kan nie kansellasie voor indiening nie. Sien Oorgang {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Drukformaat {0} is gedeaktiveer
DocType: Email Alert,Send days before or after the reference date,Stuur dae voor of na die verwysingsdatum
@@ -2738,7 +2753,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,waarde
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Klik hier om te verifieer
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Voorspelbare vervangings soos '@' in plaas van 'a' help nie baie nie.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Toegewys deur my
-apps/frappe/frappe/utils/data.py +480,Zero,zero
+apps/frappe/frappe/utils/data.py +485,Zero,zero
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie in ontwikkelaar af! Stel in site_config.json of maak 'Custom' DocType.
DocType: Workflow State,globe,wêreld
DocType: System Settings,dd.mm.yyyy,dd.mm.jjjj
@@ -2758,11 +2773,12 @@ DocType: Module Def,Module Name,Module Naam
DocType: DocType,DocType is a Table / Form in the application.,DocType is 'n tabel / vorm in die aansoek.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Verslag
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Verslag
DocType: SMS Settings,Use POST,Gebruik POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,Web View
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Waarskuwing: Hierdie drukformaat is in ou styl en kan nie gegenereer word via die API nie.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,totale
DocType: DocField,Print Width,Drukbreedte
,Setup Wizard,Opstelassistent
DocType: Address,GST State Number,GST Staat Nommer
@@ -2786,26 +2802,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Werk asseblief SMS-instellings op
DocType: Event,Event Type,Gebeurtenis Tipe
DocType: User,Last Known Versions,Laaste bekende weergawes
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Voeg / Bestuur e-pos rekeninge.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Voeg / Bestuur e-pos rekeninge.
DocType: Newsletter,Published,gepubliseer
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Dankie vir jou e-pos
DocType: DocField,Small Text,Klein teks
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Administrateur het toegang verkry op {0} op {1} via IP-adres {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Administrateur het toegang verkry op {0} op {1} via IP-adres {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Gelykes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Die opsie 'Dynamic Link' tipe veld moet na 'n ander skakelveld verwys met opsies as 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Die opsie 'Dynamic Link' tipe veld moet na 'n ander skakelveld verwys met opsies as 'DocType'
DocType: About Us Settings,Team Members Heading,Span Lede Opskrif
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Ongeldige CSV-formaat
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Stel aantal rugsteun
DocType: DocField,Do not allow user to change after set the first time,Moenie toelaat dat die gebruiker die eerste keer na die stel verander nie
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Privaat of Publiek?
-apps/frappe/frappe/utils/data.py +578,1 year ago,1 jaar gelede
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privaat of Publiek?
+apps/frappe/frappe/utils/data.py +590,1 year ago,1 jaar gelede
DocType: Contact,Contact,Kontak
DocType: User,Third Party Authentication,Derdeparty-verifikasie
DocType: Website Settings,Banner is above the Top Menu Bar.,Banner is bokant die boonste spyskaart.
DocType: Razorpay Settings,API Secret,API geheime
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Uitvoerverslag:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} bestaan nie
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Uitvoerverslag:
DocType: Data Migration Run,Push Update,Druk Update
DocType: Email Account,Port,Port
DocType: Print Format,Arial,Arial
@@ -2822,15 +2837,15 @@ DocType: Dropbox Settings,Dropbox Settings,Dropbox instellings
DocType: About Us Settings,More content for the bottom of the page.,Meer inhoud vir die onderkant van die bladsy.
DocType: Workflow,DocType on which this Workflow is applicable.,DocType waarop hierdie Workflow van toepassing is.
DocType: Feedback Trigger,Enabled,enabled
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Kon nie opstelling voltooi nie
DocType: Tag Category,Category Name,Kategorie Naam
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Voer inskrywers in
DocType: Print Settings,PDF Settings,PDF-instellings
DocType: Kanban Board Column,Column Name,Kolom Naam
DocType: Language,Based On,Gebaseer op
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Jy is alles vas!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Maak dit die terugval-opsie
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Gaan na die Frappe-bediener-URL
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Veldtipe {0} vir {1} kan nie geïndekseer word nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Veldtipe {0} vir {1} kan nie geïndekseer word nie
DocType: Communication,Email Account,E-pos rekening
DocType: Workflow State,Download,Aflaai
DocType: Blog Post,Blog Intro,Blog Intro
@@ -2846,7 +2861,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ongeldige limiet {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lys 'n dokumenttipe
DocType: Event,Ref Type,Ref Type
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","As jy nuwe rekords oplaai, laat die kolom "naam" (ID) leeg."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","As jy nuwe rekords oplaai, laat die kolom "naam" (ID) leeg."
DocType: Data Migration Run,Current Mapping Delete Start,Huidige kaarte verwyder begin
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Foute in agtergrondgebeure
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Aantal kolomme
@@ -2858,22 +2873,22 @@ DocType: Website Settings,Website Theme Image,Webwerf Tema Beeld
DocType: Workflow State,road,pad
DocType: LDAP Settings,Organizational Unit,Organisasie-eenheid
DocType: User,Timezone,Tydsone
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Kan nie laai nie: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},Kan nie laai nie: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,Ondersteuning
DocType: DocField,Read Only,Lees net
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Nuwe Nuusbrief
DocType: Print Settings,Send Print as PDF,Stuur Druk as PDF
DocType: Web Form,Amount,bedrag
DocType: Workflow Transition,Allowed,toegelaat
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Daar kan net een vou in 'n vorm wees
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Daar kan net een vou in 'n vorm wees
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Kan nie lêerformaat skryf vir {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Herstel na verstekinstellings?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ongeldige tuisblad
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Ongeldige aanmelding. Probeer weer.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Opsies benodig vir skakel- of tabel tipe veld {0} in ry {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Ongeldige aanmelding. Probeer weer.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Opsies benodig vir skakel- of tabel tipe veld {0} in ry {1}
DocType: Auto Email Report,Send only if there is any data,Stuur slegs indien daar enige data is
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Herstel filters
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op vlak 0 moet ingestel word voordat hoër vlakke ingestel is
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op vlak 0 moet ingestel word voordat hoër vlakke ingestel is
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opdrag gesluit deur {0}
DocType: Integration Request,Remote,Afgeleë
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,bereken
@@ -2884,7 +2899,6 @@ DocType: Error Snapshot,Locals,locals
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeer via {0} op {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} het jou genoem in 'n opmerking in {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bv. (55 + 434) / 4 of = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opstelling nie. Skep asseblief 'n nuwe e-posrekening uit Instellings> E-pos> E-posrekening
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} is nodig
DocType: Integration Request,Integration Type,Integrasietipe
DocType: Newsletter,Send Attachements,Stuur Aanhegsels
@@ -2894,16 +2908,15 @@ DocType: DocField,Perm Level,Permvlak
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Gebeurtenisse In Vandag se Kalender
DocType: Web Page,Web Page,Webblad
DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Slaan rye oor met foute.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'In Global Search' word nie toegelaat vir tipe {0} in ry {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Kyk lys
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'In Global Search' word nie toegelaat vir tipe {0} in ry {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Kyk lys
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Datum moet in formaat wees: {0}
DocType: Workflow,Don't Override Status,Moenie die status oorheers nie
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Gee asseblief 'n gradering.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Terugvoerversoek
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Soekterm
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,Die eerste gebruiker: jy
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Kies Kolomme
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,Die eerste gebruiker: jy
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Kies Kolomme
DocType: Translation,Source Text,Bron teks
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Ontbrekende parameters vir aanmelding
DocType: Workflow State,folder-open,gids oop
@@ -2915,18 +2928,17 @@ DocType: Page,No,Geen
DocType: Property Setter,Set Value,Stel waarde
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Versteek veld in vorm
DocType: Webhook,Webhook Data,Webhook Data
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Onwettige toegangspunt. Probeer asseblief weer
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Onwettige toegangspunt. Probeer asseblief weer
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Die aansoek is opgedateer na 'n nuwe weergawe, verfris asseblief hierdie bladsy"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Stuur weer
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opsioneel: Die waarskuwing sal gestuur word as hierdie uitdrukking waar is
DocType: Data Migration Plan,Plan Name,Plan Naam
DocType: Print Settings,Print with letterhead,Druk met briefhoof
DocType: Unhandled Email,Raw Email,Rou e-pos
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Kies rekords vir opdrag
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,invoer
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Kies rekords vir opdrag
DocType: ToDo,Assigned By,Toegewys deur
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,U kan vorm gebruik om vlakke op velde te stel.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Kies jou streek
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Kies jou streek
DocType: Custom DocPerm,Level,vlak
DocType: Custom DocPerm,Report,verslag
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Bedrag moet groter as 0 wees.
@@ -2945,7 +2957,7 @@ DocType: Website Theme,Background,agtergrond
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON-lys van DocTypes het gebruikerspermitte aangewend. As dit leeg is, sal alle gekoppelde dokumentsoorte gebruik word om gebruikersmagtigings toe te pas."
DocType: Report,Ref DocType,Ref DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,Voeg asseblief 'n gradering by
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: Kan nie verander sonder Kanselleer nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: Kan nie verander sonder Kanselleer nie
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Volle bladsy
DocType: DocType,Is Child Table,Is kindertafel
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} moet een van {1} wees
@@ -2957,7 +2969,7 @@ DocType: Workflow State,chevron-left,Chevron-links
DocType: Communication,Sending,Stuur
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Nie van hierdie IP-adres toegelaat nie
DocType: Website Slideshow,This goes above the slideshow.,Dit gaan bokant die skyfievertoning.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Installeer programme.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Installeer programme.
DocType: Contact,Last Name,Van
DocType: Event,Private,Privaat
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Geen waarskuwings vir vandag nie
@@ -2974,19 +2986,19 @@ DocType: Event,Send an email reminder in the morning,Stuur 'n e-pos herinner
DocType: Blog Post,Published On,Gepubliseer op
DocType: Contact,Gender,geslag
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Verpligte inligting ontbreek:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' kan nie as Uniek gestel word nie omdat dit nie-unieke waardes bevat
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' kan nie as Uniek gestel word nie omdat dit nie-unieke waardes bevat
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Gaan versoek URL aan
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Slegs 200 inserts word toegelaat in een versoek
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,Gaan terug na die Verifikasie skerm en voer die kode in wat deur jou verifikasieprogram vertoon word
DocType: ToDo,Reference Type,Verwysingstipe
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,Aktiveer ontwikkelaar af om nuwe konneksie te skep
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,Aktiveer ontwikkelaar af om nuwe konneksie te skep
DocType: Event,Repeat On,Herhaal On
DocType: SMS Parameter,SMS Parameter,SMS Parameter
DocType: Communication,Marked As Spam,Gemerk as spam
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Daar is 'n probleem met die lêer url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Boom
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,U mag nie hierdie verslag druk nie
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,U mag nie hierdie verslag druk nie
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Gebruikers toestemmings
DocType: Workflow State,warning-sign,waarskuwingsteken
DocType: Workflow State,User,gebruiker
@@ -3018,64 +3030,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,verstek
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} bygevoeg
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Soek vir '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Slaan asseblief eers die verslag op
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,Slaan asseblief eers die verslag op
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} intekenaars bygevoeg
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nie in nie
DocType: Workflow State,star,ster
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,waardes geskei deur kommas
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,waardes geskei deur kommas
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Deel asseblief jou terugvoer vir {0}
apps/frappe/frappe/config/website.py +13,Content web page.,Inhoud webblad.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Voeg 'n nuwe rol by
DocType: Deleted Document,Deleted Document,Dokument verwyder
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Oeps! Iets het verkeerd geloop
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Oeps! Iets het verkeerd geloop
DocType: Help Article,Category,kategorie
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Kliënte kant skrip uitbreidings in Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Riglyne vir die installering van ldap afhanklikes en python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Blog Inleiding
DocType: Address,Office,kantoor
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Hierdie Kanbanraad sal privaat wees
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Hierdie Kanbanraad sal privaat wees
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standaard Verslae
DocType: User,Email Settings,E-pos instellings
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,Voer asseblief u wagwoord in om voort te gaan
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nie 'n geldige LDAP-gebruiker nie
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nie 'n geldige staat nie
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',Kies asseblief 'n ander betaalmetode. PayPal ondersteun nie transaksies in valuta '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Soekveld {0} is nie geldig nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Soekveld {0} is nie geldig nie
DocType: Workflow State,ok-circle,ok-sirkel
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Jy kan dinge vind deur te vra om 'oranje in kliënte te vind'
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Jammer! Gebruiker moet volledige toegang tot hul eie rekord hê.
,Usage Info,Gebruik Info
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Ongeldige bewys
DocType: Email Account,Email Server,E-pos bediener
-DocType: DocShare,Document Type,Dokument Type
+DocType: Data Import,Document Type,Dokument Type
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Etiket is verpligtend
DocType: PayPal Settings,API Username,API gebruikersnaam
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Halwe dag
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Halwe dag
DocType: Communication,Communication Type,Kommunikasietipe
DocType: DocField,Unique,unieke
-DocType: Data Migration Run,Partial Success,Gedeeltelike sukses
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Gedeeltelike sukses
DocType: Email Account,Service,diens
DocType: File,File Name,Lêernaam
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),Het nie {0} vir {0} ({1}) gevind nie
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),Het nie {0} vir {0} ({1}) gevind nie
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Oeps, jy mag dit nie weet nie"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,volgende
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,volgende
apps/frappe/frappe/handler.py +92,You have been successfully logged out,U is suksesvol aangemeld
DocType: Calendar View,Calendar View,Kalender View
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Redigeer formaat
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Voltooi Registrasie
DocType: GSuite Settings,Enable,in staat te stel
+DocType: Google Maps,Home Address,Huisadres
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Nuut {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Bovenste balk kleur en teks kleur is dieselfde. Hulle moet goed kontras wees om leesbaar te wees.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),U kan slegs op een slag maksimum 5000 rekords oplaai. (kan in sommige gevalle minder wees)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),U kan slegs op een slag maksimum 5000 rekords oplaai. (kan in sommige gevalle minder wees)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Onvoldoende Toestemming vir {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Verslag is nie gestoor nie (daar was foute)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Verslag is nie gestoor nie (daar was foute)
DocType: Print Settings,Print Style,Druk Styl
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nie gekoppel aan enige rekord nie
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nie gekoppel aan enige rekord nie
DocType: Custom DocPerm,Import,invoer
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,Ry {0}: Nie toegelaat om toe te laat op Stuur vir standaard velde nie
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Invoer / Uitvoer Data
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Invoer / Uitvoer Data
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standaard rolle kan nie hernoem word nie
DocType: Communication,To and CC,Na en bc
DocType: SMS Settings,Static Parameters,Statiese Parameters
@@ -3096,18 +3109,17 @@ DocType: Web Page,Header and Description,Opskrif en beskrywing
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Beide login en wagwoord word vereis
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,Verfris asseblief om die nuutste dokument te kry.
DocType: User,Security Settings,Sekuriteitsinstellings
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Voeg kolom by
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Voeg kolom by
,Desktop,lessenaar
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Uitvoerverslag: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Uitvoerverslag: {0}
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Teks wat vir Link na webbladsy vertoon moet word as hierdie vorm 'n webblad het. Skakelroete sal outomaties gegenereer word gebaseer op `page_name` en` parent_website_route`
DocType: Feedback Request,Feedback Trigger,Terugvoer Trigger
DocType: S3 Backup Settings,Backup Limit,Rugsteunlimiet
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,Stel asseblief eers {0} in
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,Stel asseblief eers {0} in
DocType: Unhandled Email,Message-id,Boodskap-ID
DocType: Patch Log,Patch,Patch
-DocType: Async Task,Failed,misluk
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Geen data gevind nie
+DocType: Activity Log,Failed,misluk
DocType: Web Form,Allow Comments,Laat kommentaar toe
DocType: User,Background Style,Agtergrondstyl
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,Bypass Two Factor Auth vir gebruikers wat inskakel vanaf beperkte IP-adres
@@ -3116,7 +3128,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},het {0} in {1} saamgesmelt
DocType: System Settings,mm-dd-yyyy,mm-dd-yyyy
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Nuwe verbinding
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} ingeteken
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} ingeteken
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Jou inlog id is
DocType: OAuth Client,Skip Authorization,Slaan Magtiging oor
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Kan nie standaard e-poswaarskuwing wysig nie. Om dit te redigeer, skakel dit asseblief af en dupliseer dit"
diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv
index 8320ffa6e7..3af440b574 100644
--- a/frappe/translations/am.csv
+++ b/frappe/translations/am.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","አዲስ ተግባር, {0}: {1} የተሰጠህ ተደርጓል. {2}"
DocType: Email Queue,Email Queue records.,የኢሜይል ወረፋ መዝገቦች.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,ልጥፍ
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,ለመጀመሪያ ጊዜ ፓርቲ አይነት ይምረጡ
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,ለመጀመሪያ ጊዜ ፓርቲ አይነት ይምረጡ
DocType: Address,Punjab,ፑንጃብ
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,አንድ .csv ፋይል በመስቀል ብዙ ንጥሎችን ዳግም ሰይም.
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,አንድ .csv ፋይል በመስቀል ብዙ ንጥሎችን ዳግም ሰይም.
DocType: Workflow State,pause,ለጥቂት ጊዜ አረፈ
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,ይህን ገጽ ለመድረስ አይፈቀድም.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,ምንም ውጤቶች ለ '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,የእርስዎ መረጃ ገብቷል apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,{0} ተጠቃሚ ሊሰረዝ አይችልም DocType: System Settings,Currency Precision,የምንዛሬ ዝንፍ የማይሉ @@ -317,21 +318,21 @@ DocType: Communication,Attachment,አባሪ DocType: Communication,Message ID,የመልዕክት መታወቂያ DocType: Property Setter,Field Name,የመስክ ስም apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite አልተዋቀረም. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ወይም +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,ወይም apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ሞጁል ስም ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ቀጥል DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,የምስክር ወረቀት DocType: User,Tile,ሰቅ apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,በማረጋገጥ ላይ ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,የመጀመሪያው ውሂብ ዓምድ ባዶ መሆን አለበት. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,የመጀመሪያው ውሂብ ዓምድ ባዶ መሆን አለበት. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ሁሉንም ስሪቶች አሳይ DocType: Workflow State,Print,እትም DocType: User,Restrict IP,የ IP ገድብ apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,ዳሽቦርድ apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,በዚህ ጊዜ ኢሜይሎችን መላክ አልተቻለም apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ -DocType: Communication,Timeline Name,የጊዜ መስመር ስም +DocType: Activity Log,Timeline Name,የጊዜ መስመር ስም DocType: Email Account,e.g. smtp.gmail.com,ለምሳሌ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,አዲስ ደንብ አክል DocType: Contact,Sales Master Manager,የሽያጭ መምህር አስተዳዳሪ @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,የወላጅ መለያ ስም apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ጥያቄዎ ደርሶናል ተደርጓል. በቅርቡ ምላሽ ይሆናል. ማንኛውም ተጨማሪ መረጃ ያላቸው ከሆነ, ይህን መልዕክት ምላሽ ይስጡ." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,ፍቃዶች በራስ-ሰር መደበኛ ሪፖርቶች እና ፍለጋዎች ይተረጎማሉ. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,የመግቢያ ማስመሰያ ይጠየቃል +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,የመግቢያ ማስመሰያ ይጠየቃል DocType: Event,Repeat Till,ድረስ ድገም apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,አዲስ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Gsuite ቅንብሮች ላይ ስክሪፕት ዩ አር ኤል ማዘጋጀት እባክዎ @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,ዛሬ ለ መጪ ክስተቶች DocType: Email Alert Recipient,Email By Document Field,ሰነድ መስክ በ ኢሜይል DocType: Domain Settings,Domain Settings,የጎራ ቅንብሮች -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,የፋይል መጠን: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,የፋይል መጠን: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,አሻሽል apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},ማገናኘት አይቻልም: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,በራሱ አንድ ቃል ለመገመት ቀላል ነው. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,ክፍልፋይ አሃዶች apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} ከ {1} ወደ {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,እንደተከናወነ ምልክት አድርግበት DocType: Communication,Type,ዓይነት -DocType: Authentication Log,Subject,ትምህርት +DocType: Activity Log,Subject,ትምህርት DocType: Web Form,Amount Based On Field,የገንዘብ መጠን መስክ ላይ የተመሠረተ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,የተጠቃሚ አጋራ ግዴታ ነው DocType: DocField,Hidden,የተደበቀ @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,ያልተሟላ ቅጾች ፍቀድ apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} አስቀድሞ መዘጋጀት አለበት apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","የጋራ ሐረጎች ለማስቀረት, ጥቂት ቃላትን ይጠቀሙ." DocType: Workflow State,plane,አውሮፕላን -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ በአሁኑ ጊዜ ከሆነ, "ተከታታይ መሰየምን", የግዴታ ይሆናል." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ በአሁኑ ጊዜ ከሆነ, "ተከታታይ መሰየምን", የግዴታ ይሆናል." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,በዛሬው ጊዜ ማንቂያዎች ያግኙ apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType ብቻ አስተዳዳሪ ተሰይሟል ይችላል apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},ሊቀየር እሴት {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","ተጠቃሚው ማንኛውም ሚና ከተመረጠ, ተጠቃሚው "የስርዓት ተጠቃሚ" ይሆናል. "የስርዓት ተጠቃሚ" ወደ ዴስክቶፕ መዳረሻ አለው" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,ማረጋገጫ ለማግኘት እባክዎ ኢሜይልዎን ያረጋግጡ -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም DocType: Communication,Bounced,ካረፈ DocType: Deleted Document,Deleted Name,ተሰርዟል ስም apps/frappe/frappe/config/setup.py +14,System and Website Users,ሥርዓት እና የድር ጣቢያ ተጠቃሚዎች @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,ዝማኔን ጎትት DocType: Auto Email Report,No of Rows (Max 500),ረድፎች አይ (ከፍተኛው 500) DocType: Language,Language Code,የቋንቋ ኮድ apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","የእርስዎ ውርድ እየተገነባ ነው, ይሄ ጥቂት ጊዜ ሊወስድ ይችላል ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,ማጣሪያ አክል +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,ማጣሪያ አክል apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},ኤስ ኤም ኤስ የሚከተሉትን ቁጥሮች ላከ: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,የእርስዎ ደረጃ: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} እና {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} እና {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ሁልጊዜ የሕትመት ረቂቅ ሰነዶች ርዕስ "ረቂቅ" ለማከል DocType: Data Migration Run,Current Mapping Start,የአሁኑ የካርታ ጀምር apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,የኢሜይል እንደ አይፈለጌ መልዕክት ምልክት ተደርጎበታል DocType: About Us Settings,Website Manager,የድር ጣቢያ አስተዳዳሪ apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,የፋይል ሰቀላ አልተያያዘም. እባክዎ ዳግም ይሞክሩ. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,የመረጡት ረቂቅ ወይም የተሰረዙ ሰነዶችን -apps/frappe/frappe/model/document.py +1180,Document Queued,የሰነድ ወረፋ +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,የመረጡት ረቂቅ ወይም የተሰረዙ ሰነዶችን +apps/frappe/frappe/model/document.py +1186,Document Queued,የሰነድ ወረፋ DocType: GSuite Templates,Destination ID,መድረሻ መታወቂያ DocType: Desktop Icon,List,ዝርዝር -DocType: Communication,Link Name,አገናኝ ስም -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" +DocType: Activity Log,Link Name,አገናኝ ስም +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" DocType: System Settings,mm/dd/yyyy,ወር / ቀን / ዓመት -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,የተሳሳተ የሚስጥርቃል: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,የተሳሳተ የሚስጥርቃል: DocType: Print Settings,Send document web view link in email,በኢሜይል ውስጥ ሰነድ የድር እይታ አገናኝ ላክ apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ሰነድ የእርስዎ ግብረ {0} በተሳካ ሁኔታ ተቀምጧል ነው -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,ቀዳሚ +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,ቀዳሚ apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,ጉዳዩ: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} ለ ረድፎች {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ንዑስ-ምንዛሬ. ለምሳሌ "ሳንቲም" ለ @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,የተሰቀለ ፋይል ይምረጡ DocType: Letter Head,Check this to make this the default letter head in all prints,ሁሉም ህትመቶች ውስጥ ይህን የነባሪ ደብዳቤ ራስ ለማድረግ ይህንን ምልክት ያድርጉ DocType: Print Format,Server,አገልጋይ -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,አዲስ Kanban ቦርድ +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,አዲስ Kanban ቦርድ DocType: Desktop Icon,Link,ማያያዣ apps/frappe/frappe/utils/file_manager.py +111,No file attached,የተያያዘው ምንም ፋይል DocType: Version,Version,ትርጉም DocType: User,Fill Screen,ማያ ገጽ ሙላ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","በጎደለ ውሂብ, ይህ ዛፍ ሪፖርት ለማሳየት አልተቻለም. አብዛኞቹ አይቀርም, ይህን ምክንያት ፍቃዶች አጣርተው ነው." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. የሚከተለውን ይምረጡ-ፋይል +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","በጎደለ ውሂብ, ይህ ዛፍ ሪፖርት ለማሳየት አልተቻለም. አብዛኞቹ አይቀርም, ይህን ምክንያት ፍቃዶች አጣርተው ነው." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,ሰቀላ አልተሳካም -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,ስቀል በኩል አርትዕ +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,ስቀል በኩል አርትዕ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","የሰነድ ዓይነት ..., ለምሳሌ የደንበኛ" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,ሁኔታ «{0}» ልክ ያልሆነ ነው DocType: Workflow State,barcode,የአሞሌ -apps/frappe/frappe/config/setup.py +235,Add your own translations,የእራስዎ ትርጉሞችን ያክሉ +apps/frappe/frappe/config/setup.py +242,Add your own translations,የእራስዎ ትርጉሞችን ያክሉ DocType: Country,Country Name,የአገር ስም DocType: About Us Team Member,About Us Team Member,እኛ ቡድን አባል ስለ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","ፈቃዶች, ሪፖርት, አስመጣ, ላክ, ማተም, ኢሜይል እና አዘጋጅ የተጠቃሚ ፍቃዶች, ጻፍ ፍጠር, ሰርዝ, አስገባ, ሰርዝ, እንዲሻሻል, ሚናዎች እና አንብብ ያሉ መብቶች በማዋቀር የሰነድ አይነቶች (ይባላል DocTypes) ላይ የተዘጋጀ ነው." DocType: Event,Wednesday,እሮብ -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት DocType: OAuth Client,Token,ማስመሰያ DocType: Property Setter,ID (name) of the entity whose property is to be set,የማን ንብረት ህጋዊ አካል መታወቂያ (ስም) ሊዘጋጅ ነው apps/frappe/frappe/limits.py +84,"To renew, {0}.","ማደስ, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,የመተግበ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,ምንም ቅድመ-እይታ የለም DocType: Workflow State,exclamation-sign,ቃለ አጋኖ-ምልክት apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ፍቃዶችን አሳይ -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ቀን ክልል -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ገጽ {0} ከ {1} DocType: About Us Settings,Introduce your company to the website visitor.,ድር ጎብኚ የእርስዎን ኩባንያ ማስተዋወቅ. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","የኢንክሪፕሽን ቁልፍ ልክ ያልሆነ ነው, site_config.json ያረጋግጡ" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime-ቪዲዮ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 አስተያየት DocType: Email Alert,Days Before,ቀናት በፊት DocType: Workflow State,volume-down,ድምጽ-ታች -apps/frappe/frappe/desk/reportview.py +262,No Tags,ምንም መለያዎች +apps/frappe/frappe/desk/reportview.py +266,No Tags,ምንም መለያዎች DocType: DocType,List View Settings,ዝርዝር እይታ ቅንብሮች DocType: Email Account,Send Notification to,ወደ ማሳወቂያ ላክ DocType: DocField,Collapsible,ሊሰበሰቡ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ተቀምጧል apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,ምን ጋር እርዳታ የሚያስፈልጋቸው ለምንድን ነው? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ይምረጡ አማራጮች. አዲስ መስመር ላይ እያንዳንዱ አማራጭ. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,እስከመጨረሻው ሰርዝ {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,እስከመጨረሻው ሰርዝ {0}? DocType: Workflow State,music,ሙዚቃ apps/frappe/frappe/www/qrcode.html +3,QR Code,QR ኮድ apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,መጨረሻ የተሻሻለው ቀን DocType: Web Page,Settings,ቅንብሮች apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,doctype እባክዎን ይግለጹ DocType: Print Format,Style Settings,ቅጥ ቅንብሮች -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ይበልጥ +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,ይበልጥ DocType: Contact,Sales Manager,የሽያጭ ሃላፊ -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,ዳግም ሰይም +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,ዳግም ሰይም DocType: Print Format,Format Data,ቅርጸት ውሂብ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,እንደ +apps/frappe/frappe/utils/bot.py +91,Like,እንደ DocType: Customize Form Field,Customize Form Field,ቅጽ መስክ ያብጁ DocType: OAuth Client,Grant Type,ፍቃድ ስጥ አይነት apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,አንድ ተጠቃሚ የማበጀት ናቸው ሰነዶች ይመልከቱ apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,መተግበሪያ የመደብር አይፈቀድም DocType: Deleted Document,Hub Sync ID,የሃብ ማመሳሰል መታወቂያ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",የኢሜይል ጎራ አንድ ፍጠር: ለዚህ መለያ አልተዋቀረም? DocType: User,Reset Password Key,ዳግም አስጀምር የይለፍ ቁልፍ DocType: Email Account,Enable Auto Reply,ራስ-መልስ አንቃ @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,ዝቅተኛ የይለፍ ውጤት DocType: DocType,Fields,መስኮች DocType: System Settings,Your organization name and address for the email footer.,የኢሜይል ግርጌ የእርስዎ ድርጅት ስም እና አድራሻ. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,ወላጅ ማውጫ +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,ወላጅ ማውጫ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 ምትኬ ተጠናቅቋል! apps/frappe/frappe/config/desktop.py +60,Developer,ገንቢ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,የተፈጠረ @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,ብቻ አንዴ አዘጋጅ DocType: Email Queue Recipient,Email Queue Recipient,የኢሜይል ወረፋ ተቀባይ DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,የተጠቃሚ ስም {0} አስቀድሞ አለ -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},ከእርስዎ አድራሻ መለጠፊያ ውስጥ አንድ ስህተት አለ {0} DocType: Footer Item,"target = ""_blank""",target = "ባዶን" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,ከፍ ያለ DocType: S3 Backup Settings,Secret Access Key,የምስጢር ቁልፍ ቁልፍ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,ተባዕት -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,የ OTP ሚስጥር ዳግም ተጀምሯል. ዳግም ምዝገባ በሚቀጥለው መግቢያ ላይ ያስፈልጋል. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,የ OTP ሚስጥር ዳግም ተጀምሯል. ዳግም ምዝገባ በሚቀጥለው መግቢያ ላይ ያስፈልጋል. DocType: Communication,From Full Name,ሙሉ ስም ከ apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},እርስዎ ሪፖርት መዳረሻ የለህም: {0} DocType: User,Send Welcome Email,እንኳን ደህና መጡ ኢሜይል ላክ -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከስር አዘጋጅ> የታተመ እና ስምሪት> የአድራሻ አብነት አዲስ አንድ ያድርጉ. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,ማጣሪያ አስወግድ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,ማጣሪያ አስወግድ DocType: Address,Daman and Diu,Daman እና Diu DocType: Address,Personal,የግል -apps/frappe/frappe/config/setup.py +111,Bulk Rename,የጅምላ ይቀየር +apps/frappe/frappe/config/setup.py +118,Bulk Rename,የጅምላ ይቀየር DocType: Email Queue,Show as cc,ካርቦን እንደ አሳይ DocType: DocField,Heading,አርእስት DocType: Workflow State,resize-vertical,እጀታ-ቋሚ -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. ስቀል DocType: Contact Us Settings,Introductory information for the Contact Us Page,ከዚያም Contact Us የሚለውን ገጽ የሚሆን መሠረታዊ መረጃ DocType: Print Style,CSS,የሲ ኤስ ኤስ DocType: Workflow State,thumbs-down,አሪፍ-ታች @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,* Global Search ውስጥ DocType: Workflow State,indent-left,ገብ-ግራ apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,ይህ ፋይል መሰረዝ አደገኛ ነው: {0}. እባክዎ የስርዓት አስተዳዳሪዎን ያግኙ. DocType: Currency,Currency Name,የምንዛሬ ስም -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,ምንም ኢሜይሎች +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,ምንም ኢሜይሎች DocType: Report,Javascript,ጃቫስክሪፕት DocType: File,Content Hash,የይዘት Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,መደብሮች የተለያዩ የተጫኑ መተግበሪያዎች የመጨረሻ የታወቀ ስሪቶች መካከል በ JSON. ይህ መግለጫ ለማሳየት ጥቅም ላይ ይውላል. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","መደበኛ DocType አብጅ ቅጽ መጠቀም, ነባሪ ህትመት ቅርጸት ሊኖረው አይችልም" DocType: Report,Query,ጥያቄ DocType: DocType,Sort Order,የድርድር ቅደም ተከተል -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} DocType: Custom Field,Select the label after which you want to insert new field.,አዲስ መስክ ማስገባት ይፈልጋሉ በኋላ ያለውን መለያ ይምረጡ. ,Document Share Report,የሰነድ አጋራ ሪፖርት DocType: User,Last Login,የመጨረሻው መግቢያ -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,አምድ DocType: Custom Field,Adds a custom field to a DocType,አንድ DocType ወደ ብጁ መስክ ያክላል DocType: File,Is Home Folder,መነሻ አቃፊ ነው apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ልክ የሆነ የኢሜይል አድራሻ አይደለም -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,የህትመት atleast 1 መዝገብ ይምረጡ +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,የህትመት atleast 1 መዝገብ ይምረጡ apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',አባል «{0}» ቀደም ሚና አለው «{1}» DocType: System Settings,Two Factor Authentication method,ሁለት ሁነታ ማረጋገጥ ዘዴ apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},ጋር ተጋርቷል {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,ከደንበኝነት -DocType: Communication,Reference Name,የማጣቀሻ ስም +DocType: Activity Log,Reference Name,የማጣቀሻ ስም apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,የውይይት ድጋፍ DocType: Error Snapshot,Exception,ያልተለመደ ሁናቴ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,ምንም ውጤቶች ለ '
DocType: Email Account,Use IMAP,ተጠቀም የ IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,የ Frappe አገልጋይ ዩ አር ኤል ጥያቄ ማድረግ አልተቻለም +DocType: Activity Log,Activity Log,የእንቅስቃሴ ምዝግብ ማስታወሻ DocType: Integration Request,Authorized,የተፈቀዱ DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,ነጠላ ዓይነቶች የተጎዳኘ ብቻ አንድ ዘገባ ምንም ሰንጠረዦች የላቸውም. እሴቶች tabSingles ውስጥ ይከማቻሉ DocType: System Settings,Enable Password Policy,የይለፍ ቃል ፖሊሲ አንቃ @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","[{: apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},የመስክ አይነት መለወጥ አይችልም {0} DocType: Workflow,Rules defining transition of state in the workflow.,የስራ ፍሰቱ ውስጥ ግዛት ሽግግር ፍቺ ደንቦች. DocType: File,Folder,አቃፊ +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,ውሂብ ከ CSV እና Excel ፋይሎች ወደ ማስመጣት / ወደ ውጪ ይላኩ. DocType: DocField,Index,ማውጫ DocType: Email Group,Newsletter Manager,በራሪ ጽሑፍ አቀናባሪ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,አማራጭ 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} ወደ {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} ወደ {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,ጥያቄዎች ወቅት ስህተት ይግቡ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} በተሳካ ሁኔታ የኢሜይል ቡድን ታክሏል. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,በአብነት ውስጥ ዝግጁ የሆኑ ራስጌዎችን አታርትዑ +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,በአብነት ውስጥ ዝግጁ የሆኑ ራስጌዎችን አታርትዑ apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},የመግቢያ ማረጋገጫ ኮድ ከ {} DocType: Address,Uttar Pradesh,ኡታር ፕራዴሽ DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,የግል ወይም የሕዝብ ፋይል (ሎች) ያድርጉት? +DocType: Data Import,Import Status,ሁኔታን አስገባ +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,የግል ወይም የሕዝብ ፋይል (ሎች) ያድርጉት? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},ለመላክ የተያዘለት {0} DocType: Kanban Board Column,Indicator,አመልካች DocType: DocShare,Everyone,ሁሉም ሰው DocType: Workflow State,backward,ወደኋላ -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" DocType: Email Queue,Add Unsubscribe Link,ከደንበኝነት አገናኝ አክል apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ገና ምንም አስተያየቶች የሉም. አዲስ ውይይት ይጀምሩ. DocType: Workflow State,share,ያጋሩ apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","የእርስዎ የደንበኝነት ምዝገባ {0} ላይ ጊዜው አልፎበታል. ማደስ, ወደ {1} ኢሜይል ይላኩ." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,ግብይቶች ለ ተከታታይ ቁጥር አዘጋጅ. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,ግብይቶች ለ ተከታታይ ቁጥር አዘጋጅ. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,አንተ የተፈጠረ ነገር አይደለም አይችልም apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC እና መደበኛ ምላሽ" DocType: User,Last IP,የመጨረሻው የ IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,የውሂብ ስደ DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,አንድ ተጠቃሚ የተገለጹ የተጠቃሚ ፍቃዶች ላይ የተመሠረተ ማጣሪያ መዛግብት DocType: Note,Notify Users On Every Login,እያንዳንዱ መግቢያው ላይ ተጠቃሚዎችን አሳውቅ DocType: PayPal Settings,API Password,የኤ ፒ አይ የይለፍ ቃል -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,የ Python ሞጁል ወይም የግንኙነት አይነት ይምረጡ +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,የ Python ሞጁል ወይም የግንኙነት አይነት ይምረጡ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Fieldname ብጁ መስክ ለ አልተዘጋጀም apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,ለመጨረሻ ጊዜ የተሻሻለው በ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,አይፈቀድም. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,ከ-ገብ apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,እንደ ፍቃድ የሌለዎት በ {0} {1} ላይ የሆነ ፋይልን መሰረዝ አይችሉም apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ወይዘሪት DocType: Website Theme,Background Color,የጀርባ ቀለም -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,ኢሜይል በመላክ ላይ ሳለ ስህተቶች ነበሩ. እባክዎ ዳግም ይሞክሩ. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,ኢሜይል በመላክ ላይ ሳለ ስህተቶች ነበሩ. እባክዎ ዳግም ይሞክሩ. DocType: Portal Settings,Portal Settings,ፖርታል ቅንብሮች DocType: Data Migration Mapping,Mapping,ካርታ DocType: Web Page,0 is highest,0 ከፍተኛ ነው @@ -667,6 +668,7 @@ DocType: Language,Language Name,የቋንቋ ስም DocType: Email Group Member,Email Group Member,የቡድን አባል ኢሜይል DocType: Email Alert,Value Changed,ዋጋ ተቀይሯል apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},አባዛ ስም {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,እንደገና ሞክር DocType: Web Form Field,Web Form Field,የድር ቅጽ መስክ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,ሪፖርት ገንቢ ውስጥ ደብቅ መስክ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML አርትዕ @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,ሱቅ DocType: DocField,Button,ቁልፍ apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} አሁን {1} doctype ነባሪ የህትመት ቅርጸት ነው -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,በማህደር አምዶች +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,በማህደር አምዶች DocType: Email Account,Default Outgoing,ነባሪ የወጪ DocType: Workflow State,play,ይጫወታሉ apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,ከታች ምዝገባ ለማጠናቀቅ አገናኝ ላይ ጠቅ ያድርጉ እና አዲስ የይለፍ ቃል ማዘጋጀት apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,ማከል ነበር -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,ምንም የኢሜይል መለያዎች የተሰየሙ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,ምንም የኢሜይል መለያዎች የተሰየሙ DocType: Contact Us Settings,Contact Us Settings,ከእኛ ቅንብሮች ያነጋግሩ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,በመፈለግ ላይ ... DocType: Workflow State,text-width,ጽሑፍ-ስፋት @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,የሐሳብ ይመልከቱ DocType: Address,Rajasthan,ራጃስታን apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ሪፖርት ገንቢ ሪፖርቶች ሪፖርቱ የአናጺ በቀጥታ የሚተዳደሩ ናቸው. ምንም የማደርገው የለም. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,የእርስዎ ኢሜይል አድራሻ ያረጋግጡ -apps/frappe/frappe/model/document.py +1039,none of,ማንም +apps/frappe/frappe/model/document.py +1045,none of,ማንም apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,እኔ አንድ ቅጂ ላክ DocType: Dropbox Settings,App Secret Key,የመተግበሪያ ሚስጥር ቁልፍ DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,ድህረገፅ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ምልክት የተደረገባቸው ንጥሎች ዴስክቶፕ ላይ ይታያል -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban ቦርድ {0} የለም. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban ቦርድ {0} የለም. +DocType: Data Import,Data Import,የውሂብ ማስገባት apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው DocType: ToDo,Assigned By Full Name,ሙሉ ስም በ ተመድቧል apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ዘምኗል -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ቀናት በፊት DocType: Email Account,Awaiting Password,በመጠባበቅ ላይ የይለፍ ቃል DocType: Address,Address Line 1,አድራሻ መስመር 1 DocType: Custom DocPerm,Role,ሚና apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,ቅንብሮች ... -apps/frappe/frappe/utils/data.py +459,Cent,በመቶ -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,ኢሜይል ፃፍ -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","የስራ ፍሰት ለ ስቴትስ (ለምሳሌ ረቂቅ, የጸደቀ, ተሰርዟል)." +apps/frappe/frappe/utils/data.py +464,Cent,በመቶ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,ኢሜይል ፃፍ +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","የስራ ፍሰት ለ ስቴትስ (ለምሳሌ ረቂቅ, የጸደቀ, ተሰርዟል)." DocType: Print Settings,Allow Print for Draft,ረቂቅ ለ አትም ፍቀድ apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,አዘጋጅ ብዛት -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት DocType: Contact,Unsubscribed,ያልተመዘገበ apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,ገጽ እና ሪፖርት አዘጋጅ ብጁ ሚናዎች apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,ደረጃ መስጠት: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,IMAP ሁኔታ ምላሽ ውስጥ UIDVALIDITY ማግኘት አልተቻለም -,Data Import Tool,የውሂብ አስመጣ መሣሪያ DocType: Address,Dadra and Nagar Haveli,Dadra እና Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያዋቅሩ apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,በመስቀል ላይ ፋይሎች ጥቂት ሰኮንዶች እባክዎ ይጠብቁ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,የእርስዎ ሥዕል ያያይዙ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,የእርስዎ ሥዕል ያያይዙ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ረድፍ እሴቶች ተለውጧል DocType: Workflow State,Stop,ተወ DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,አንተ መክፈት ይፈልጋሉ ገጽ ጋር አገናኝ. እርስዎ አንድ ቡድን ወላጅ ማድረግ ከፈለጉ ባዶውን ይተዉት. @@ -747,7 +748,7 @@ DocType: Report,Script Report,ስክሪፕት ሪፖርት DocType: OAuth Authorization Code,Scopes,ወሰኖች DocType: About Us Settings,Company Introduction,የኩባንያ መግቢያ DocType: DocField,Length,ርዝመት -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,እነበረበት መልስ ወይም እስከመጨረሻው ሰነድ መሰረዝ. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,እነበረበት መልስ ወይም እስከመጨረሻው ሰነድ መሰረዝ. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite ሙከራ ስኬት ጋር የተገደለው. GSuite ውህደት በትክክል የተዋቀረ ነው DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,የመተግበሪያ {0} ተወግዷል DocType: Custom DocPerm,Apply User Permissions,የተጠቃሚ ፍቃዶችን ተግብር DocType: User,Modules HTML,ሞዱሎች ኤችቲኤምኤል -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ DocType: DocType,Other Settings,ሌሎች ቅንብሮች DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,ያልተነበቡ እንደ ምልክት apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} አልተዘጋጀም -DocType: Authentication Log,Operation,ቀዶ ጥገና +DocType: Activity Log,Operation,ቀዶ ጥገና DocType: Customize Form,Change Label (via Custom Translation),(ብጁ ትርጉም በኩል) ለውጥ መለያ ስም apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},ምንም ፈቃድ {0} {1} {2} DocType: Address,Permanent,ቋሚ apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,ማስታወሻ: ሌላ ፈቃድ ደንቦች ደግሞ ማመልከት ይችላሉ apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},መዳረሻ አይፈቀድም {0} ጋር {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +",ይሄ ከተመረጠ ትክክለኛ ውሂብ የያዘ ረድፎች እንዲመጡ ይደረጋሉ እና ልክ ያልሆኑ ረድፎች በኋላ ላይ እንዲያስገቡ ወደ አዲስ ፋይል ይጣላሉ. apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,በአሳሽዎ ውስጥ ይህን ይመልከቱ DocType: DocType,Search Fields,የፍለጋ መስኮች DocType: System Settings,OTP Issuer Name,የ OTP ስም አጽዳ ስም @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ተሸካሚ ማስመሰ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ምንም የተመረጠ ሰነድ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ዶ DocType: Event,Event,ድርጊት -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,መደበኛ መስክ መሰረዝ አልተቻለም. የሚፈልጉ ከሆነ ይህን መደበቅ ትችላለህ DocType: Top Bar Item,For top bar,ከላይ አሞሌ ለ apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ምትኬ ለመስራት ወረፋ አስይዟል. የአውርድ አገናኝ የያዘ ኢሜይል ይደርሰዎታል @@ -789,35 +792,34 @@ DocType: Workflow State,minus,ያለ DocType: S3 Backup Settings,Bucket,ዳቦ apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,የአገልጋይ ስህተት: የ አገልጋይ ምዝግቦች ያረጋግጡ ወይም የቴክኖሎጂ ድጋፍን ያነጋግሩ. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,እንኳን ደህና መጡ ኢሜይል ተልኳል -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,የመጀመሪያው አጠቃቀም ሥርዓት ለማዘጋጀት እንመልከት. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,የመጀመሪያው አጠቃቀም ሥርዓት ለማዘጋጀት እንመልከት. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ተለይተው የቀረቡ apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,ቀድሞውኑ የተመዘገበ DocType: System Settings,Float Precision,ተንሳፈፈ ፕሪስሽን apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,ብቻ አስተዳዳሪ ማርትዕ ይችላሉ -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,የመዝገብ ስም +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,የመዝገብ ስም DocType: DocType,Editable Grid,ሊደረግበት ፍርግርግ DocType: Property Setter,Property Setter,ንብረት አቀናጅ DocType: Web Form,Allow Print,አትም ፍቀድ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ምንም የተጫኑ መተግበሪያዎች apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,እንደ አስገዳጅ በመስክ ላይ ምልክት DocType: Communication,Clicked,ጠቅ ተደርጓል -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} DocType: User,Google User ID,የ Google ተጠቃሚ መታወቂያ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ለመላክ የተያዘለት DocType: DocType,Track Seen,ትራክ አይቼዋለሁ apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,ይህ ዘዴ ብቻ አስተያየት ለመፍጠር ጥቅም ላይ ሊውል ይችላል DocType: Kanban Board Column,orange,ብርቱካናማ -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,ምንም {0} አልተገኙም -apps/frappe/frappe/config/setup.py +245,Add custom forms.,ብጁ ቅጾች ያክሉ. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,ምንም {0} አልተገኙም +apps/frappe/frappe/config/setup.py +252,Add custom forms.,ብጁ ቅጾች ያክሉ. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ውስጥ ከ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,ይህ ሰነድ ገብቷል apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ስርዓቱ ብዙ ቀድሞ የተበየነ ሚና ያቀርባል. እርስዎ በመረጡት ፍቃዶችን ማዘጋጀት አዲስ ሚና ማከል ይችላሉ. DocType: Communication,CC,ዝግ መግለጫ DocType: Country,Geo,የጂኦ -DocType: Domain Settings,Domains,ጎራዎች +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,ጎራዎች DocType: Blog Category,Blog Category,የጦማር ምድብ apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,የሚከተሉት ሁኔታ ካልተሳካ ምክንያቱም ካርታ አልተቻለም: -DocType: Data Migration Connector,Postgres,ፖስትጋሮች DocType: Role Permission for Page and Report,Roles HTML,ሚናዎችን ኤችቲኤምኤል apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,በመጀመሪያ አንድ ብራንድ ምስል ይምረጡ. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,ገቢር @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,ሰማያዊ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,መላበሶች ሁሉ ይወገዳሉ. አባክዎ ያጽድቁ. DocType: Page,Page HTML,ገጽ ኤችቲኤምኤል -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,ተጨማሪ መስቀለኛ ብቻ 'ቡድን' አይነት አንጓዎች ስር ሊፈጠር ይችላል +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,ተጨማሪ መስቀለኛ ብቻ 'ቡድን' አይነት አንጓዎች ስር ሊፈጠር ይችላል DocType: SMS Parameter,Header,የራስጌ -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ያልታወቀ አምድ: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},ያልታወቀ አምድ: {0} DocType: Email Alert Recipient,Email By Role,ሚና በ ኢሜይል apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,ሚና {0} ጋር ተጠቃሚዎች: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},በመጫን ላይ መተግበሪያ {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,በስርዓቱ ውስጥ አን DocType: Communication,Label,ምልክት apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","ወደ ተግባር {0} ከ {1}, ዝግ ተደርጓል የተመደበ ነው." DocType: User,Modules Access,ሞዱሎች መዳረሻ -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,ይህን መስኮት ዝጋ እባክዎ +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,ይህን መስኮት ዝጋ እባክዎ DocType: Print Format,Print Format Type,አትም ቅርጸት አይነት DocType: Newsletter,A Lead with this Email Address should exist,በዚህ ኢሜይል አድራሻ ጋር አንድ ሊድ ሊኖር ይገባል apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,የድር ክፈት ምንጭ መተግበሪያዎች DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","«ከ Google የድር ቅርጸ ቁምፊ" ስም ያክሉ, ለምሳሌ "ክፈት ጭረት"" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,የተመደበለት Out ይጠይቁ +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,ጎራዎችን አንቃ / አሰናክል DocType: Role Permission for Page and Report,Allow Roles,ሚናዎችን ፍቀድ DocType: DocType,Hide Toolbar,አሞሌ ደብቅ DocType: User,Last Active,ንቁ የመጨረሻ DocType: Email Account,SMTP Settings for outgoing emails,ለወጪ ኢሜይሎች SMTP ቅንብሮች -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,ማስመጣት አልተሳካም apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,የይለፍ ቃልህ ዘምኗል. እዚህ አዲስ የይለፍ ቃል ነው DocType: Email Account,Auto Reply Message,ራስ-ምላሽ መልዕክት DocType: Feedback Trigger,Condition,ሁኔታ -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} ሰዓታት በፊት -apps/frappe/frappe/utils/data.py +574,1 month ago,1 ወር በፊት +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} ሰዓታት በፊት +apps/frappe/frappe/utils/data.py +586,1 month ago,1 ወር በፊት DocType: Contact,User ID,የተጠቃሚው መለያ DocType: Communication,Sent,ተልኳል DocType: Address,Kerala,በኬረለ @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,የእርስዎ የደንበኝነት ምዝገባ ነገ ጊዜው ያልፍበታል. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,ተቀምጧል! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} ትክክለኛ የሄምፊ ቀለም አይደለም apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,እመቤት apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},የተዘመነ {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,ባለቤት DocType: DocType,User Cannot Create,ተጠቃሚ ይፍጠሩ አይቻልም apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,አቃፊ {0} የለም -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! DocType: Customize Form,Enter Form Type,ቅጽ አይነት ያስገቡ +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,የጎደለ መለኪያ የካንቦን ቦርድ ስም apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ምንም መዛግብት መለያ ሰጥታለች. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,መስክ አስወግድ DocType: User,Send Password Update Notification,የይለፍ ቃል አዘምን ማሳወቂያ ላክ @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,አረንጓዴ DocType: Custom DocPerm,Additional Permissions,ተጨማሪ ፍቃዶች DocType: Email Account,Always use Account's Email Address as Sender,ሁልጊዜ የላኪ እንደ መለያ የኢሜይል አድራሻ ይጠቀሙ apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,አስተያየት ለመስጠት ይግቡ -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,በዚህ መስመር በታች ውሂብ በማስገባት ይጀምሩ +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,በዚህ መስመር በታች ውሂብ በማስገባት ይጀምሩ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},ለ ለውጥ እሴቶች {0} DocType: Workflow State,retweet,ትዊት apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,ብጁ አድርግ ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,ተሰናክሏል DocType: Workflow State,eye-close,ዓይን-ዝጋ DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth አቅራቢ ቅንብሮች -apps/frappe/frappe/config/setup.py +257,Applications,መተግበሪያዎች +apps/frappe/frappe/config/setup.py +264,Applications,መተግበሪያዎች apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,ይህን ችግር ሪፖርት አድርግ DocType: Custom Script,Adds a custom script (client or server) to a DocType,አንድ DocType ወደ ብጁ ስክሪፕት (ደንበኛ ወይም አገልጋይ) ያክላል DocType: Address,City/Town,ከተማ / መለስተኛ ከተማ @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,የእርስዎ ኩባንያ አድራ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,የአርትዖት ረድፍ DocType: Workflow Action,Workflow Action Master,የስራ ፍሰት እርምጃ መምህር DocType: Custom Field,Field Type,የመስክ ዓይነት -apps/frappe/frappe/utils/data.py +489,only.,ብቻ ነው. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP ሚስጥር በአስተዳዳሪው ብቻ ነው ሊጀምር የሚችለው. +apps/frappe/frappe/utils/data.py +494,only.,ብቻ ነው. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP ሚስጥር በአስተዳዳሪው ብቻ ነው ሊጀምር የሚችለው. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,ከእናንተ ጋር የተዛመዱ ዓመታት ራቅ. DocType: GSuite Templates,GSuite Templates,GSuite አብነቶች -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,ሲወጡና apps/frappe/frappe/utils/goal.py +109,Goal,ግብ apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,ልክ ያልሆነ ደብዳቤ አገልጋይ. ለማስተካከል እና እንደገና ይሞክሩ. DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,ፊልም apps/frappe/frappe/model/db_query.py +375,No permission to read {0},ፈቃድ የለም ለማንበብ {0} apps/frappe/frappe/config/desktop.py +8,Tools,መሣሪያዎች apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,ከቅርብ ዓመታት ወዲህ ራቅ. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,በርካታ የስር እባጮች አይፈቀድም. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,በርካታ የስር እባጮች አይፈቀድም. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","ከነቃ, ተጠቃሚዎች መግባት ሁሉ ጊዜ እንዲያውቁት ይደረጋል. የነቃ አይደለም ከሆነ, ተጠቃሚዎች አንድ ጊዜ ብቻ እንዲያውቁት ይደረጋል." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,ልክ ያልሆነ {0} ሁኔታ +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,ልክ ያልሆነ {0} ሁኔታ DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","ከተመረጠ, ተጠቃሚዎች ያረጋግጡ መዳረሻ መገናኛ ማየት አይችሉም." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,መታወቂያ መስክ ሪፖርት በመጠቀም እሴቶች አርትዕ ማድረግ ያስፈልጋል. የ አምድ መራጭ በመጠቀም መታወቂያ መስክ እባክዎ ይምረጡ apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,አስተያየቶች apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,አረጋግጥ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,ሁሉንም ሰብስብ @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,አዘጋጅ የተጠቃሚ ፍቃዶች DocType: Email Account,Email Account Name,የኢሜይል መለያ ስም apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,ይምረጡ የሰነድ አይነቶች -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,መሸወጃ መዳረሻ ማስመሰያ በማመንጨት ላይ ሳለ የሆነ ችግር ተፈጥሯል. ተጨማሪ ዝርዝሮችን ለማግኘት የስህተት ምዝግብ ይፈትሹ. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,መሸወጃ መዳረሻ ማስመሰያ በማመንጨት ላይ ሳለ የሆነ ችግር ተፈጥሯል. ተጨማሪ ዝርዝሮችን ለማግኘት የስህተት ምዝግብ ይፈትሹ. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","እውቂያዎች ጋዜጣዎች, ይመራል." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","ለምሳሌ "ድጋፍ", "ሽያጭ", "ጄሪ ያንግ"" @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,የፌስቡክ ተጠቃሚ መታወቂያ DocType: Workflow State,fast-forward,በፍጥነት ወደፊት DocType: Communication,Communication,መገናኛ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","ትዕዛዝ ማዘጋጀት, ይጎትቱ ለመምረጥ አምዶች ይመልከቱ." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,ይህ ቋሚ ድርጊት ነው እና መቀልበስ አትችልም. ይቀጥሉ? DocType: Event,Every Day,በየቀኑ DocType: LDAP Settings,Password for Base DN,የመሠረት DN ለ የይለፍ ቃል apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,ሠንጠረዥ መስክ -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,አምዶች ላይ የተመሠረተ +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,አምዶች ላይ የተመሠረተ apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,በ Google GSuite ጋር ውህደት ለማንቃት ቁልፎች ያስገቡ DocType: Workflow State,move,ተንቀሳቀሰ -apps/frappe/frappe/model/document.py +1223,Action Failed,እርምጃ አልተሳካም +apps/frappe/frappe/model/document.py +1229,Action Failed,እርምጃ አልተሳካም apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,የተጠቃሚ ለ -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,መለያዎች ገበታ +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,መለያዎች ገበታ DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,በደንበኝነት ምዝገባዎ ውስጥ የቀሩት {0} ቀኖች አሉዎት +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,በደንበኝነት ምዝገባዎ ውስጥ የቀሩት {0} ቀኖች አሉዎት apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,የወጪ የኢሜይል መለያ ትክክል አይደለም apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily ተሰናክሏል apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} ተጭኗል -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,የኢሜይል አድራሻ ማዘጋጀት እባክዎ +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,የኢሜይል አድራሻ ማዘጋጀት እባክዎ DocType: System Settings,Date and Number Format,ቀን እና የቁጥር ቅርጸት apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,ከፍተኛው አባሪ መጠን ነው {0} ሜባ -apps/frappe/frappe/model/document.py +1038,one of,አንዱ -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,ለመቅዳት ፋይል ይምረጡ +apps/frappe/frappe/model/document.py +1044,one of,አንዱ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,አንድ አፍታ በማረጋገጥ ላይ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,አሳይ መለያዎች DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ተግብር ጥብቅ የተጠቃሚ ፈቃድ መዋቀሩን እና የተጠቃሚ ፍቃድ አንድ ተጠቃሚ አንድ DocType ለ ይገለጻል ከሆነ, ከዚያም አገናኝ ዋጋ ባዶ ቦታ ሁሉ ሰነዶች, ይህ ተጠቃሚ አይታዩም" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,እርምጃዎች DocType: Workflow State,align-justify,አሰልፍ-ሰበብ DocType: User,Middle Name (Optional),የመካከለኛ ስም (አማራጭ) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,አይፈቀድም -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,የሚከተሉት መስኮች የሚጎድሉ እሴቶች አለን: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,የ እርምጃ ለማጠናቀቅ በቂ ፍቃዶች የለዎትም +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,የሚከተሉት መስኮች የሚጎድሉ እሴቶች አለን: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,የ እርምጃ ለማጠናቀቅ በቂ ፍቃዶች የለዎትም apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,ምንም ውጤቶች DocType: System Settings,Security,መያዣ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,{0} ተቀባዮች መላክ የተያዘለት +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,ቆርጠህ apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},ከ ተሰይሟል {0} ወደ {1} DocType: Currency,**Currency** Master,** ምንዛሬ ** መምህር DocType: Email Account,No of emails remaining to be synced,ቀሪ ኢሜይሎች መካከል ምንም መመሳሰል -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,በመስቀል ላይ +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,በመስቀል ላይ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,ምድብ በፊት ሰነዱን ያስቀምጡ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,ሳንካዎችን እና የአስተያየት ጥቆማዎችን ለመላክ እዚህ ጠቅ ያድርጉ DocType: Website Settings,Address and other legal information you may want to put in the footer.,አድራሻ እና ሌሎች ህጋዊ መረጃ ወደ ግርጌ ላይ ማስቀመጥ ይፈልጉ ይሆናል. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} ደቂቃዎች በፊት DocType: Kanban Board Column,lightblue,ዉሃ ሰማያዊ apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,ተመሳሳይ መስክ ከአንድ በላይ ጊዜ ተጨምሯል -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. የሚከተለውን ይምረጡ-አምዶች apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ግልጽ apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,እያንዳንዱ ቀን ክስተቶች በአንድ ቀን ላይ መጨረስ አለባቸው. DocType: Communication,User Tags,የተጠቃሚ መለያዎች @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,ስግን እን DocType: Web Page,Main Section,ዋና ክፍል DocType: Page,Icon,አዶ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,5 እና 10 መካከል እሴቶችን ለማጣራት -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","ፍንጭ: የይለፍ ላይ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","ፍንጭ: የይለፍ ላይ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,አዋቅር> የተጠቃሚ ፈቃዶች አስተዳዳሪ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,ፒዲኤፍ DocType: System Settings,dd/mm/yyyy,ቀን / ወር / ዓ.ም apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite ስክሪፕት ፈተና @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,የቅጂ መብት apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,ሂድ DocType: OAuth Authorization Code,Invalid,ዋጋ ቢስ DocType: ToDo,Due Date,የመጨረሻ ማስረከቢያ ቀን -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,ሩብ ቀን +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,ሩብ ቀን DocType: Social Login Keys,Google Client Secret,የ Google የደንበኛ ሚስጥር DocType: Website Settings,Hide Footer Signup,ግርጌ ምዝገባ ደብቅ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,ይህ ሰነድ ተሰርዟል apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ይህን የተቀመጡ እና አምድ እና ውጤት መመለስ ባለበት ተመሳሳይ አቃፊ ውስጥ ዘንዶ ፋይል ጻፍ. DocType: DocType,Sort Field,ደርድር መስክ DocType: Razorpay Settings,Razorpay Settings,Razorpay ቅንብሮች -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,አርትዕ ማጣሪያ -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,አርትዕ ማጣሪያ +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,አክል ተጨማሪ DocType: System Settings,Session Expiry Mobile,ክፍለ ጊዜ የሚቃጠልበት ሞባይል apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,የፍለጋ ውጤቶች apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,አውርድ ወደ ይምረጡ: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,{0} አይፈቀድም ከሆነ DocType: Custom DocPerm,If user is the owner,ተጠቃሚ ባለቤት ከሆነ +apps/frappe/frappe/config/integrations.py +88,Maps,ካርታ ,Activity,ሥራ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",እርዳታ: በስርዓቱ ውስጥ ሌላ ታሪክ ጋር ማገናኘት ላይ አገናኝ ዩአርኤል እንደ "# ቅፅ / ማስታወሻ / [ስም ማስታወሻ]" ይጠቀሙ. (አይጠቀሙ «http: //») DocType: User Permission,Allow,ፍቀድ apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,የአምላክ በተደጋጋሚ ቃላት እና ቁምፊዎች ለማስወገድ እንመልከት DocType: Communication,Delayed,ዘግይቷል -apps/frappe/frappe/config/setup.py +126,List of backups available for download,ለመውረድ የሚገኙ ምትኬዎች ዝርዝር +apps/frappe/frappe/config/setup.py +133,List of backups available for download,ለመውረድ የሚገኙ ምትኬዎች ዝርዝር apps/frappe/frappe/www/login.html +86,Sign up,ተመዝገቢ DocType: Test Runner,Output,ዉጤት DocType: Email Alert,Set Property After Alert,ማንቂያ በኋላ ንብረት አዘጋጅ -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,ቅጾች መስኮች ያክሉ. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,ቅጾች መስኮች ያክሉ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,ነገር ይመስላል ይህ ጣቢያ የ Paypal ውቅር ጋር ስህተት ነው. DocType: File,rgt,rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,የፋይል ዓይነት DocType: Workflow State,leaf,ቅጠል DocType: Portal Menu Item,Portal Menu Item,ፖርታል ምናሌ ንጥል DocType: Contact Us Settings,Email ID,የኢሜይል መታወቂያ +DocType: Activity Log,Keep track of all update feeds,የሁሉም ዝመናዎች ምግቦች ዱካ ይከታተሉ DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ሪፖርት DocType ለ ከተመረጠ ነው ነገር ግን ምንም የተጠቃሚ ፍቃዶች አንድ ተጠቃሚ ሪፖርት የተገለጹ የተጠቃሚ ፍቃዶችን ተግብር ከሆነ, ከዚያ ሁሉንም ሪፖርቶች ይህ ተጠቃሚ እንደሚታዩ" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: አክል Reference: {{ reference_doctype }} {{ reference_name }}
ለመላክ ሰነድ ማጣቀሻ
apps/frappe/frappe/modules/utils.py +196,App not found,መተግበሪያ አልተገኘም
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},መፍጠር አልተቻለም አንድ {0} አንድ ልጅ ሰነድ ላይ: {1}
@@ -1898,7 +1902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,የማይሠራ
DocType: Contact,Accounts Manager,መለያዎች አስተዳዳሪ
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,የእርስዎ ክፍያ ተሰርዟል.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,ይምረጡ የፋይል አይነት
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,ይምረጡ የፋይል አይነት
DocType: Help Article,Knowledge Base Editor,እውቀት ቤዝን አርታዒ
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ገጹ አልተገኘም
DocType: DocField,Precision,ትክክልነት
@@ -1925,12 +1929,12 @@ DocType: Property Setter,Property Type,የንብረት አይነት
DocType: Workflow State,screenshot,ቅጽበታዊ ገጽ እይታ
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ብቻ አስተዳዳሪ መደበኛ ሪፖርት ማስቀመጥ ይችላሉ. ዳግም መሰየም እና ያስቀምጡ.
DocType: System Settings,Background Workers,የጀርባ ሠራተኞች
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Fieldname {0} ሜታ ነገር ጋር የሚጋጩ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Fieldname {0} ሜታ ነገር ጋር የሚጋጩ
DocType: Deleted Document,Data,መረጃ
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,የሰነድ ሁኔታ
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ሠራህ {0} መካከል {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ማረጋገጫ ኮድ
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,ያስመጡ አልተፈቀደልህም
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,ያስመጡ አልተፈቀደልህም
DocType: Social Login Keys,Frappe Client Secret,Frappe የደንበኛ ሚስጥር
DocType: Deleted Document,Deleted DocType,ተሰርዟል DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,ፍቃድ ደረጃዎች
@@ -1938,11 +1942,11 @@ DocType: Workflow State,Warning,ማስጠንቀቂያ
DocType: Data Migration Run,Percent Complete,መቶኛ የተጠናቀቀ
DocType: Tag Category,Tag Category,መለያ ምድብ
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","አንድ ቡድን በተመሳሳይ ስም ስላለ, ንጥል {0} ችላ!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,እርዳታ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,እርዳታ
DocType: User,Login Before,መግቢያ በፊት
DocType: Web Page,Insert Style,አስገባ ቅጥ
-apps/frappe/frappe/config/setup.py +262,Application Installer,የመተግበሪያ ጫኝ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,አዲስ ሪፖርት ስም
+apps/frappe/frappe/config/setup.py +269,Application Installer,የመተግበሪያ ጫኝ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,አዲስ ሪፖርት ስም
DocType: Workflow State,info-sign,መረጃ-ምልክት
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,{0} ዝርዝር ሊሆን አይችልም እሴት
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ይህን ምንዛሬ እንዴት መቀረጽ አለበት? ካልተዘጋጀ, ሥርዓት ነባሪዎችን ይጠቀማል"
@@ -1978,8 +1982,8 @@ DocType: OAuth Client,Default Redirect URI,ነባሪ ማዘዋወር URI
DocType: Email Alert,Recipients,ተቀባዮች
DocType: System Settings,Choose authentication method to be used by all users,በሁሉም ተጠቃሚዎች የሚጠቀሙበት የማረጋገጫ ዘዴ ይምረጡ
DocType: Workflow State,ok-sign,ok-ምልክት
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,የተሰረዙ ሰነዶች
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,የ CSV ቅርፀት ለጉዳዩ ተፅዕኖ ነው
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,የተሰረዙ ሰነዶች
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,የ CSV ቅርፀት ለጉዳዩ ተፅዕኖ ነው
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,ዴስክቶፕ አዶ ቀድሞውንም አለ
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,የተባዛ ነገር
DocType: Newsletter,Create and Send Newsletters,ፍጠር እና ላክ ጋዜጣዎች
@@ -1987,14 +1991,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,የአናማሪ እና የኒኮባር ደሴቶች
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite ሰነድ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,ምልክት መደረግ አለበት ይህም ዋጋ መስክ ይግለጹ
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","ወላጅ" በዚህ ረድፍ መታከል አለበት ውስጥ ወላጅ ጠረጴዛ ያመለክታል
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","ወላጅ" በዚህ ረድፍ መታከል አለበት ውስጥ ወላጅ ጠረጴዛ ያመለክታል
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,ይህን ኢሜይል ለመላክ አልተቻለም. ለእዚህ ቀን የ {0} ኢሜይሎች ገደብ አልፈዋል.
DocType: Website Theme,Apply Style,ቅጥ ተግብር
DocType: Feedback Request,Feedback Rating,ግብረ ደረጃ አሰጣጥ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,ጋር የተጋራ
DocType: Help Category,Help Articles,የእገዛ ርዕሶች
,Modules Setup,ሞዱሎች ማዋቀር
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,አይነት:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,አይነት:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,የእርስዎ ክፍያ አልተሳካም.
DocType: Communication,Unshared,አልተጋራም
DocType: Address,Karnataka,ካርናታካ
@@ -2003,12 +2007,11 @@ DocType: User,Location,አካባቢ
,Permitted Documents For User,ተጠቃሚ አይፈቀድም ሰነዶች
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",አንተ «አጋራ» ፍቃድ ሊኖርዎት ይገባል
DocType: Communication,Assignment Completed,ተልእኮ ተጠናቋል
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},የጅምላ አርትዕ {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},የጅምላ አርትዕ {0}
DocType: Email Alert Recipient,Email Alert Recipient,የኢሜይል ማንቂያ ተቀባይ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,ገባሪ አይደለም
DocType: About Us Settings,Settings for the About Us Page,በ ስለ እኛ ገጽ ቅንብሮች
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,ሰንበር የክፍያ ፍኖት ቅንብሮች
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,ሰነድ ይምረጡ አይነት ያውርዱ
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ለምሳሌ pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,መዛግብት ለማጣራት ወደ መስክ ይጠቀሙ
DocType: DocType,View Settings,ይመልከቱ ቅንብሮች
@@ -2031,6 +2034,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,ተሰ
DocType: Unhandled Email,Unhandled Email,Unhandled ኢሜይል
DocType: Event,Monday,ሰኞ
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,ከአሁን በኋላ ሰሌዳ ቅጦችን መጠቀም
+DocType: Data Import,Don't create new records,አዲስ ሪኮርድን አይፍጠሩ
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,የታቀፉ ስብስብ ስህተት. የ አስተዳዳሪ ያነጋግሩ.
DocType: Workflow State,envelope,ፖስታ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,አማራጭ 2
@@ -2041,41 +2045,41 @@ DocType: Website Settings,Brand Image,የምርት ምስል
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ከላይ የዳሰሳ አሞሌ, ግርጌ እና ዓርማ ማዋቀር."
DocType: Web Form Field,Max Value,ከፍተኛ እሴት
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3}
DocType: Contact,All,ሁሉ
DocType: Email Queue,Recipient,ተቀባይ
DocType: Communication,Has Attachment,አባሪ አለው
DocType: Address,Sales User,የሽያጭ ተጠቃሚ
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,ይጎትቱ እና ጣል መሣሪያ ለመገንባት እና የህትመት ቅርጸቶች ለማበጀት.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,ይጎትቱ እና ጣል መሣሪያ ለመገንባት እና የህትመት ቅርጸቶች ለማበጀት.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,ዘርጋ
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,አዘጋጅ
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,ይህ መጠይቅ ቅጥ እንዲቋረጥ
DocType: Email Alert,Trigger Method,ቃታ ዘዴ
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},ኦፕሬተር መካከል አንዱ መሆን አለበት {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},ኦፕሬተር መካከል አንዱ መሆን አለበት {0}
DocType: Dropbox Settings,Dropbox Access Token,መሸወጃ የመዳረሻ ማስመሰያ
DocType: Workflow State,align-right,አሰልፍ-ቀኝ
DocType: Auto Email Report,Email To,ወደ ኢሜይል
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,አቃፊ {0} ባዶ አይደለም
DocType: Page,Roles,ሚናዎችን
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},ስህተት: ለ ጠፍቷል ዋጋ {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,ክፍለ ጊዜ የሚቃጠልበት
DocType: Workflow State,ban-circle,እገዳ-ክበብ
DocType: Email Flag Queue,Unread,ያልተነበበ
DocType: Bulk Update,Desk,የጽሕፈተ ጠረጴዛ
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),ማጣሪያ (ዝርዝር ውስጥ) አንድ tuple ወይም ዝርዝር መሆን አለበት
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),ማጣሪያ (ዝርዝር ውስጥ) አንድ tuple ወይም ዝርዝር መሆን አለበት
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,አንድ ምረጥ መጠይቅ ጻፍ. ማስታወሻ ውጤት (ሁሉንም ውሂብ በአንድ ጉዞ ውስጥ ይላካል) ያስችላለ አይደለም.
DocType: Email Account,Attachment Limit (MB),ዓባሪ ገደብ (ሜባ)
DocType: Address,Arunachal Pradesh,አሩናቻል ፕራዴሽ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,አዋቅር ራስ ኢሜይል
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,አዋቅር ራስ ኢሜይል
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + ወደ ታች
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,ይህ ከላይ-10 የጋራ የይለፍ ቃል ነው.
DocType: User,User Defaults,የተጠቃሚ ነባሪዎችን
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,አዲስ ፍጠር
DocType: Workflow State,chevron-down,ሸቭሮን-ታች
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),አልተላከም ኢሜይል {0} (ተሰናክሏል / ከደንበኝነት)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),አልተላከም ኢሜይል {0} (ተሰናክሏል / ከደንበኝነት)
DocType: Async Task,Traceback,Traceback
DocType: Currency,Smallest Currency Fraction Value,ትንሹ የምንዛሬ ክፍልፋይ ዋጋ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ወደ መድብ
@@ -2095,7 +2099,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,የስደት መታወቂያ መስክ
DocType: Communication,Comment Type,የአስተያየት አይነት
DocType: OAuth Client,OAuth Client,OAuth ደንበኛ
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,ተጠቃሚዎች
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,ተጠቃሚዎች
DocType: Communication,Timeline field Name,የጊዜ መስመር የመስክ ስም
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,ሪፖርት አይነት
@@ -2105,7 +2109,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","በፌስቡክ, በ Google, የፊልሙ በኩል መግቢያ ለማንቃት ቁልፎች ያስገቡ."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},የፋይል ቅርጸት ማንበብ አልተቻለም {0}
DocType: Auto Email Report,Filter Data,የማጣሪያ ውሂብ
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,አንድ መለያ አክል
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","ስም ማዋቀር አንዳንድ ስህተቶች ነበሩ, አስተዳዳሪ ያነጋግሩ"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ገቢ የኢሜይል መለያ ትክክል አይደለም
@@ -2128,7 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,እ
DocType: Website Theme,Link Color,አገናኝ ቀለም
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,አባል {0} ተሰናክሏል አይችልም
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","ውድ የስርዓት አስተዳዳሪ,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,ሀገርህ
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,ሀገርህ
DocType: Event,Sunday,እሁድ
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,ፍርግርግ እይታ ውስጥ
DocType: Address Template,Template,አብነት
@@ -2153,7 +2156,7 @@ DocType: DocField,Table,ጠረጴዛ
DocType: File,File Size,የፋይል መጠን
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,ይህን ቅጽ ማስገባት መግባት አለበት
DocType: User,Background Image,የጀርባ ምስል
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ዞን እና ምንዛሬ ይምረጡ"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ዞን እና ምንዛሬ ይምረጡ"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,መካከል
DocType: Async Task,Queued,ተሰልፏል
@@ -2167,12 +2170,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,የመተግበሪያ መዳረሻ ቁልፍ
DocType: OAuth Bearer Token,Access Token,የመዳረሻ ማስመሰያ
DocType: About Us Settings,Org History,ድርጅት ታሪክ
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,መጠባበቂያ መጠን:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,መጠባበቂያ መጠን:
DocType: Workflow,Workflow Name,የስራ ፍሰት ስም
DocType: DocShare,Notify by Email,በኢሜይል አሳውቅ
DocType: DocField,In Standard Filter,መደበኛ ማጣሪያ ውስጥ
DocType: Web Form,Allow Edit,አርትዕ ፍቀድ
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,ለጥፍ
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,ለጥፍ
DocType: Webhook,Doc Events,የሰነድ ክስተቶች
DocType: Auto Email Report,Based on Permissions For User,ተጠቃሚ ፍቃዶች ላይ የተመሠረተ
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},ተሰርዟል ሰነዴ ሁኔታ መቀየር አይቻልም. የሽግግር ረድፍ {0}
@@ -2185,10 +2188,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","የይለፍ ውስጥ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","መስክ «{0}» ብጁ መስክ ላይ የተጠቀሰው በኋላ አስገባ «{1}», መለያ ጋር «{2}», የለም"
DocType: Workflow State,signal,ምልክት
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,ዓባሪዎች አሉት
DocType: DocType,Show Print First,አሳይ አትም በመጀመሪያ
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl ለመለጠፍ አስገባ +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},ለማድረግ አዲስ {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,አዲስ የኢሜይል መለያ
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,አዲስ የኢሜይል መለያ
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,ሰነድ ወደነበረበት ተመልሷል
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,ቋንቋ ይምረጡ ...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},በመስክ ላይ «አማራጮች» ማዘጋጀት አይችሉም {0}
@@ -2209,13 +2213,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,ወደ መጣያ አንቀሳቅስ
DocType: Web Form,Web Form Fields,የድር ቅጽ መስኮች
DocType: Website Theme,Top Bar Text Color,ከፍተኛ አሞሌ የጽሁፍ ቀለም
+DocType: Data Import,Amended From,ከ እንደተሻሻለው
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},ማስጠንቀቂያ: አልተቻለም ለማግኘት ወደ {0} ጋር የሚዛመድ ማንኛውም ሰንጠረዥ ውስጥ {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,ይህ ሰነድ በአሁኑ ጊዜ እንዲገደል ወረፋ ነው. እባክዎ ዳግም ይሞክሩ
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,ይህ ሰነድ በአሁኑ ጊዜ እንዲገደል ወረፋ ነው. እባክዎ ዳግም ይሞክሩ
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,ፋይል «{0} 'አልተገኘም
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ክፍል አስወግድ
DocType: User,Change Password,የሚስጥር ቁልፍ ይቀይሩ
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},ልክ ያልሆነ ኢሜይል: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,ሰላም!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,ሰላም!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,የክስተት መጨረሻ ከመጀመሪያው ቀጥሎ መሆን አለበት
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,ይሄ ከሌሎች መሳሪያዎች ውስጥ {0} ን ይወጣል
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},በእናንተ ላይ አንድ ሪፖርት ለማግኘት ፈቃድ የለህም: {0}
@@ -2224,26 +2229,27 @@ DocType: DocField,Allow Bulk Edit,የጅምላ አርትዕ ፍቀድ
DocType: Blog Post,Blog Post,የጦማር ልጥፍ
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,የላቀ ፍለጋ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,ጋዜጣውን ለማየት አይፈቀድልዎትም.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","ደረጃ 0 መስክ ደረጃ ፈቃዶችን ለ ሰነድ ደረጃ ፈቃዶች, \ ከፍተኛ ደረጃ ነው."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,ቅደምተከተሉ የተስተካከለው
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,የውሂብ ማስመጣት በሂደት ላይ እያለ ቅጹን ማስቀመጥ አይቻልም.
DocType: Workflow,States,ስቴትስ
DocType: Email Alert,Attach Print,አትም ያያይዙ
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},የተጠቆሙ የተጠቃሚ ስም: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,ቀን
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,ቀን
,Modules,ሞዱሎች
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,ዴስክቶፕ አዶዎች አዘጋጅ
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,የክፍያ ስኬት
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,ምንም {0} ደብዳቤ
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,መስቀል ፋይሎች ላይ ስህተት
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,ምንም {0} ደብዳቤ
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,መስቀል ፋይሎች ላይ ስህተት
DocType: OAuth Bearer Token,Revoked,ተሽሯል
DocType: Web Page,Sidebar and Comments,የጎን አሞሌ እና አስተያየቶች
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",አንድ ሰነድ በኋላ ይቅር እና ማስቀመጥ እንዲሻሻል ጊዜ: አሮጌውን ቁጥር አንድ ስሪት ነው አዲስ ቁጥር ያገኛሉ.
DocType: Stripe Settings,Publishable Key,Publishable ቁልፍ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,ማስመጣት ይጀምሩ
DocType: Workflow State,circle-arrow-left,ክበብ-ቀስት-ግራ
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis መሸጎጫ አገልጋይ እየሄደ አይደለም. አስተዳዳሪ / ቴክኒካል ድጋፍ ያነጋግሩ
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,የፓርቲ ስም
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,የፓርቲ ስም
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,አዲስ መዝገብ ይስሩ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,በመፈለግ ላይ
DocType: Currency,Fraction,ክፍልፋይ
@@ -2268,8 +2274,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,ንጥሎች ያግኙ
DocType: Contact,Image,ምስል
DocType: Workflow State,remove-sign,አስወግድ-ምልክት
+DocType: Domain Settings,Domains HTML,ጎራዎች ኤች ቲ ኤም ኤል
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,ለመፈለግ የፍለጋ ሳጥን ውስጥ የሆነ ነገር ይተይቡ
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,ቅፆች ደንቦችዎን ይግለጹ.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,ቅፆች ደንቦችዎን ይግለጹ.
DocType: Address,Other,ሌላ
DocType: S3 Backup Settings,Access Key ID,የመዳረሻ መታወቂያ ይድረሱ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,አዲስ ቅርጸት ይጀምሩ
@@ -2282,6 +2289,7 @@ DocType: Customize Form Field,Is Custom Field,ብጁ መስክ ነው
DocType: Workflow,"If checked, all other workflows become inactive.","ከተመረጠ, ሁሉም ሌሎች ደንቦችዎን-አልባ ይሆናሉ."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[ሰይም]: [የመስክ አይነት] / [አማራጮች]: [ስፋት]
DocType: Workflow State,folder-close,አቃፊ-ዝጋ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,ሪፖርት
DocType: Print Settings,Print taxes with zero amount,በዜሮ መጠን ግብር ያትሙ
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} ተሰይሟል ዘንድ አይፈቀድም
DocType: Custom Script,Custom Script,ብጁ ስክሪፕት
@@ -2293,32 +2301,35 @@ DocType: Email Flag Queue,Action,እርምጃ
DocType: GSuite Settings,Script URL,ስክሪፕት ዩ አር ኤል
apps/frappe/frappe/www/update-password.html +111,Please enter the password,እባክዎ የይለፍ ቃል ያስገቡ
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,አይደለም የተሰረዙ ሰነዶችን ማተም አይፈቀድም
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,እናንተ አምዶች መፍጠር አይፈቀድም
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,መረጃ:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,እናንተ አምዶች መፍጠር አይፈቀድም
+DocType: Data Import,If you don't want to create any new records while updating the older records.,የቆዩ መዛግብትን በማዘመን አዳዲስ መዛግብት መፍጠር ካልፈለጉ.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,መረጃ:
DocType: Custom Field,Permission Level,ፍቃድ ደረጃ
DocType: User,Send Notifications for Transactions I Follow,እኔ ተከተለኝ የግብይት ማሳወቂያዎች ላክ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም"
+DocType: Google Maps,Client Key,የደንበኛ ቁልፍ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ወደ አባሪ መሰረዝ ይፈልጋሉ እርግጠኛ ነዎት?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም {1} ጋር የተያያዘ ነው {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,አመሰግናለሁ
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,በማስቀመጥ ላይ
DocType: Print Settings,Print Style Preview,ቅጥ የህትመት ቅድመ እይታ
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,ይህንን የድር ቅጽ ሰነድ ለማዘመን አይፈቀዱም
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,ኢሜይሎች
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,ኢሜይሎች
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,በመጀመሪያ የሰነድ አይነት ይምረጡ
DocType: About Us Settings,About Us Settings,እኛ ቅንብሮች ስለ
DocType: Website Settings,Website Theme,የድር ጣቢያ ጭብጥ
DocType: DocField,In List View,ዝርዝር ይመልከቱ
DocType: Email Account,Use TLS,ይጠቀሙ TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ልክ ያልሆነ አገባብ ወይም የይለፍ ቃል
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,ቅጾች ብጁ ጃቫስክሪፕት ያክሉ.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,SR አይ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,አውርድ አብነት
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,ቅጾች ብጁ ጃቫስክሪፕት ያክሉ.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,SR አይ
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አልተዋቀረም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ
,Role Permissions Manager,ሚና ፍቃዶች አስተዳዳሪ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም
DocType: Data Migration Run,Pull Insert,ሳጥኑን አስገባ
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,አጽዳ አባሪ
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,የግዴታ:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,የግዴታ:
,User Permissions Manager,የተጠቃሚ ፍቃዶች አስተዳዳሪ
DocType: Property Setter,New value to be set,አዲስ እሴት እንዲዘጋጅ
DocType: Email Alert,Days Before or After,ቀናት በፊት ወይም በኋላ
@@ -2328,7 +2339,7 @@ DocType: Website Settings,HTML Header & Robots,የ HTML ራስጌ እና ሮቦ
DocType: User Permission,User Permission,የተጠቃሚ ፍቃድ
apps/frappe/frappe/config/website.py +32,Blog,ጦማር
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,የኤልዲኤፒ አልተጫነም
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,ውሂብ ጋር አውርድ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,ውሂብ ጋር አውርድ
DocType: Workflow State,hand-right,እጅ-ቀኝ
DocType: Website Settings,Subdomain,ንዑስ ጎራ
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,የ OAuth አቅራቢ ቅንብሮች
@@ -2344,21 +2355,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,ደረጃ አሰጣጥን እባክዎ ይምረጡ
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,የ OTP ሚስጥር ዳግም አስጀምር
DocType: Email Account,Notify if unreplied for (in mins),(ደቂቃዎች ውስጥ) ለ unreplied ከሆነ አሳውቅ
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,2 ቀናት በፊት
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,2 ቀናት በፊት
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ጦማር ልጥፎች ለመመደብ.
DocType: Workflow State,Time,ጊዜ
DocType: DocField,Attach,አያይዝ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ቢያንስ አንድ ግንኙነት ሰነዱን ይገኛል አለ ከሆነ ብቻ ነው ግብረ ጥያቄ ይላኩ.
DocType: Custom Role,Permission Rules,ፍቃድ ደንቦች
DocType: GSuite Settings,GSuite Settings,GSuite ቅንብሮች
DocType: Address,Links,አገናኞች
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,እባክዎ የሰነድ ዓይነቱን ይምረጡ.
apps/frappe/frappe/model/base_document.py +396,Value missing for,እሴት ጠፍቷል
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,የልጅ አክል
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም.
DocType: GSuite Templates,Template Name,የአብነት ስም
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ሰነድ አዲስ አይነት
DocType: Custom DocPerm,Read,አነበበ
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያዋቅሩ
DocType: Address,Chhattisgarh,ክላቲጋር
DocType: Role Permission for Page and Report,Role Permission for Page and Report,ገጽ እና ሪፖርት ለ ሚና ፍቃድ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,እሴት አሰልፍ
@@ -2366,18 +2379,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,የድሮ የይለ
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ልጥፎች {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ቅርጸት ወደ አምዶች, የሚከተለው መጠይቅ ውስጥ አምድ መለያዎችን ይሰጣሉ."
DocType: Has Domain,Has Domain,ጎራ አለው
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,ደብቅ
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,ደብቅ
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,መለያ የለህም? ተመዝገቢ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,የመታወቂያ መስክን ማስወገድ አልተቻለም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም
DocType: Address,Bihar,ቢሃር
-DocType: Communication,Link DocType,አገናኝ DocType
+DocType: Activity Log,Link DocType,አገናኝ DocType
DocType: Social Login Keys,Social Login Keys,ማህበራዊ መግቢያ ቁልፎች
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,መላበሶች ሁሉ አስወግድ?
DocType: Website Slideshow,Slideshow Name,የተንሸራታች ስም
DocType: Address,Andhra Pradesh,አንድራ ፕራዴሽ
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,በመተው ላይ
DocType: DocType,Allow Rename,ይቀየር ፍቀድ
-DocType: Authentication Log,Full Name,ሙሉ ስም
+DocType: Activity Log,Full Name,ሙሉ ስም
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,የልጆች ሰንጠረዦች ሌሎች DocTypes ውስጥ መስመሮች ሆነው ይታያሉ.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,እናንተ የምትፈልጉት ገጽ ይጎድለዋል. ይህ ተንቀሳቅሷል ወይም አገናኝ ውስጥ የትየባ በዚያ ነው; ምክንያቱም ይህ ሊሆን ይችላል.
apps/frappe/frappe/www/404.html +25,Error Code: {0},የስህተት ኮድ: {0}
@@ -2407,18 +2421,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!",እኛ ወደ አንተ ማግኘት ይችላሉ \ እንዲችሉ የእርስዎ ኢሜይል እና መልዕክት ሁለቱም ያስገቡ. አመሰግናለሁ!
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,የወጪ የኢሜይል አገልጋይ ጋር መገናኘት አልተቻለም
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,የእኛን ዝማኔዎች ደንበኝነት ላሳዩት ፍላጎት እናመሰግናለን
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,ብጁ አምድ
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,ብጁ አምድ
DocType: Workflow State,resize-full,እጀታ-ሙሉ
DocType: Workflow State,off,ጠፍቷል
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,ሪፖርት {0} ተሰናክሏል
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,አዲስ መዝገቦች በማስገባት የሚመከር.
-DocType: Async Task,Core,ዋና
+DocType: Activity Log,Core,ዋና
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,ፍቃድ አዘጋጅ
DocType: DocField,Set non-standard precision for a Float or Currency field,አንድ መንሳፈፊያ ወይም የምንዛሬ መስክ አዘጋጅ መደበኛ ያልሆነ ትክክለኛነት
DocType: Email Account,Ignore attachments over this size,ይህ መጠን በላይ አባሪዎችን ችላ
DocType: Address,Preferred Billing Address,ተመራጭ አከፋፈል አድራሻ
apps/frappe/frappe/config/integrations.py +68,External Documents,የውጭ ሰነዶች
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ዓመቱ (ዓመታት) በፊት
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,በጣም ብዙ በአንድ ጥያቄ ላይ ጽፈዋል. ያነሰ ጥያቄዎችን ይላኩ
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,እሴቶች ተለውጧል
DocType: Workflow State,arrow-up,ቀስት-ምትኬ
@@ -2426,10 +2438,9 @@ DocType: OAuth Bearer Token,Expires In,ውስጥ ጊዜው ያበቃል
DocType: DocField,Allow on Submit,አስገባ ላይ ፍቀድ
DocType: DocField,HTML,ኤችቲኤምኤል
DocType: Error Snapshot,Exception Type,ለየት አይነት
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,አምዶች ይምረጡ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,አምዶች ይምረጡ
DocType: Web Page,Add code as <script>,<ስክሪፕት> እንደ ኮድ ያክሉ
DocType: Webhook,Headers,ራስጌዎች
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,ምረጥ አይነት
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,የመተግበሪያ መዳረሻ ቁልፍ እና የመተግበሪያ ሚስጥር ቁልፍ እሴቶች ያስገቡ
DocType: Web Form,Accept Payment,ክፍያ ተቀበል
apps/frappe/frappe/config/core.py +62,A log of request errors,ጥያቄ ስህተቶች አንድ መዝገብ
@@ -2437,7 +2448,7 @@ DocType: Report,Letter Head,ደብዳቤ ኃላፊ
DocType: DocType,Quick Entry,ፈጣን Entry
DocType: Web Form,Button Label,የአዝራር መለያ ስም
DocType: Website Theme,UPPERCASE,አቢይ
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,ተመርጠዋል {0} ንጥሎች
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,ተመርጠዋል {0} ንጥሎች
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,በመላክ ላይ Suspend
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,የጎን ይጎትቱ አባላትን ለማከል. መጣያ መልሰህ ይጎትቱ.
DocType: Workflow State,resize-small,እጀታ-ትንሽ
@@ -2463,21 +2474,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},ወደ
DocType: Workflow State,Edit,አርትዕ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,ፍቃዶች ማዋቀር> ሚና ፍቃዶች አስተዳዳሪ በኩል ሊደራጅ ይችላል
DocType: Contact Us Settings,Pincode,ፒን ኮድ
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,ምንም ባዶ አምዶች ፋይል ውስጥ እንዳሉ እርግጠኛ ይሁኑ.
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,ምንም ባዶ አምዶች ፋይል ውስጥ እንዳሉ እርግጠኛ ይሁኑ.
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,የእርስዎ መገለጫ የኢሜይል አድራሻ ያለው መሆኑን ያረጋግጡ
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,በዚህ ቅጽ ላይ ያልተቀመጡ ለውጦች አለዎት. ደረጃ ከመሔድ በፊት ያስቀምጡ.
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ
DocType: Tag Doc Category,Tag Doc Category,መለያ ሰነድ ምድብ
DocType: User,User Image,የተጠቃሚ ምስል
apps/frappe/frappe/email/queue.py +336,Emails are muted,ኢሜይሎች ድምጸ-ናቸው
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + እስከ
DocType: Website Theme,Heading Style,ርዕስ ቅጥ
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,ይህን ስም የያዘ አዲስ ፕሮጀክት ተፈጥሯል ይደረጋል
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,1 ሳምንት በፊት
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,ይህን ስም የያዘ አዲስ ፕሮጀክት ተፈጥሯል ይደረጋል
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,1 ሳምንት በፊት
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,ይህን መተግበሪያ መጫን አይችልም
DocType: Communication,Error,ስሕተት
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,ኢሜይሎች አይላኩ.
+DocType: Data Import,Ignore encoding errors,የመቀየሪያ ስህተቶች ችላ በል
DocType: DocField,Column Break,አምድ እረፍት
DocType: Event,Thursday,ሐሙስ
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,ይህን ፋይል ለመድረስ ፈቃድ የልዎትም
@@ -2504,7 +2515,6 @@ DocType: Webhook,Webhook Request,የድርhook ጥያቄ
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,አታሚ
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** አልተሳካም: {0} ወደ {1}: {2}
DocType: Data Migration Mapping,Mapping Type,የካርታ አይነት
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,አስገዳጅ ይምረጡ
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ያስሱ
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","ምልክቶች, አኃዞች, ወይም አቢይ ሆሄያት አያስፈልግም."
DocType: DocField,Currency,ገንዘብ
@@ -2514,10 +2524,11 @@ DocType: Async Task,Running,በማሄድ ላይ
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,ዳግም አስጀምር የይለፍ ቃል
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,ከ {0} ተመዝጋቢዎች ለማከል ያልቁ እባክዎ
DocType: Workflow State,hand-left,እጅ-ግራ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም
+DocType: Data Import,If you are updating/overwriting already created records.,ቀደም ብለው የተፈጠሩ መዝገቦችን እያዘመኑ / እየተተላለፉ ከሆኑ.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም
DocType: Email Account,Use SSL,SSL ተጠቀም
DocType: Workflow State,play-circle,ጨዋታ-ክበብ
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",ልክ ያልሆነ «የተደገፈ_ን» መግለጫ
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",ልክ ያልሆነ «የተደገፈ_ን» መግለጫ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,አርትዕ የህትመት ቅርጸት ይምረጡ
DocType: Address,Shipping,መላኪያ
DocType: Workflow State,circle-arrow-down,ክበብ-ቀስት ወደ ታች
@@ -2529,25 +2540,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,ቀስት-ቀኝ
DocType: Workflow State,Workflow state represents the current state of a document.,የስራ ፍሰት ሁኔታ አንድ ሰነድ የአሁኑ ሁኔታ ያመለክታል.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,ማስመሰያ ይጎድለዋል
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,ማስታወሻ: በ ገጽ ስም መቀየር በዚህ ገጽ ላይ ቀዳሚ ዩአርኤል እሰብራለሁ.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,ማስታወሻ: በ ገጽ ስም መቀየር በዚህ ገጽ ላይ ቀዳሚ ዩአርኤል እሰብራለሁ.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},ተወግዷል {0}
DocType: SMS Settings,SMS Settings,ኤስ ኤም ኤስ ቅንብሮች
DocType: Company History,Highlight,ድምቀት
DocType: OAuth Provider Settings,Force,ኃይል
DocType: DocField,Fold,አጠፈ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,ሽቅብታ
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,መደበኛ የህትመት ቅርጸት መዘመን አይችልም
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,ናፈቀ
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,እባክዎን ይግለጹ
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,እባክዎን ይግለጹ
DocType: Communication,Bot,bot
DocType: Help Article,Help Article,የእገዛ አንቀጽ
DocType: Page,Page Name,የገጽ ስም
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,እርዳታ: የመስክ ንብረቶች
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,በማስገባት ላይ ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,unzip
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},ረድፍ ውስጥ ትክክል ያልሆነ እሴት {0}: {1} {2} መሆን አለበት {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},ረድፍ ውስጥ ትክክል ያልሆነ እሴት {0}: {1} {2} መሆን አለበት {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},ገብቷል ሰነድ ረቂቅ ተመልሶ ሊቀየር አይችልም. የሽግግር ረድፍ {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},በመሰረዝ ላይ {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},በመሰረዝ ላይ {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,ማርትዕ ወይም አዲስ ቅርጸት ለመጀመር አንድ ነባር ቅርጸት ይምረጡ.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},የተፈጠረው ብጁ መስክ {0} ውስጥ {1}
DocType: System Settings,Time Zone,የጊዜ ክልል
@@ -2563,16 +2572,19 @@ DocType: Workflow State,Home,መኖሪያ ቤት
DocType: OAuth Provider Settings,Auto,ራስ-
DocType: System Settings,User can login using Email id or User Name,ተጠቃሚው በኢሜል መታወቂያ ወይም በተጠቃሚ ስም መጠቀም ይችላል
DocType: Workflow State,question-sign,ጥያቄ-ምልክት
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},አምድ ከ {0} በፊት
DocType: Email Account,Add Signature,ፊርማ አክል
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,ከዚህ ውይይት ወጥተዋል
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,አልተዘጋጀም ነበር
,Background Jobs,የጀርባ ስራዎች
DocType: ToDo,ToDo,ለመስራት
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,አዘጋጅ> ተጠቃሚ
DocType: DocField,No Copy,ምንም ቅዳ
DocType: Workflow State,qrcode,qrcode
+DocType: Data Import,Submit after importing,ማስመጣት አስገባ
apps/frappe/frappe/www/login.html +31,Login with LDAP,ኤልዲኤፒ ጋር ይግቡ
DocType: Web Form,Breadcrumbs,የዳቦ ፍርፋሪ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,ባለቤት ከሆነ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,ባለቤት ከሆነ
DocType: Data Migration Mapping,Push,ይግፉ
DocType: OAuth Authorization Code,Expiration time,የሚያልፍበት ሰዓት
DocType: Web Page,Website Sidebar,የድር ጣቢያ የጎን
@@ -2588,6 +2600,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,የህትመት ቅንብሮች
DocType: Page,Yes,አዎ
DocType: DocType,Max Attachments,ከፍተኛ አባሪዎች
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,የደንበኛ ቁልፍ ያስፈልጋል
DocType: Calendar View,End Date Field,የመጨረሻ ቀን መስክ
DocType: Desktop Icon,Page,ገጽ
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ማግኘት አልተቻለም {0} ውስጥ {1}
@@ -2598,18 +2611,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},እሴ
DocType: Feedback Request,Is Manual,በእጅ ነው
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ቅጥ አዝራሩን ቀለም ያመለክታል: ስኬት - አረንጓዴ, አደጋ - ቀይ, ተገላቢጦሽ - ጥቁር, የመጀመሪያ ደረጃ - ደማቅ ሰማያዊ, መረጃ - ፈካ ያለ ሰማያዊ, ማስጠንቀቂያ - ኦሬንጅ"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,ምንም ሪፖርት ተጭኗል. / [ሪፖርት ስም] አንድ ሪፖርት ለማስኬድ መጠይቅ-ሪፖርት ይጠቀሙ.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,የረድፍ ሁኔታ
DocType: Workflow Transition,Workflow Transition,የስራ ፍሰት ሽግግር
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} ወራት በፊት
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,የተፈጠረ
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,መሸወጃ ማዋቀር
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,መሸወጃ ማዋቀር
DocType: Workflow State,resize-horizontal,እጀታ-አግድመት
DocType: Note,Content,ይዘት
DocType: Data Migration Run,Push Insert,አስገባ ይጫኑ
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,የቡድን መስቀለኛ መንገድ
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,የቡድን መስቀለኛ መንገድ
DocType: Communication,Notification,ማስታወቂያ
DocType: DocType,Document,ሰነድ
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},ቀደም ሲል ጥቅም ላይ ተከታታይ {0} {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,የማይደገፍ ፋይል ቅርጸት
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,የማይደገፍ ፋይል ቅርጸት
DocType: DocField,Code,ኮድ
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""",ሁሉም በተቻለ ፍሰት ስቴትስ እና የስራ ፍሰቱ ሚና. Docstatus አማራጮች: 0 "ያድናል" ነው 1 "ገብቷል" ነው እና 2 "ተሰርዟል" ነው
DocType: Website Theme,Footer Text Color,የግርጌ ጽሁፍ ቀለም
@@ -2617,6 +2631,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,መጨ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","ወደ ሰነድ መዳረሻ ዋና ናቸው ማለትም ደረጃ 0 ላይ ፈቃዶች, ሰነድ ደረጃ ፍቃዶች ናቸው."
DocType: Email Alert,Print Format,አትም ቅርጸት
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,ልክ ያልሆነ የክፍያ ፍኖት ምስክርነቶች
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ይሄ የተወሰነ ስህተት ካላቸው ረድፎች ጋር የሚፈጠር የአብነት ፋይል ነው. ይህንን ፋይል ለማረም እና ለማስመጣት መጠቀም ይኖርብዎታል.
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,የሰነድ አይነቶች እና ሚናዎች ላይ አዘጋጅ ፍቃዶች
apps/frappe/frappe/model/meta.py +159,No Label,ምንም መሰየሚያ
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,በማዘመን ላይ ...
@@ -2641,15 +2656,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,መል
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),ዴስክ ውስጥ የሚገኙ ገጾች (ቦታ ያዢዎች)
DocType: DocField,Collapsible Depends On,ሊሰበሰቡ ላይ ይመረኮዛል
DocType: Print Style,Print Style Name,የቅጥ ስም አትም
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከስር አዘጋጅ> የታተመ እና ስምሪት> የአድራሻ አብነት አዲስ አንድ ያድርጉ.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,በ
DocType: Print Settings,Allow page break inside tables,ሰንጠረዦች ውስጥ ገጽ ከፋይ ፍቀድ
DocType: Email Account,SMTP Server,SMTP አገልጋይ
DocType: Print Format,Print Format Help,አትም ቅርጸት እገዛ
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,አብነቱን ያዘምኑ እና በማያያዝ በፊት የወረዱ ቅርጸት ውስጥ ማስቀመጥ.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,ቡድኖች ጋር
DocType: DocType,Beta,ይሁንታ
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},ወደነበረበት {0} እንደ {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ከማዘመን ከሆነ, "ተካ" የሚለውን ይምረጡ እባክዎ ሌላ ነባር ረድፎች አይሰረዙም."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ከማዘመን ከሆነ, "ተካ" የሚለውን ይምረጡ እባክዎ ሌላ ነባር ረድፎች አይሰረዙም."
DocType: Event,Every Month,በየወሩ
DocType: Letter Head,Letter Head in HTML,ኤች ቲ ኤም ኤል ውስጥ ደብዳቤ ኃላፊ
DocType: Web Form,Web Form,የድር ቅጽ
@@ -2659,15 +2674,15 @@ DocType: Print Settings,Allow Print for Cancelled,ተሰርዟል ለ አትም
DocType: Communication,Integrations can use this field to set email delivery status,ውህደቶች ኢሜይል መላክ ሁኔታ ለማዘጋጀት ይህን መስክ መጠቀም ይችላሉ
DocType: Web Form,Web Page Link Text,ድረ-ገጽ አገናኝ ጽሑፍ
DocType: Page,System Page,የስርዓት ገጽ
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","ወዘተ አዘጋጅ ነባሪ ቅርጽ, መጠን, የህትመት ቅጥ"
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","ወዘተ አዘጋጅ ነባሪ ቅርጽ, መጠን, የህትመት ቅጥ"
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,ከፍተኛ ቡና ቤት ውስጥ ፍለጋ ይጨምሩ
DocType: GSuite Settings,Allow GSuite access,GSuite መዳረሻ ፍቀድ
DocType: DocType,DESC,DESC
DocType: DocType,Naming,መሰየምን
DocType: Event,Every Year,በየዓመቱ
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,ሁሉንም ምረጥ
-apps/frappe/frappe/config/setup.py +233,Custom Translations,ብጁ ትርጉሞች
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,ሁሉንም ምረጥ
+apps/frappe/frappe/config/setup.py +240,Custom Translations,ብጁ ትርጉሞች
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,እድገት
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ሚና በ
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,የጠፋ መስኮች
@@ -2679,14 +2694,13 @@ DocType: File,Thumbnail URL,ድንክዬ ዩ አር ኤል
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,ብጁ ሪፖርቶች
DocType: Website Script,Website Script,የድር ጣቢያ ስክሪፕት
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,እርስዎ የገዛ ለማተም የ Google መተግበሪያዎች ስክሪፕት webapp እየተጠቀሙ አይደለም ከሆነ ነባሪ https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec መጠቀም ይችላሉ
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,የሕትመት ግብይቶች የተበጁ የ HTML አብነቶች.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,የሕትመት ግብይቶች የተበጁ የ HTML አብነቶች.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,አቀማመጥ
DocType: Workflow,Is Active,ገቢር ነው
-apps/frappe/frappe/desk/form/utils.py +92,No further records,ምንም ተጨማሪ መረጃዎች
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,አዋቅር> የተጠቃሚ ፈቃዶች አስተዳዳሪ
+apps/frappe/frappe/desk/form/utils.py +103,No further records,ምንም ተጨማሪ መረጃዎች
DocType: DocField,Long Text,ረጅም ጽሑፍ
DocType: Workflow State,Primary,የመጀመሪያ
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},ከላይ ረድፎች መቀየር አይደለም እባክዎ {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},ከላይ ረድፎች መቀየር አይደለም እባክዎ {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),ቅጹን ከጨረሱ በኋላ ወደዚህ ዩአርኤል ይሂዱ (ለእንግዶች ብቻ)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + g)
DocType: Contact,More Information,ተጨማሪ መረጃ
@@ -2698,7 +2712,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,ደወል
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,የኢሜይል ማንቂያ ላይ ስህተት
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ይህን ሰነድ ያጋሩ
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,ልጆችን እንዳለው መጠን: {0} {1} አንድ ቅጠል መስቀለኛ መንገድ ሊሆን አይችልም
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,ልጆችን እንዳለው መጠን: {0} {1} አንድ ቅጠል መስቀለኛ መንገድ ሊሆን አይችልም
DocType: Communication,Info,መረጃ
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,አባሪ አክል
DocType: Data Migration Mapping,Sync,አመሳስል
@@ -2738,7 +2752,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,የክፍያ ጌትዌይ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.",የተጠቃሚ ፍቃዶች ተግብር ላይ ምልክት ብቻ የተወሰኑ መዝገቦች ሚና ያሳጣቸዋል ለመስጠት. የተጠቃሚ ፍቃዶች የተወሰነ መዝገብ እንዲህ ያለ ሚና ጋር ተጠቃሚዎች ለመገደብ ጥቅም ላይ ይውላሉ.
DocType: Portal Settings,Hide Standard Menu,መደበኛ ምናሌ ደብቅ
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,የኢሜይል ጎራዎች ያቀናብሩ / ያክሉ.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,የኢሜይል ጎራዎች ያቀናብሩ / ያክሉ.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},ከማስገባትዎ በፊት መሰረዝ አልተቻለም. ይመልከቱ የሽግግር {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,የህትመት ቅርጸት {0} ተሰናክሏል
DocType: Email Alert,Send days before or after the reference date,በፊት ወይም የማጣቀሻ ቀን በኋላ ቀናት ላክ
@@ -2747,7 +2761,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ዋጋ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,ለማረጋገጥ እዚህ ላይ ጠቅ ያድርጉ
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,ሊገመት እንደ ተለዋጭ ምግብ '@' ይልቅ 'አንድ' በጣም ብዙ መርዳት አይደለም.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,እኔ በ የተመደበው
-apps/frappe/frappe/utils/data.py +480,Zero,ዜሮ
+apps/frappe/frappe/utils/data.py +485,Zero,ዜሮ
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,አይደለም የገንቢ ሁነታ ላይ! site_config.json ውስጥ አዘጋጅ ወይም 'ብጁ' DocType ማድረግ.
DocType: Workflow State,globe,ክበብ ምድር
DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
@@ -2767,11 +2781,12 @@ DocType: Module Def,Module Name,ሞጁል ስም
DocType: DocType,DocType is a Table / Form in the application.,DocType መተግበሪያው ውስጥ የርዕስ ማውጫ / ቅጽ ነው.
DocType: Email Account,GMail,የ GMail
DocType: Address,Party GSTIN,የድግስ GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} ሪፖርት
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} ሪፖርት
DocType: SMS Settings,Use POST,POST ይጠቀሙ
DocType: Communication,SMS,ኤስኤምኤስ
DocType: DocType,Web View,የድር ዕይታ
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,ማስጠንቀቂያ: ይህ ህትመት ቅርጸት የድሮ ቅጥ ውስጥ ነው እና ኤ ፒ አይ በኩል ሊፈጠር አይችልም.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,ድምሮች
DocType: DocField,Print Width,አትም ስፋት
,Setup Wizard,የውቅር አዋቂ
DocType: Address,GST State Number,GST ስቴት ቁጥር
@@ -2797,26 +2812,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,ኤስ ኤም ኤስ ቅንብሮች ያዘምኑ እባክዎ
DocType: Event,Event Type,የክስተት አይነት
DocType: User,Last Known Versions,የመጨረሻው የታወቁ ስሪቶች
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,የኢሜይል መለያዎችን ያቀናብሩ / ያክሉ.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,የኢሜይል መለያዎችን ያቀናብሩ / ያክሉ.
DocType: Newsletter,Published,የታተመ
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,የእርስዎ ኢሜይል እናመሰግናለን
DocType: DocField,Small Text,ትንሽ ጽሑፍ
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,እኩል
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው
DocType: About Us Settings,Team Members Heading,ርእስ ቡድን አባላት
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,ልክ ያልሆነ የ CSV ቅርጸት
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ምትኬዎች ቁጥር አዘጋጅ
DocType: DocField,Do not allow user to change after set the first time,ለመጀመሪያ ጊዜ ተጠቃሚው በኋላ ለማዘጋጀት ሊለወጥ አትፍቀድ
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,የግል ወይም ይፋዊ?
-apps/frappe/frappe/utils/data.py +578,1 year ago,1 ዓመት በፊት
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,የግል ወይም ይፋዊ?
+apps/frappe/frappe/utils/data.py +590,1 year ago,1 ዓመት በፊት
DocType: Contact,Contact,እውቂያ
DocType: User,Third Party Authentication,የሦስተኛ ወገን ማረጋገጫ
DocType: Website Settings,Banner is above the Top Menu Bar.,ሰንደቅ ምርጥ ምናሌ አሞሌ በላይ ነው.
DocType: Razorpay Settings,API Secret,የኤ ፒ አይ ሚስጥር
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,ወደ ውጪ ላክ ሪፖርት:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} የለም
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,ወደ ውጪ ላክ ሪፖርት:
DocType: Data Migration Run,Push Update,አዘምንን ይጫኑ
DocType: Email Account,Port,ወደብ
DocType: Print Format,Arial,አሪያል
@@ -2833,15 +2847,15 @@ DocType: Dropbox Settings,Dropbox Settings,dropbox ቅንብሮች
DocType: About Us Settings,More content for the bottom of the page.,ከገጹ ግርጌ ተጨማሪ ይዘት.
DocType: Workflow,DocType on which this Workflow is applicable.,DocType ይህም ላይ ይህን ፍሰት የሚመለከታቸው ነው.
DocType: Feedback Trigger,Enabled,ነቅቷል
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,ማዋቀርን ለማጠናቀቅ አልተሳካም
DocType: Tag Category,Category Name,ምድብ ስም
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,አስመጣ ተመዝጋቢዎች
DocType: Print Settings,PDF Settings,የፒዲኤፍ ቅንብሮች
DocType: Kanban Board Column,Column Name,የአምድ ስም
DocType: Language,Based On,በዛላይ ተመስርቶ
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,ተዘጋጅተዋል!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ነባሪ አድርግ
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Frappe አገልጋይ ዩአርኤል ይመልከቱ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም
DocType: Communication,Email Account,የኢሜይል መለያ
DocType: Workflow State,Download,አውርድ
DocType: Blog Post,Blog Intro,መግቢያ ብሎግ
@@ -2857,7 +2871,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},ልክ ያልሆነ ገደብ {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ሰነድ አይነት ዘርዝር
DocType: Event,Ref Type,ማጣቀሻ አይነት
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ, የ "ስም" (አይዲ) አምድ ባዶ ተወው."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ, የ "ስም" (አይዲ) አምድ ባዶ ተወው."
DocType: Data Migration Run,Current Mapping Delete Start,የአሁኑን የካርታ መሰረዝ ይጀምሩ
apps/frappe/frappe/config/core.py +47,Errors in Background Events,የጀርባ ክስተቶች ውስጥ ስህተቶች
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,አምዶች የሉም
@@ -2869,22 +2883,22 @@ DocType: Website Settings,Website Theme Image,የድር ጣቢያ ገጽታ ም
DocType: Workflow State,road,መንገድ
DocType: LDAP Settings,Organizational Unit,ድርጅታዊ አሃድ
DocType: User,Timezone,የጊዜ ክልል
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},መጫን አልተቻለም: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},መጫን አልተቻለም: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,ምትኬ
DocType: DocField,Read Only,ለማንበብ ብቻ የተፈቀደ
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,አዲስ ጋዜጣ
DocType: Print Settings,Send Print as PDF,እንደ PDF Print ላክ
DocType: Web Form,Amount,መጠን
DocType: Workflow Transition,Allowed,ተፈቅዷል
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},የፋይል ቅርጸት መጻፍ አልተቻለም {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,ነባሪ ቅንብሮች እነበረበት መልስ?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ልክ ያልሆነ መነሻ ገጽ
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,ልክ ያልሆነ ግባ. እንደገና ሞክር.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,ልክ ያልሆነ ግባ. እንደገና ሞክር.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1}
DocType: Auto Email Report,Send only if there is any data,ምንም ውሂብ የለም ብቻ ከሆነ ነው ላክ
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ዳግም አስጀምር ማጣሪያዎች
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ተልእኮ በ ተዘግቷል {0}
DocType: Integration Request,Remote,ሩቅ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,አሰበ
@@ -2895,7 +2909,6 @@ DocType: Error Snapshot,Locals,የአካባቢው ሰዎች
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},በኩል እንዳልተካፈለች {0} ላይ {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} ውስጥ አስተያየት ውስጥ ጠቅሶሃል {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ለምሳሌ: (55 + 434) / 4 ወይም = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አልተዋቀረም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} ያስፈልጋል
DocType: Integration Request,Integration Type,የውህደት አይነት
DocType: Newsletter,Send Attachements,Attachements ላክ
@@ -2905,16 +2918,15 @@ DocType: DocField,Perm Level,Perm ደረጃ
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,በዛሬው ቀን መቁጠሪያ ውስጥ ክስተቶች
DocType: Web Page,Web Page,ድረ ገጽ
DocType: Blog Category,Blogger,ብሎገር
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,ስህተቶች ያላቸው ረድፎችን ዝለል.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,ይመልከቱ ዝርዝር
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,ይመልከቱ ዝርዝር
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0}
DocType: Workflow,Don't Override Status,ሁኔታ ሻር አትበል
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ደረጃ ይስጡ.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ግብረ ጥያቄ
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,የፍለጋ ቃል
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,የመጀመሪያው አባል: አንተ
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,ይምረጡ አምዶች
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,የመጀመሪያው አባል: አንተ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,ይምረጡ አምዶች
DocType: Translation,Source Text,ምንጭ ጽሑፍ
apps/frappe/frappe/www/login.py +65,Missing parameters for login,መግባት ይጎድላሉ መለኪያዎች
DocType: Workflow State,folder-open,አቃፊ ክፈት
@@ -2926,18 +2938,17 @@ DocType: Page,No,አይ
DocType: Property Setter,Set Value,አዘጋጅ እሴት
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,መልክ መስክ ደብቅ
DocType: Webhook,Webhook Data,Webhook ውሂብ
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,ህገወጥ የመዳረሻ ማስመሰያ. እባክዎ ዳግም ይሞክሩ
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,ህገወጥ የመዳረሻ ማስመሰያ. እባክዎ ዳግም ይሞክሩ
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","መተግበሪያው አዲስ ስሪት ወደ ዘምኗል, ይህን ገጽ ያድሱት እባክዎ"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,ዳግም ላክ
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,አማራጭ: ይህ አባባል እውነት ከሆነ ማንቂያ ይላካል
DocType: Data Migration Plan,Plan Name,የዕቅድ ስም
DocType: Print Settings,Print with letterhead,ደብዳቤ ጋር አትም
DocType: Unhandled Email,Raw Email,ጥሬ ኢሜይል
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,ምድብ ይምረጡ መዛግብት
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,በማስገባት ላይ
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,ምድብ ይምረጡ መዛግብት
DocType: ToDo,Assigned By,በ የተመደበው
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,እናንተ መስኮች ላይ ደረጃ ለማዘጋጀት ያብጁ ቅጽ መጠቀም ይችላሉ.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,የእርስዎን ክልል ይምረጡ
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,የእርስዎን ክልል ይምረጡ
DocType: Custom DocPerm,Level,ደረጃ
DocType: Custom DocPerm,Report,ሪፖርት
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,የገንዘብ መጠን 0 የበለጠ መሆን አለበት.
@@ -2956,7 +2967,7 @@ DocType: Website Theme,Background,ዳራ
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","የተጠቃሚ ፍቃዶችን ለማመልከት ያገለግላል DocTypes መካከል JSON ዝርዝር. ባዶ ከሆነ, ሁሉም የተገናኘ DocTypes የተጠቃሚ ፍቃዶችን ተግባራዊ ለማድረግ ጥቅም ላይ ይውላል."
DocType: Report,Ref DocType,ማጣቀሻ DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,አንድ ደረጃ ያክሉ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,ሙሉ ገጽ
DocType: DocType,Is Child Table,የልጅ ማውጫ ነው
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} ውስጥ አንዱ መሆን አለበት {1}
@@ -2968,7 +2979,7 @@ DocType: Workflow State,chevron-left,ሸቭሮን-ግራ
DocType: Communication,Sending,በመላክ ላይ
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,ይህ የአይ ፒ አድራሻ ከ አይፈቀድም
DocType: Website Slideshow,This goes above the slideshow.,ይህ የተንሸራታች በላይ ይሄዳል.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,መተግበሪያዎች ይጫኑ.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,መተግበሪያዎች ይጫኑ.
DocType: Contact,Last Name,የአያት ሥም
DocType: Event,Private,የግል
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,ዛሬ ምንም ማንቂያዎች
@@ -2985,19 +2996,19 @@ DocType: Event,Send an email reminder in the morning,ጠዋት አንድ የኢ
DocType: Blog Post,Published On,ላይ የታተመ
DocType: Contact,Gender,ፆታ
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ጠፍቷል አስገዳጅ መረጃ:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,የጥያቄ ዩአርኤል ጥያቄ
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,ብቻ 200 ያስገባል አንድ ጥያቄ ውስጥ አይፈቀዱም
DocType: Footer Item,URL,ዩ አር ኤል
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,ወደ የማረጋገጫ ማያ ገጽ ይመለሱ እና በእርስዎ የማረጋገጫ መተግበሪያ ላይ የሚታየውን ኮድ ያስገቡ
DocType: ToDo,Reference Type,የማጣቀሻ አይነት
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,አዲስ ግንኙነት ለመፍጠር እባክዎ የገንቢ ሁኔታን ያንቁ
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,አዲስ ግንኙነት ለመፍጠር እባክዎ የገንቢ ሁኔታን ያንቁ
DocType: Event,Repeat On,ይደገም
DocType: SMS Parameter,SMS Parameter,ኤስ ኤም ኤስ ልኬት
DocType: Communication,Marked As Spam,እንደ አይፈለጌ መልዕክት ምልክት ተደርጎበታል
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},ፋይል ዩ አር ኤል ጋር አንድ ችግር አለ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,ዛፍ
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,ይህን ሪፖርት ማተም አይፈቀድም
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,ይህን ሪፖርት ማተም አይፈቀድም
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,የተጠቃሚ ፍቃዶች
DocType: Workflow State,warning-sign,ማስጠንቀቂያ-ምልክት
DocType: Workflow State,User,ተጠቃሚ
@@ -3029,64 +3040,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,ነባሪ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} ታክሏል
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ፈልግ «{0}»
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,መጀመሪያ ሪፖርት ማስቀመጥ እባክዎ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,መጀመሪያ ሪፖርት ማስቀመጥ እባክዎ
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ተመዝጋቢዎች ታክሏል
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,አይደለም ውስጥ
DocType: Workflow State,star,ኮከብ
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,እሴቶች በኮማ የተለዩ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,እሴቶች በኮማ የተለዩ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},የእርስዎን ግብረመልስ ለማጋራት እባክዎ {0}
apps/frappe/frappe/config/website.py +13,Content web page.,የይዘት ድረ-ገጽ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,አዲስ ሚና አክል
DocType: Deleted Document,Deleted Document,ተሰርዟል ሰነድ
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,ውይ! የሆነ ስህተት ተከስቷል
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,ውይ! የሆነ ስህተት ተከስቷል
DocType: Help Article,Category,መደብ
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,ጃቫስክሪፕት ውስጥ ደንበኛ ጎን ስክሪፕት ቅጥያዎች
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,ldap dependancies እና ማየታችንን ለመጫን መመሪያዎች
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,የጦማር መግቢያ
DocType: Address,Office,ቢሮ
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,ይህ Kanban ቦርድ የግል ይሆናል
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,ይህ Kanban ቦርድ የግል ይሆናል
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,መደበኛ ሪፖርቶች
DocType: User,Email Settings,የኢሜይል ቅንብሮች
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,ለመቀጠል እባክዎ የይለፍ ቃልዎን ያስገቡ
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ትክክለኛ የኤልዲኤፒ ተጠቃሚ
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} አይደለም የሚሰራ መንግስት
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. PayPal «{0}» ምንዛሬ ግብይቶችን አይደግፍም
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው
DocType: Workflow State,ok-circle,ok-ክበብ
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',አንተ 'ደንበኞች ውስጥ ብርቱካናማ ማግኘት' በመጠየቅ ነገሮችን ማግኘት ይችላሉ
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,አዝናለሁ! ተጠቃሚ የራሳቸውን መዝገብ ሙሉ መዳረሻ ሊኖራቸው ይገባል.
,Usage Info,አጠቃቀም መረጃ
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,ልክ ያልሆነ ማስመሰያ
DocType: Email Account,Email Server,የኢሜይል አገልጋይ
-DocType: DocShare,Document Type,የሰነድ አይነት
+DocType: Data Import,Document Type,የሰነድ አይነት
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,መለያ የግዴታ ነው
DocType: PayPal Settings,API Username,የኤ ፒ አይ የተጠቃሚ ስም
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,ግማሽ ቀን
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,ግማሽ ቀን
DocType: Communication,Communication Type,ኮሙኒኬሽን አይነት
DocType: DocField,Unique,የተለየ
-DocType: Data Migration Run,Partial Success,ከፊል ስኬት
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,ከፊል ስኬት
DocType: Email Account,Service,አገልግሎት
DocType: File,File Name,የመዝገብ ስም
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),ማግኘት አልተቻለም ነበር {0} ለ {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),ማግኘት አልተቻለም ነበር {0} ለ {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","ውይ, ይህን ታውቃለህ አልተፈቀደልህም"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,ቀጣይ
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,ቀጣይ
apps/frappe/frappe/handler.py +92,You have been successfully logged out,በተሳካ ሁኔታ ወጥተዋል
DocType: Calendar View,Calendar View,የቀን መቁጠሪያ እይታ
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,አርትዕ ቅርጸት
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,ሙሉ ምዝገባ
DocType: GSuite Settings,Enable,አንቃ
+DocType: Google Maps,Home Address,የቤት አድራሻ
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),አዲስ {0} (Ctrl + ለ)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,ከፍተኛ አሞሌ ቀለም እና የጽሁፍ ቀለም ተመሳሳይ ናቸው. እነዚህ ተነባቢ እንዲሆን ጥሩ ልዩነት ሊኖረው ይገባል.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),አንተ ብቻ አንድ በመሄድ በ 5000 መዝገቦች እስከሁለት መስቀል ይችላሉ. (በአንዳንድ አጋጣሚዎች ያነሰ ሊሆን ይችላል)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),አንተ ብቻ አንድ በመሄድ በ 5000 መዝገቦች እስከሁለት መስቀል ይችላሉ. (በአንዳንድ አጋጣሚዎች ያነሰ ሊሆን ይችላል)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},በቂ ፈቃድ {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),ሪፖርት አልተቀመጠም ነበር (ስህተቶች ነበሩ)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),ሪፖርት አልተቀመጠም ነበር (ስህተቶች ነበሩ)
DocType: Print Settings,Print Style,አትም ቅጥ
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,ማንኛውንም መዝገብ ጋር አልተገናኘም
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,ማንኛውንም መዝገብ ጋር አልተገናኘም
DocType: Custom DocPerm,Import,አስገባ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,ረድፍ {0}: ላይ መደበኛ መስኮች አስገባ ፍቀድ ማንቃት አይፈቀድም
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,አስመጣ / ላክ ውሂብ
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,አስመጣ / ላክ ውሂብ
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,መደበኛ ሚና ተሰይሟል አይችልም
DocType: Communication,To and CC,እና ዝግ መግለጫ
DocType: SMS Settings,Static Parameters,አይለወጤ መለኪያዎች
@@ -3107,18 +3119,17 @@ DocType: Web Page,Header and Description,ራስጌ እና መግለጫ
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,ያስፈልጋል ሁለቱም መግቢያ እና የይለፍ ቃል
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,የቅርብ ጊዜ ሰነዱን ለማግኘት እባክዎ ያድሱ.
DocType: User,Security Settings,የደህንነት ቅንብሮች
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,አምድ ያክሉ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,አምድ ያክሉ
,Desktop,ዴስክቶፕ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},የውጭ ንግድ ሪፖርት: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},የውጭ ንግድ ሪፖርት: {0}
DocType: Auto Email Report,Filter Meta,Meta አጣራ
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ይህን ቅጽ አንድ ድረ-ገጽ ካለው ጽሑፍ ድረ ገጽ አገናኝ ለ እንዲታዩ. አገናኝ መንገድ በራስ-ሰር page_name` እና `parent_website_route`` ላይ ተመስርተው የመነጩ ይሆናል
DocType: Feedback Request,Feedback Trigger,ግብረ ቀስቅስ
DocType: S3 Backup Settings,Backup Limit,መጠባበቂያ ገደብ
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ
DocType: Unhandled Email,Message-id,መልዕክት-መታወቂያ
DocType: Patch Log,Patch,መጣፈያ
-DocType: Async Task,Failed,አልተሳካም
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,ምንም ውሂብ አልተገኘም
+DocType: Activity Log,Failed,አልተሳካም
DocType: Web Form,Allow Comments,አስተያየቶች ፍቀድ
DocType: User,Background Style,የጀርባ ቅጥ
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,ከተከለከለ አይ ፒ አድራሻ ለተመዘገቡ ተጠቃሚዎች ሁለት እውነታ ማረጋገጫ
@@ -3127,7 +3138,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},ወደ {0} የተዋሃደ {1}
DocType: System Settings,mm-dd-yyyy,ወወ-ቀቀ-ዓ.ም
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,አዲስ ግንኙነት
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} ውስጥ ገብተሃል
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} ውስጥ ገብተሃል
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,የእርስዎ መግቢያ መታወቂያ ነው
DocType: OAuth Client,Skip Authorization,ማረጋገጫ ዝለል
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it",መደበኛ ኢሜይል ማንቂያ ማርትዕ አይቻልም. ለማረም እባክዎ ይህንን ያቦዝኑት እና ያባዛዋል
diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv
index 3abede7548..e7d18189bf 100644
--- a/frappe/translations/ar.csv
+++ b/frappe/translations/ar.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}",مهمة جديدة، {0}، أسندت إليك بواسطة {1}. {2}
DocType: Email Queue,Email Queue records.,سجلات البريد الإلكتروني قائمة الانتظار.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,بعد
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,الرجاء اختيار الحزب النوع الأول
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,الرجاء اختيار الحزب النوع الأول
DocType: Address,Punjab,البنجاب
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,إعادة تسمية العديد من العناصر عن طريق تحميل ملف CSV .
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,إعادة تسمية العديد من العناصر عن طريق تحميل ملف CSV .
DocType: Workflow State,pause,وقفة
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,لا يسمح لك بالوصول إلى هذه الصفحة.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,"لا يوجد نتائج ل '
" apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,وقد تم تقديم المعلومات الخاصة بك apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف DocType: System Settings,Currency Precision,دقة العملة @@ -317,21 +318,21 @@ DocType: Communication,Attachment,مرفق DocType: Communication,Message ID,معرف الرسالة DocType: Property Setter,Field Name,اسم الحقل apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,لم تتم تهيئة غوغل غسويت. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,أو +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,أو apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,اسم الوحدة برمجية ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,استمر DocType: Custom Field,Fieldname,اسم الحقل DocType: Workflow State,certificate,شهادة DocType: User,Tile,قرميدة apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,التحقق من ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,يجب أن يكون عمود البيانات الأولى فارغة. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,يجب أن يكون عمود البيانات الأولى فارغة. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,عرض كل الإصدارات DocType: Workflow State,Print,طباعة DocType: User,Restrict IP,تقييد IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,لوحة القيادة apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,غير قادر على إرسال رسائل البريد الإلكتروني في هذا الوقت apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,بحث أو كتابة أمر -DocType: Communication,Timeline Name,اسم الزمني +DocType: Activity Log,Timeline Name,اسم الزمني DocType: Email Account,e.g. smtp.gmail.com,على سبيل المثال smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,إضافة قاعدة جديدة DocType: Contact,Sales Master Manager,رئيس مدير المبيعات @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,الملصق الاصل apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,يتم تحويل أذونات تلقائيا إلى التقارير الموحدة و البحث . -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,رمز الدخول المطلوب +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} هو حقل إلزامي +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,رمز الدخول المطلوب DocType: Event,Repeat Till,تكرار حتى apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,جديد apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,يرجى تعيين عنوان ورل للنص البرمجي على إعدادات غسيت @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,الأحداث القادمة لهذا اليوم DocType: Email Alert Recipient,Email By Document Field,البريد الإلكتروني بواسطة حقل الوثيقة DocType: Domain Settings,Domain Settings,إعدادات النطاق -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,حجم الملف: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,حجم الملف: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,ترقية apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},لا يمكن الاتصال: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,كلمة في حد ذاتها هي سهلة التخمين. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,جزء الوحدات apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} من {1} إلى {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,اعتبره منته DocType: Communication,Type,النوع -DocType: Authentication Log,Subject,موضوع +DocType: Activity Log,Subject,موضوع DocType: Web Form,Amount Based On Field,المبلغ بناء على الحقل apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,المستخدم إلزامي للمشاركة DocType: DocField,Hidden,مخفي @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,يسمح للنماذج الغير مك apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} يجب تحديده أولا apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.",.استخدم كلمات قليلة، وتجنب العبارات الشائعة DocType: Workflow State,plane,طائرة -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","إذا كنت تحميل سجلات جديدة، ""تسمية السلسلة"" تصبح إلزامية، إذا كان موجودا." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","إذا كنت تحميل سجلات جديدة، ""تسمية السلسلة"" تصبح إلزامية، إذا كان موجودا." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,الحصول على تنبيهات لهذا اليوم apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DOCTYPE لا يمكن تسميتها من قبل المسؤول apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},القيمة المتغيرة لل{0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop",إذا كان المستخدم لديه أي دور التحقق، ثم يصبح المستخدم "مستخدم النظام". "مستخدم النظام" لديه حق الوصول إلى سطح المكتب DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,يرجى التحقق من بريدك الالكتروني للتحقق -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج DocType: Communication,Bounced,وثب DocType: Deleted Document,Deleted Name,الاسم المحذوف apps/frappe/frappe/config/setup.py +14,System and Website Users,النظام و الموقع الالكتروني للمستخدمين @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,سحب تحديث DocType: Auto Email Report,No of Rows (Max 500),عدد الصفوف (ماكس 500) DocType: Language,Language Code,كود اللغة apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...",ويجري بناء التنزيل، وهذا قد يستغرق بضع لحظات ... -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,إضافة تصفية (فلترة) +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,إضافة تصفية (فلترة) apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},رسائل SMS أرسلت الى الارقام التالية: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,تقييمك: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} و {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} و {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","دائما إضافة ""كلمة مسودة"" عند طباعة المسودات" DocType: Data Migration Run,Current Mapping Start,بدء تعيين الخرائط الحالية apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,تم وضع علامة على البريد الإلكتروني كغير مرغوب فيه DocType: About Us Settings,Website Manager,مدير الموقع apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,تم إلغاء تحميل الملف. حاول مرة اخرى. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,لقد حددت مسودة أو مستندات تم إلغاؤها -apps/frappe/frappe/model/document.py +1180,Document Queued,قائمة الانتظار وثيقة +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,لقد حددت مسودة أو مستندات تم إلغاؤها +apps/frappe/frappe/model/document.py +1186,Document Queued,قائمة الانتظار وثيقة DocType: GSuite Templates,Destination ID,رقم تعريف الوجهة DocType: Desktop Icon,List,قائمة -DocType: Communication,Link Name,اسم الرابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون القيمة الافتراضية +DocType: Activity Log,Link Name,اسم الرابط +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون القيمة الافتراضية DocType: System Settings,mm/dd/yyyy,مم / اليوم / السنة -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,رمز مرور خاطئ: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,رمز مرور خاطئ: DocType: Print Settings,Send document web view link in email,إرسال ثيقة الارتباط عرض على شبكة الإنترنت في البريد الإلكتروني apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,{0} يتم حفظ ملاحظات للحصول على وثيقة بنجاح -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,سابق +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,سابق apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,رد: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} صفوف لـ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",شبه العملات. ل "سنت" على سبيل المثال @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,حدد ملف مرفوع DocType: Letter Head,Check this to make this the default letter head in all prints,التحقق من ذلك لجعل هذه الرسالة الافتراضية الرأس في جميع الطبعات DocType: Print Format,Server,خادم -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,مجلس كانبان جديدة +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,مجلس كانبان جديدة DocType: Desktop Icon,Link,رابط apps/frappe/frappe/utils/file_manager.py +111,No file attached,أي ملف مرفق DocType: Version,Version,الإصدار DocType: User,Fill Screen,ملء الشاشة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",غير قادر على عرض هذا التقرير المشجر، وذلك بسبب البيانات المفقودة. على الأرجح، يتم تصفيتها بسبب الأذونات. -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. حدد ملف +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",غير قادر على عرض هذا التقرير المشجر، وذلك بسبب البيانات المفقودة. على الأرجح، يتم تصفيتها بسبب الأذونات. apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,لقد فشل رفع الملف -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,تحرير عبر التحميل +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,تحرير عبر التحميل apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",نوع الوثيقة ...، على سبيل المثال العملاء apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,الشرط '{0}' غير صالح DocType: Workflow State,barcode,الباركود -apps/frappe/frappe/config/setup.py +235,Add your own translations,أضف الترجمة الخاصة بك +apps/frappe/frappe/config/setup.py +242,Add your own translations,أضف الترجمة الخاصة بك DocType: Country,Country Name,اسم الدولة DocType: About Us Team Member,About Us Team Member,أعضاء فريق صفحة من نحن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",يتم تعيين الأذونات على الأدوار و أنواع المستندات (وتسمى DocTypes ) من خلال وضع حقوق مثل القراءة والكتابة ، إنشاء، حذف، إرسال ، الغاء ، تعديل ، تقرير ، استيراد ، تصدير ، طباعة ، البريد الإلكتروني و تعيين أذونات العضو . DocType: Event,Wednesday,الأربعاء -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح DocType: OAuth Client,Token,رمز DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (اسم) للكيان الذي هو الملكية التي سيتم تحديدها apps/frappe/frappe/limits.py +84,"To renew, {0}.",تجديد، {0}. @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,التطبيق {0 apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,لا معاينة DocType: Workflow State,exclamation-sign,تعجب علامة- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,مشاهدة ضوابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,نطاق الموعد -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,جانت +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,جانت apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},الصفحة {0} من {1} DocType: About Us Settings,Introduce your company to the website visitor.,اعرض شركتك لزائرن الموقع الألكتروني apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json",مفتاح التشفير غير صالح، يرجى التحقق من site_config.json @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,تعليق واحد DocType: Email Alert,Days Before,أيام قبل DocType: Workflow State,volume-down,حجم إلى أسفل -apps/frappe/frappe/desk/reportview.py +262,No Tags,لا الكلمات +apps/frappe/frappe/desk/reportview.py +266,No Tags,لا الكلمات DocType: DocType,List View Settings,عرض قائمة إعدادات DocType: Email Account,Send Notification to,إرسال إشعار ل DocType: DocField,Collapsible,للطي apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,حفظ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,ما الذى تحتاج المساعدة به؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,خيارات للاختيار. كل خيار على سطر جديد. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,الغاء دائم {0} ؟ +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,الغاء دائم {0} ؟ DocType: Workflow State,music,موسيقى apps/frappe/frappe/www/qrcode.html +3,QR Code,رمز الاستجابة السريعة apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,تاريخ آخر تعديل DocType: Web Page,Settings,إعدادات apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,يرجى تحديد DOCTYPE DocType: Print Format,Style Settings,نمط الضبط -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,أكثر +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,أكثر DocType: Contact,Sales Manager,مدير المبيعات -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,إعادة تسمية +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,إعادة تسمية DocType: Print Format,Format Data,تنسيق البيانات -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,مثل +apps/frappe/frappe/utils/bot.py +91,Like,مثل DocType: Customize Form Field,Customize Form Field,تخصيص حقل نموذج DocType: OAuth Client,Grant Type,منحة نوع apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,تحقق من وثائق قابلة للقراءة من قبل العضو apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,لا يسمح بإدراج التطبيق DocType: Deleted Document,Hub Sync ID,معرف مزامنة المحور -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,استخدام٪ كما البدل +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,استخدام٪ كما البدل apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","عنوان مجال البريد الألكتروني غير معرف لهذا الحساب, إنشيء واحد ؟" DocType: User,Reset Password Key,إعادة تعيين كلمة المرور الرئيسية DocType: Email Account,Enable Auto Reply,تمكين الرد التلقائي @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,الحد الأدنى من كلمة المرور DocType: DocType,Fields,الحقول DocType: System Settings,Your organization name and address for the email footer.,اسم المؤسسة وعنوانك لتذييل البريد الإلكتروني. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,الجدول الرئيسي +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,الجدول الرئيسي apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 اكتمل النسخ الاحتياطي! apps/frappe/frappe/config/desktop.py +60,Developer,مطور apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,إنشاء @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,تعيين مرة واحدة فقط DocType: Email Queue Recipient,Email Queue Recipient,البريد الإلكتروني المستلم قائمة الانتظار DocType: Address,Nagaland,ناجالاند apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,اسم المستخدم {0} موجود بالفعل -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},يوجد خطأ في قالب العناوين {0} DocType: Footer Item,"target = ""_blank""",الهدف = "_blank" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,مستوى عالي DocType: S3 Backup Settings,Secret Access Key,مفتاح الوصول السري apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,ذكر -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,تمت إعادة تعيين سر مكتب المدعي العام. سوف تكون هناك حاجة لإعادة التسجيل على تسجيل الدخول المقبل. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,تمت إعادة تعيين سر مكتب المدعي العام. سوف تكون هناك حاجة لإعادة التسجيل على تسجيل الدخول المقبل. DocType: Communication,From Full Name,من الاسم الكامل apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},لم يكن لديك الوصول إلى تقرير: {0} DocType: User,Send Welcome Email,إرسال رسالة ترحيبية -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد> الطباعة والعلامة التجارية> نموذج العنوان. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,إزالة تصفية (فلترة) +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,إزالة تصفية (فلترة) DocType: Address,Daman and Diu,دامان و ديو DocType: Address,Personal,الشخصية -apps/frappe/frappe/config/setup.py +111,Bulk Rename,إعادة تسمية بالجمله +apps/frappe/frappe/config/setup.py +118,Bulk Rename,إعادة تسمية بالجمله DocType: Email Queue,Show as cc,كما تظهر سم مكعب DocType: DocField,Heading,عنوان DocType: Workflow State,resize-vertical,تغيير حجم عمودية -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. ارفع DocType: Contact Us Settings,Introductory information for the Contact Us Page,المعلومات التمهيدية لصفحة اتصل بنا DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,علامة إستهجان @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,في البحث العالمية DocType: Workflow State,indent-left,المسافة البادئة اليسرى apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,أنه أمر محفوف بالمخاطر لحذف هذا الملف: {0}. يرجى الاتصال بمدير النظام الخاص بك. DocType: Currency,Currency Name,اسم العملة -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,لا رسائل البريد الإلكتروني +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,لا رسائل البريد الإلكتروني DocType: Report,Javascript,جافا سكريبت DocType: File,Content Hash,تجزئة المحتوى DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,يخزن JSON من الإصدارات المعروفة الأخيرة من مختلف التطبيقات المثبتة. يتم استخدامها لعرض ملاحظات الإصدار. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form",لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدم كوستميز فورم DocType: Report,Query,سؤال DocType: DocType,Sort Order,ترتيب -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف DocType: Custom Field,Select the label after which you want to insert new field.,حدد التسمية بعد الذي تريد إدراج حقل جديد. ,Document Share Report,وثيقة حصة تقرير DocType: User,Last Login,آخر تسجيل دخول -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},مطلوب Fieldname في الصف {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},مطلوب Fieldname في الصف {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,عمود DocType: Custom Field,Adds a custom field to a DocType,DocType اضافة حقل خاص ل DocType: File,Is Home Folder,هو المجلد الرئيسي apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} بريد إلكتروني غير صحيح -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,اختر أتلست سجل 1 للطباعة +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,اختر أتلست سجل 1 للطباعة apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',العضو '{0}' بالفعل دور '{1}' DocType: System Settings,Two Factor Authentication method,اثنان عامل المصادقة الأسلوب apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},مشترك مع {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,إلغاء الاشتراك -DocType: Communication,Reference Name,اسم المرجع +DocType: Activity Log,Reference Name,اسم المرجع apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,دعم الدردشة DocType: Error Snapshot,Exception,استثناء -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,"لم يتم العثور على نتائج ل '
" DocType: Email Account,Use IMAP,استخدام IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,غير قادر على جعل الطلب إلى URL فرابي خادم +DocType: Activity Log,Activity Log,سجل النشاط DocType: Integration Request,Authorized,مخول DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,أنواع واحد يكون سجل واحد فقط لا الجداول المرتبطة . يتم تخزين القيم في tabSingles DocType: System Settings,Enable Password Policy,تمكين سياسة كلمة المرور @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]",ال apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},لا يمكن تغيير نوع الحقل ل {0} DocType: Workflow,Rules defining transition of state in the workflow.,قواعد تحديد الانتقال من الدولة في سير العمل. DocType: File,Folder,مجلد +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,استيراد / تصدير البيانات من ملفات كسف و إكسيل. DocType: DocField,Index,مؤشر DocType: Email Group,Newsletter Manager,مدير النشرة الإخبارية apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,الخيار 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} إلى {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} إلى {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,تسجيل الخطأ خلال الطلبات. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},تسجيل الدخول رمز التحقق من {} DocType: Address,Uttar Pradesh,أوتار براديش DocType: Address,Pondicherry,بونديشيري -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,جعل الملف (الملفات) الخاص أو العام؟ +DocType: Data Import,Import Status,حالة الاستيراد +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,جعل الملف (الملفات) الخاص أو العام؟ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},من المقرر أن يرسل إلى {0} DocType: Kanban Board Column,Indicator,مؤشر DocType: DocShare,Everyone,كل شخص DocType: Workflow State,backward,الى الوراء -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} DocType: Email Queue,Add Unsubscribe Link,إضافة رابط إلغاء الاشتراك apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,لا تعليقات حتى الآن. بدء مناقشة جديدة. DocType: Workflow State,share,مشاركة apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.",انتهى اشتراكك في {0}. تجديد، الرجاء إرسال بريد إلكتروني إلى {1}. -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,تحديد الترقيم المتسلسل للمعاملات . +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,تحديد الترقيم المتسلسل للمعاملات . apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,لا يمكنك أحب شيء الذي قمت بإنشائه apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply",سيسي، بسك و ستاندرد الرد DocType: User,Last IP,أخر IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,موصل ترحيل DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,تصفية السجلات استنادا إلى صلاحيات المستخدمين المخصصة للمستخدم DocType: Note,Notify Users On Every Login,إعلام المستخدمين على كل تسجيل الدخول DocType: PayPal Settings,API Password,API كلمة المرور -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,أدخل وحدة الثعبان أو حدد نوع الموصل +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,أدخل وحدة الثعبان أو حدد نوع الموصل apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Fieldname لم يتم تعيين ل حقل مخصص apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,آخر تحديث بواسطة apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,غير مسموح به. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,لا يمكن حذف الملف لأنه ينتمي إلى {0} {1} الذي ليس لديك أذونات apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,السيدة DocType: Website Theme,Background Color,لون الخلفية -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى. DocType: Portal Settings,Portal Settings,إعدادات بوابة DocType: Data Migration Mapping,Mapping,رسم الخرائط DocType: Web Page,0 is highest,0 أعلى قيمة @@ -667,6 +668,7 @@ DocType: Language,Language Name,اسم اللغة DocType: Email Group Member,Email Group Member,أرسل عضو المجموعة DocType: Email Alert,Value Changed,قيمة تغيير apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},تكرار اسم {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,إعادة المحاولة DocType: Web Form Field,Web Form Field,حقل نموذج الويب apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,إخفاء الحقل في منشئ التقارير apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,تحرير HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,تسوق DocType: DocField,Button,زر apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1} -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,أعمدة من الأرشيف +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,أعمدة من الأرشيف DocType: Email Account,Default Outgoing,النفقات الافتراضية DocType: Workflow State,play,لعب apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,انقر على الرابط أدناه لإكمال التسجيل وتعيين كلمة مرور جديدة apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,لم تضف -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,لا حسابات البريد الإلكتروني المخصصة +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,لا حسابات البريد الإلكتروني المخصصة DocType: Contact Us Settings,Contact Us Settings,إعدادات الاتصال بنا apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,جار البحث ... DocType: Workflow State,text-width,عرض النص @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,تحقق الاتصالات DocType: Address,Rajasthan,راجستان apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,تدار تقارير منشئ التقرير مباشرة بواسطة منشئ التقرير. لا شيء للقيام به. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,يرجى التحقق من عنوان البريد الإلكتروني الخاص بك -apps/frappe/frappe/model/document.py +1039,none of,أيا من +apps/frappe/frappe/model/document.py +1045,none of,أيا من apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,أرسل لي نسخة DocType: Dropbox Settings,App Secret Key,التطبيق سر مفتاح DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,موقع الكتروني apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,سيتم عرض العناصر المحددة على سطح المكتب -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,كانبان مجلس {0} غير موجود. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,كانبان مجلس {0} غير موجود. +DocType: Data Import,Data Import,استيراد البيانات apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} يستعرض هذه الوثيقة حالياً DocType: ToDo,Assigned By Full Name,تعيين بواسطة الاسم الكامل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} تم تحديث -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,قبل {0} أيام DocType: Email Account,Awaiting Password,في انتظار كلمة المرور DocType: Address,Address Line 1,العنوان سطر 1 DocType: Custom DocPerm,Role,دور apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,إعدادات... -apps/frappe/frappe/utils/data.py +459,Cent,سنت -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,يؤلف البريد الإلكتروني -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).",الدول عن سير العمل (على سبيل المثال مشروع ، وافق ، ألغي ) . +apps/frappe/frappe/utils/data.py +464,Cent,سنت +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,يؤلف البريد الإلكتروني +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).",الدول عن سير العمل (على سبيل المثال مشروع ، وافق ، ألغي ) . DocType: Print Settings,Allow Print for Draft,السماح بالطباعة للمسودة apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,ضبط الكمية -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد DocType: Contact,Unsubscribed,إلغاء اشتراكك apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,تعيين أدوار مخصصة لصفحة وتقرير apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,تقييم: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,لا يمكن العثور على UIDVALIDITY ردا وضع IMAP -,Data Import Tool,أداة استيراد البيانات DocType: Address,Dadra and Nagar Haveli,دادرا وناغار هافيلي -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,يرجى الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,تحميل الملفات يرجى الانتظار لبضع ثوان. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,إرفاق صورتك +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,إرفاق صورتك apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,قيم صف تغييرها DocType: Workflow State,Stop,توقف DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,الرابط إلى الصفحة التي تريد فتحها. اتركه فارغا إذا كنت تريد أن تجعل من أحد الوالدين المجموعة. @@ -747,7 +748,7 @@ DocType: Report,Script Report,تقرير النصي DocType: OAuth Authorization Code,Scopes,نطاقات DocType: About Us Settings,Company Introduction,مقدمة الشركة DocType: DocField,Length,طول -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,استعادة أو حذف مستند نهائيا. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,استعادة أو حذف مستند نهائيا. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,اختبار غسويت تنفيذها بنجاح. تم تكوين التكامل غسويت بشكل صحيح DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,التطبيق {0} تم إزالتها DocType: Custom DocPerm,Apply User Permissions,تطبيق صلاحيات المستخدم DocType: User,Modules HTML,وحدات HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,في عداد المفقودين القيم المطلوبة +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,في عداد المفقودين القيم المطلوبة DocType: DocType,Other Settings,اعدادات اخرى DocType: Data Migration Connector,Frappe,مخفوق الحليب بالأيس كريم apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,علامة مقروء apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} لم يتم تحديد -DocType: Authentication Log,Operation,عملية +DocType: Activity Log,Operation,عملية DocType: Customize Form,Change Label (via Custom Translation),تغيير تسمية (عبر الترجمة مخصص) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},لا يوجد تصريح إلى {0} {1} {2} DocType: Address,Permanent,دائم apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,ملاحظة: قد قواعد أخرى إذن تنطبق أيضا apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},لا يسمح للوصول إلى {0} مع {1} {2} = +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +",إذا تم تحديد ذلك، فسيتم استيراد الصفوف التي تحتوي على بيانات صالحة وسيتم تفريغ الصفوف غير الصالحة في ملف جديد لتتمكن من استيراده لاحقا. apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,عرض هذا في متصفحك DocType: DocType,Search Fields,البحث الحقول DocType: System Settings,OTP Issuer Name,اسم جهة مكتب المدعي العام @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,أوث حاملها رمز apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,لا المستند المحدد apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,حدث -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:",على {0}، {1} كتب: +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:",على {0}، {1} كتب: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,لا يمكنك حذف الحقول القياسية. يمكنك إخفاءها فقط إذا كنت تريد DocType: Top Bar Item,For top bar,الشريط العلوي لل apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل @@ -789,35 +792,34 @@ DocType: Workflow State,minus,ناقص DocType: S3 Backup Settings,Bucket,دلو apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,خطأ الخادم : يرجى مراجعة سجلات الخادم الخاص بك أو الاتصال بالدعم التكنولوجيا . apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,نرحب البريد الإلكتروني المرسلة -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,دعونا نقوم بإعداد النظام للمرة الاولى. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,دعونا نقوم بإعداد النظام للمرة الاولى. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,متميز apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,مسجل بالفعل DocType: System Settings,Float Precision,دقة الرقم العشري apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,الوحيد المسؤول يمكن تحرير -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,اسم الملف +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,اسم الملف DocType: DocType,Editable Grid,قابلة للتعديل Grid DocType: Property Setter,Property Setter,الملكية واضعة DocType: Web Form,Allow Print,السماح للطباعة apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,لا التطبيقات المثبتة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,بمناسبة حقل إلزامي كما DocType: Communication,Clicked,النقر -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} DocType: User,Google User ID,جوجل هوية المستخدم apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,من المقرر أن ترسل DocType: DocType,Track Seen,المسار رأيت apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,لا يمكن إلا أن هذه الطريقة يمكن استخدامها لإنشاء تعليق DocType: Kanban Board Column,orange,البرتقالي -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,لا {0} وجدت -apps/frappe/frappe/config/setup.py +245,Add custom forms.,إضافة نماذج مخصصة. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,لا {0} وجدت +apps/frappe/frappe/config/setup.py +252,Add custom forms.,إضافة نماذج مخصصة. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} في {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,قدمت هذه الوثيقة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ويوفر النظام العديد من أدوار محددة مسبقا. يمكنك إضافة أدوار جديدة لتعيين أذونات الدقيقة. DocType: Communication,CC,CC DocType: Country,Geo,الجغرافية -DocType: Domain Settings,Domains,المجالات +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,المجالات DocType: Blog Category,Blog Category,تصنيف المدونة apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,لا يمكن تعيين بسبب فشل الشرط التالي: -DocType: Data Migration Connector,Postgres,بوستجرس DocType: Role Permission for Page and Report,Roles HTML,الأدوار HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,اختر صورة العلامة التجارية لأول مرة. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,نشط @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,أزرق apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,سيتم إزالة كافة التخصيصات. يرجى التأكيد. DocType: Page,Page HTML,صفحة HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة ' +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة ' DocType: SMS Parameter,Header,العنوان الرأسي -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},غير معروف العمود: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},غير معروف العمود: {0} DocType: Email Alert Recipient,Email By Role,البريد الالكتروني عن طريق دور apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,المستخدمين مع دور {0} : apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},تثبيت التطبيقات {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,يمثل العضو في النظ DocType: Communication,Label,ملصق apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق. DocType: User,Modules Access,وحدات الوصول -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,الرجاء إغلاق هذه النافذة +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,الرجاء إغلاق هذه النافذة DocType: Print Format,Print Format Type,طباعة نوع تنسيق DocType: Newsletter,A Lead with this Email Address should exist,يجب أن يوجد الرصاص مع هذا عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,التطبيقات المفتوحة المصدر لشبكة الإنترنت DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","""Open Sans"" إضافة إسم ""خطوط جوجل للويب"" مثل" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,طلب مهلة +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,تمكين / تعطيل النطاقات DocType: Role Permission for Page and Report,Allow Roles,السماح الأدوار DocType: DocType,Hide Toolbar,إخفاء شريط الأدوات DocType: User,Last Active,آخر تواجد في DocType: Email Account,SMTP Settings for outgoing emails,إعدادات SMTP لرسائل البريد الإلكتروني الصادرة -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,فشل الاستيراد apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,تم تحديث كلمة السر الخاصة بك. هنا هو كلمة السر الجديدة DocType: Email Account,Auto Reply Message,رد تلقائي على الرسائل DocType: Feedback Trigger,Condition,الحالة -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} قبل ساعات -apps/frappe/frappe/utils/data.py +574,1 month ago,قبل شهر +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} قبل ساعات +apps/frappe/frappe/utils/data.py +586,1 month ago,قبل شهر DocType: Contact,User ID,معرف المستخدم DocType: Communication,Sent,أرسلت DocType: Address,Kerala,ولاية كيرالا @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,بريد ياهو apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,اشتراكك سوف ينتهي غدا. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,حفظ! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} ليس لون سداسي عرافة صالحا apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,سيدتي apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},تحديث {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,سيد DocType: DocType,User Cannot Create,لا يمكن للمستخدم إنشاء apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,المجلد {0} غير موجود -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! DocType: Customize Form,Enter Form Type,أدخل نوع النموذج +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,المعلمة مفقودة كانبان اسم المجلس apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,لا توجد سجلات معلمة. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,إزالة الميدان DocType: User,Send Password Update Notification,ارسل إشعارات تحديث كلمة السر @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,أخضر DocType: Custom DocPerm,Additional Permissions,ضوابط إضافية DocType: Email Account,Always use Account's Email Address as Sender,دائما استخدم حساب البريد الألكتروني كمرسل apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,سجل الدخول للتعليق -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,البدء في إدخال البيانات تحت هذا الخط +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,البدء في إدخال البيانات تحت هذا الخط apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},القيم المتغيرة ل{0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,يعدل أو يكيف... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,معطل DocType: Workflow State,eye-close,إغلاق العين DocType: OAuth Provider Settings,OAuth Provider Settings,إعدادات مزود أوث -apps/frappe/frappe/config/setup.py +257,Applications,تطبيقات +apps/frappe/frappe/config/setup.py +264,Applications,تطبيقات apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,بلغ عن هذه المسألة DocType: Custom Script,Adds a custom script (client or server) to a DocType,اضافة سيناريو مخصص (العميل أو الخادم) إلى DOCTYPE DocType: Address,City/Town,المدينة / البلدة @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,يكون عنوان شركتك apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,تحرير صف DocType: Workflow Action,Workflow Action Master,سير العمل الاجراء الاساسي DocType: Custom Field,Field Type,نوع الحقل -apps/frappe/frappe/utils/data.py +489,only.,فقط. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,لا يمكن إعادة تعيين سر مكتب المدعي العام إلا بواسطة المسؤول. +apps/frappe/frappe/utils/data.py +494,only.,فقط. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,لا يمكن إعادة تعيين سر مكتب المدعي العام إلا بواسطة المسؤول. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,تجنب السنوات التي ترتبط معك. DocType: GSuite Templates,GSuite Templates,قوالب غسويت -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,تنازلي apps/frappe/frappe/utils/goal.py +109,Goal,الغاية apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,خادم البريد غير صالحة . يرجى تصحيح و حاول مرة أخرى. DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,فيلم apps/frappe/frappe/model/db_query.py +375,No permission to read {0},لا إذن لقراءة {0} apps/frappe/frappe/config/desktop.py +8,Tools,أدوات apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,تجنب السنوات الأخيرة. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,العقد الجذرية متعددة غير مسموح به. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,العقد الجذرية متعددة غير مسموح به. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",إذا تم تمكينه، فسيتم إشعار المستخدمين في كل مرة يسجلون فيها الدخول. إذا لم يتم تمكينه، فسيتم إشعار المستخدمين مرة واحدة فقط. -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,حالة {0} غير صالحة +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,حالة {0} غير صالحة DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.",إذا تم، سيكون للمستخدمين لا ترى الحوار تأكيد الوصول. -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,مطلوب حقل معرف لتعديل القيم باستخدام التقرير. يرجى تحديد الحقل ID باستخدام لاقط العمود apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,تعليقات apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,أكد apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,انهيار جميع @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,تعيين أذونات المستخدم DocType: Email Account,Email Account Name,البريد الإلكتروني اسم الحساب apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,حدد أنواع المستندات -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,حدث خطأ ما أثناء إنشاء الرمز المميز للدخول إلى صندوق الإسقاط. يرجى التحقق من سجل الأخطاء للحصول على مزيد من التفاصيل. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,حدث خطأ ما أثناء إنشاء الرمز المميز للدخول إلى صندوق الإسقاط. يرجى التحقق من سجل الأخطاء للحصول على مزيد من التفاصيل. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",النشرات الإخبارية إلى جهات الاتصال، ويؤدي. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","على سبيل المثال ""دعم ""،"" المبيعات ""،"" جيري يانغ """ @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook User ID DocType: Workflow State,fast-forward,بسرعة الى الأمام DocType: Communication,Communication,اتصالات apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.",تحقق الأعمدة لتحديد، اسحب لضبط النظام. -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,هذا أجراء دائم لا يمكن التراجع. المتابعة؟ DocType: Event,Every Day,كل يوم DocType: LDAP Settings,Password for Base DN,كلمة السر لقاعدة DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,حقل الجدول -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,أعمدة بناء على +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,أعمدة بناء على apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,أدخل المفاتيح لتمكين التكامل مع غوغل غسويت DocType: Workflow State,move,خطوة -apps/frappe/frappe/model/document.py +1223,Action Failed,فشل العمل +apps/frappe/frappe/model/document.py +1229,Action Failed,فشل العمل apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,للعضو -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,دليل الحسابات +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,دليل الحسابات DocType: Address,Assam,أسام -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,يتبقى لديك {0} يوما في اشتراكك +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,يتبقى لديك {0} يوما في اشتراكك apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,حساب البريد الإلكتروني الصادر غير صحيح apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily المعاقين apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} مثبتة -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,يرجى وضع عنوان البريد الإلكتروني +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,يرجى وضع عنوان البريد الإلكتروني DocType: System Settings,Date and Number Format,صيغة التاريخ و الرقم apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,الحد الأقصى لحجم المرفق {0} MB -apps/frappe/frappe/model/document.py +1038,one of,واحدة من -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,الرجاء تحديد ملف للنسخ +apps/frappe/frappe/model/document.py +1044,one of,واحدة من apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,فحص لحظة واحدة apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,إظهار البطاقات DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",إذا تم تحديد تطبيق تصريح المستخدم الصارم ويتم تعريف إذن المستخدم لنوع دوكتيبي للمستخدم، فإن جميع المستندات التي تكون فيها قيمة الرابط فارغة، لن يتم عرضها على هذا المستخدم @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,الإجراءات DocType: Workflow State,align-justify,محاذاة-تبرير DocType: User,Middle Name (Optional),الاسم الأوسط (اختياري) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,لا يسمح -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,الحقول التالية والقيم المفقودة: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,لم يكن لديك أذونات كافية لإكمال العمل +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,الحقول التالية والقيم المفقودة: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,لم يكن لديك أذونات كافية لإكمال العمل apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,لا يوجد نتائج DocType: System Settings,Security,أمن apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,من المقرر أن يرسل إلى {0} المتلقين +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,يقطع apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},إعادة تسمية من {0} إلى {1} DocType: Currency,**Currency** Master,سجل **العملات** DocType: Email Account,No of emails remaining to be synced,عدد رسائل البريد الإلكتروني المتبقية ليكون مزامن -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,تحميل +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,تحميل apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,الرجاء حفظ المستند قبل التعيين apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,انقر هنا لنشر البق والاقتراحات DocType: Website Settings,Address and other legal information you may want to put in the footer.,العنوان وغيرها من المعلومات القانونية قد تحتاج لوضع في تذييل الصفحة. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,قبل {0} دقائق DocType: Kanban Board Column,lightblue,lightblue apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,تم إدخال نفس الحقل أكثر من مرة -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. تحديد الأعمدة apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,يجب على كل أحداث اليوم ينتهي في نفس اليوم. DocType: Communication,User Tags,بطاقات المستخدم @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,تسجيل الدخول DocType: Web Page,Main Section,القسم العام DocType: Page,Icon,رمز apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,لتصفية القيم بين 5 و 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password",تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password",تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,الإعداد> مدير أذونات المستخدم apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,اليوم / الشهر / السنة apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,غسويت اختبار البرنامج النصي @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,حق النشر apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,اذهب DocType: OAuth Authorization Code,Invalid,غير صالحة DocType: ToDo,Due Date,بسبب تاريخ -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,يوم الدفعة الربعية +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,يوم الدفعة الربعية DocType: Social Login Keys,Google Client Secret,سر عميل جوجل DocType: Website Settings,Hide Footer Signup,إخفاء التذييل apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,إلغاء هذه الوثيقة apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,كتابة ملف بيثون في نفس المجلد حيث تم حفظ هذا العمود والعودة والنتيجة. DocType: DocType,Sort Field,نوع الحقل DocType: Razorpay Settings,Razorpay Settings,إعدادات Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,تحرير تصفية (فلترة) -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,تحرير تصفية (فلترة) +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,أضف المزيد DocType: System Settings,Session Expiry Mobile,جلسة انتهاء موبايل apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,نتائج البحث عن apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,اختار ل تحميل : apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,إذا {0} مسموح DocType: Custom DocPerm,If user is the owner,إذا كان المستخدم هو المالك +apps/frappe/frappe/config/integrations.py +88,Maps,خرائط ,Activity,نشاط DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","مساعدة: لربط إلى سجل آخر في النظام، إستخدم ""# نموذج / ملاحظة / [اسم الملاحظة]""، كرابط URL. (لا تستخدم ""http://"")" DocType: User Permission,Allow,السماح apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,دعونا تجنب الكلمات المكررة وشخصيات DocType: Communication,Delayed,مؤجل -apps/frappe/frappe/config/setup.py +126,List of backups available for download,قائمة احتياطية متوفرة للتحميل +apps/frappe/frappe/config/setup.py +133,List of backups available for download,قائمة احتياطية متوفرة للتحميل apps/frappe/frappe/www/login.html +86,Sign up,سجل DocType: Test Runner,Output,الناتج DocType: Email Alert,Set Property After Alert,تعيين الملكية بعد تنبيه -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,إضافة حقول إلى النماذج. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,إضافة حقول إلى النماذج. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,يبدو أن هناك شيئا خاطئا مع هذا التكوين باي بال لهذا الموقع. DocType: File,rgt,RGT DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,نوع الملف DocType: Workflow State,leaf,ورق DocType: Portal Menu Item,Portal Menu Item,بوابة عنصر القائمة DocType: Contact Us Settings,Email ID,البريد الإلكتروني +DocType: Activity Log,Keep track of all update feeds,تتبع جميع يغذي التحديث DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",إذا تم التحقق من أذونات المستخدم تطبيق تقرير دوكتيب ولكن لا يتم تعريف أذونات المستخدم لتقرير للمستخدم، ثم يتم عرض كافة التقارير لهذا المستخدم DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: إضافة Reference: {{ reference_doctype }} {{ reference_name }}
لإرسال وثيقة مرجعية
apps/frappe/frappe/modules/utils.py +196,App not found,لم يتم العثور على التطبيق
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},لا يمكن إنشاء {0} ضد وثيقة الطفل: {1}
@@ -1898,7 +1902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,غير فعال
DocType: Contact,Accounts Manager,مدير حسابات
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,تم إلغاء دفعتك.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,حدد نوع الملف
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,حدد نوع الملف
DocType: Help Article,Knowledge Base Editor,محرر قاعدة المعرفة
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,لم يتم العثور على الصفحة
DocType: DocField,Precision,دقة
@@ -1925,12 +1929,12 @@ DocType: Property Setter,Property Type,نوع الملكية
DocType: Workflow State,screenshot,لقطة شاشة
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,مسؤول فقط يمكن حفظ تقرير القياسية. الرجاء إعادة تسمية وحفظ.
DocType: System Settings,Background Workers,عمال الخلفية
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,فييلدنام {0} متعارضة مع كائن ميتا
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,فييلدنام {0} متعارضة مع كائن ميتا
DocType: Deleted Document,Data,معطيات
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,حالة المستند
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},كنت قد قدمت {0} من {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,أوث كود التفويض
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,لا يسمح ل استيراد
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,لا يسمح ل استيراد
DocType: Social Login Keys,Frappe Client Secret,سر العميل فرابي
DocType: Deleted Document,Deleted DocType,DOCTYPE المحذوفة
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,إذن مستويات
@@ -1938,11 +1942,11 @@ DocType: Workflow State,Warning,تحذير
DocType: Data Migration Run,Percent Complete,في المئة كاملة
DocType: Tag Category,Tag Category,العلامة الفئة
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!",تجاهل البند {0} ، لأن مجموعة موجودة بنفس الاسم !
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,مساعدة
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,مساعدة
DocType: User,Login Before,تسجيل الدخول قبل
DocType: Web Page,Insert Style,إدراج نمط
-apps/frappe/frappe/config/setup.py +262,Application Installer,مثبت التطبيق
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,اسم التقرير الجديد
+apps/frappe/frappe/config/setup.py +269,Application Installer,مثبت التطبيق
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,اسم التقرير الجديد
DocType: Workflow State,info-sign,معلومات تسجيل الدخول،
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,قيمة {0} لا يمكن أن تكون قائمة
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام
@@ -1955,6 +1959,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,ضوابط دور
DocType: Help Article,Intermediate,متوسط
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,تم استعادة المستند الملغى كمسودة
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,يمكنه القراءة
DocType: Custom Role,Response,الإستجابة
DocType: DocField,Geolocation,تحديد الموقع الجغرافي
@@ -1978,8 +1983,8 @@ DocType: OAuth Client,Default Redirect URI,افتراضي إعادة توجيه
DocType: Email Alert,Recipients,المستلمين
DocType: System Settings,Choose authentication method to be used by all users,اختر طريقة المصادقة لاستخدامها من قبل جميع المستخدمين
DocType: Workflow State,ok-sign,علامة OK-
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,المستندات المحذوفة
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,تنسيق كسف حساس لحالة الأحرف
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,المستندات المحذوفة
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,تنسيق كسف حساس لحالة الأحرف
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,رمز سطح المكتب موجود بالفعل
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,مكررة
DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية
@@ -1987,14 +1992,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,أندامان ونيكوبار
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,وثيقة غسويت
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,يرجى تحديد أي يجب فحص حقل القيمة
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""الأم"" يدل على الجدول الأصل الذي يجب أن يضاف هذا الصف"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""الأم"" يدل على الجدول الأصل الذي يجب أن يضاف هذا الصف"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,لا يمكن إرسال هذه الرسالة الإلكترونية. لقد تجاوزت حد الإرسال لعدد {0} من رسائل البريد الإلكتروني لهذا اليوم.
DocType: Website Theme,Apply Style,تطبيق نمط
DocType: Feedback Request,Feedback Rating,ردود الفعل التصويت
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,مشترك مع
DocType: Help Category,Help Articles,مقالات المساعدة
,Modules Setup,إعداد وحدات
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,النوع:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,النوع:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,أخفقت دفعتك.
DocType: Communication,Unshared,غير مشترك
DocType: Address,Karnataka,كارناتاكا
@@ -2003,12 +2008,11 @@ DocType: User,Location,الموقع
,Permitted Documents For User,المستندات يسمح للمستخدم
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","تحتاج إلى أن يكون ""مشاركة"" إذن"
DocType: Communication,Assignment Completed,تم إنجاز المهمة
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},تعديل بالجمله {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},تعديل بالجمله {0}
DocType: Email Alert Recipient,Email Alert Recipient,ارسال بريد تنبيه للمستلم
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,غير نشطة
DocType: About Us Settings,Settings for the About Us Page,إعدادات لمن نحن الصفحة
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,إعدادات بوابة الدفع الشريطية
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,حدد نوع الوثيقة لتحميل
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,على سبيل المثال pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,استخدام الحقل لتصفية السجلات
DocType: DocType,View Settings,عرض إعدادات
@@ -2032,6 +2036,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,لا ي
DocType: Unhandled Email,Unhandled Email,البريد الإلكتروني غير معالج
DocType: Event,Monday,يوم الاثنين
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,الاستفادة من نماذج لوحة المفاتيح أطول
+DocType: Data Import,Don't create new records,لا تنشئ سجلات جديدة
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,خطأ مجموعة متداخلة . يرجى الاتصال بمدير البرنامج.
DocType: Workflow State,envelope,مغلف
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,الخيار 2
@@ -2042,41 +2047,41 @@ DocType: Website Settings,Brand Image,صورة العلامة التجارية
DocType: Print Settings,A4,أ4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",الإعداد من أعلى الملاحة تذييل وبار والشعار.
DocType: Web Form Field,Max Value,ماكس القيمة
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف
DocType: Contact,All,جميع
DocType: Email Queue,Recipient,مستلم
DocType: Communication,Has Attachment,لديها مرفق
DocType: Address,Sales User,مبيعات العضو
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,سحب وإسقاط أداة لبناء وتخصيص تنسيقات طباعة.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,سحب وإسقاط أداة لبناء وتخصيص تنسيقات طباعة.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,وسع
DocType: Address,Sikkim,سيكيم
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,مجموعة
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,تم إيقاف نمط طلب البحث هذا
DocType: Email Alert,Trigger Method,الطريقة الزناد
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},يجب أن يكون المشغل واحدا من {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},يجب أن يكون المشغل واحدا من {0}
DocType: Dropbox Settings,Dropbox Access Token,دروببوإكس رمز الوصول
DocType: Workflow State,align-right,محاذاة اليمين
DocType: Auto Email Report,Email To,البريد الإلكتروني الى
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,المجلد {0} ليست فارغة
DocType: Page,Roles,الأدوار
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},خطأ: قيمة مفقودة ل {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,الحقل {0} ليس اختيار.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,الحقل {0} ليس اختيار.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,الدورة انتهاء الاشتراك
DocType: Workflow State,ban-circle,دائرة الحظر
DocType: Email Flag Queue,Unread,غير مقروء
DocType: Bulk Update,Desk,مكتب
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),يجب أن يكون الفلتر عبارة عن قائمة أو قائمة (في قائمة)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),يجب أن يكون الفلتر عبارة عن قائمة أو قائمة (في قائمة)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,كتابة استعلام SELECT. لم يتم ترحيلها علما نتيجة (يتم إرسال جميع البيانات دفعة واحدة).
DocType: Email Account,Attachment Limit (MB),الحد مرفق (MB)
DocType: Address,Arunachal Pradesh,اروناتشال براديش
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,الإعداد التلقائي البريد الإلكتروني
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,الإعداد التلقائي البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,CTRL + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,هذا هو كلمة السر المشتركة من أعلى إلى 10.
DocType: User,User Defaults,الملف الشخصي الافتراضيات
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,انشاء جديد
DocType: Workflow State,chevron-down,شيفرون لأسفل
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل)
DocType: Async Task,Traceback,Traceback
DocType: Currency,Smallest Currency Fraction Value,أصغر العملات الكسر القيمة
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,تكليف إلى
@@ -2096,7 +2101,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,حقل رقم تعريف الترحيل
DocType: Communication,Comment Type,تعليق نوع
DocType: OAuth Client,OAuth Client,العميل أوث
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,المستخدمين
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,المستخدمين
DocType: Communication,Timeline field Name,الزمني اسم الحقل
DocType: Address,Odisha,أوديشا
DocType: Report,Report Type,نوع التقرير
@@ -2106,7 +2111,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.",أدخل مفاتيح لتمكين تسجيل الدخول عبر الفيسبوك ، وجوجل، جيثب .
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},تعذر قراءة تنسيق الملف {0}
DocType: Auto Email Report,Filter Data,تصفية البيانات
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,إضافة علامة
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,يرجى إرفاق ملف الأول.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator",كانت هناك بعض الأخطاء تحديد اسم، يرجى الاتصال بمسؤول
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,حساب البريد الإلكتروني الوارد غير صحيح
@@ -2129,7 +2133,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,إ
DocType: Website Theme,Link Color,ارتباط اللون
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,المستخدم {0} لا يمكن تعطيل
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,",عزيزي مدير النظام،
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,بلدك
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,بلدك
DocType: Event,Sunday,الأحد
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,في شبكة عرض
DocType: Address Template,Template,قالب
@@ -2154,7 +2158,7 @@ DocType: DocField,Table,جدول
DocType: File,File Size,حجم الملف
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,يجب عليك تسجيل الدخول لتقديم هذا النموذج
DocType: User,Background Image,صورة الخلفية
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency",اختر بلدك، المنطقة الزمنية والعملات
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency",اختر بلدك، المنطقة الزمنية والعملات
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ما بين
DocType: Async Task,Queued,قائمة الانتظار
@@ -2168,12 +2172,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,مفتاح وصول التطبيق
DocType: OAuth Bearer Token,Access Token,رمز وصول
DocType: About Us Settings,Org History,تاريخ المنظمة
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,حجم النسخ الاحتياطي:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,حجم النسخ الاحتياطي:
DocType: Workflow,Workflow Name,اسم سير العمل
DocType: DocShare,Notify by Email,إعلام عبر البريد الإلكتروني
DocType: DocField,In Standard Filter,في تصفية القياسية
DocType: Web Form,Allow Edit,السماح بالتعديل
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,لصق
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,لصق
DocType: Webhook,Doc Events,دوك الأحداث
DocType: Auto Email Report,Based on Permissions For User,اعتماداً على الصلاحيات للمستخدم
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},لا يمكن تغيير حالة الوثيقة ملغاة .
@@ -2186,10 +2190,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password",تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",إدراج بعد الحقل '{0}' المذكورة في حقل مخصص '{1}'، مع التسمية '{2}'، غير موجود
DocType: Workflow State,signal,إشارة
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,يحتوي على مرفقات
DocType: DocType,Show Print First,إظهار الطباعة أوﻻ
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter للإضافة
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},إنشاء {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,حساب بريد إلكتروني جديد
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,حساب بريد إلكتروني جديد
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,تمت استعادة المستند
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,اختار اللغة...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},لا يمكنك تعيين "خيارات" للحقل {0}
@@ -2210,13 +2215,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,ارسال الى سلة المحذوفات
DocType: Web Form,Web Form Fields,الحقول نموذج ويب
DocType: Website Theme,Top Bar Text Color,أعلى شريط لون الخط
+DocType: Data Import,Amended From,معدل من
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},تحذير: غير قادر على العثور على {0} في أي جدول المتعلقة {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,ملف '{0}' لم يتم العثور
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,إزالة القسم
DocType: User,Change Password,تغيير كلمة المرور
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},صالح البريد الإلكتروني: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,مرحبا!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,مرحبا!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,يجب أن يكون نهاية الحدث بعد بداية
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,سيقوم هذا بتسجيل الخروج {0} من كافة الأجهزة الأخرى
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},ليس لديك إذن للحصول على تقرير عن: {0}
@@ -2225,26 +2231,27 @@ DocType: DocField,Allow Bulk Edit,السماح بالتحرير المجمع
DocType: Blog Post,Blog Post,منشور المدونه
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,البحث المتقدم
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,لا يسمح لك بعرض الرسالة الإخبارية.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.",المستوى 0 هو أذونات مستوى المستند، \ مستويات أعلى لأذونات مستوى المجال.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,فرز حسب
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,لا يمكن حفظ النموذج عند استيراد البيانات قيد التقدم.
DocType: Workflow,States,الدول
DocType: Email Alert,Attach Print,إرفق طباعة
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},اسم المستخدم اقترح: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,يوم
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,يوم
,Modules,وحدات برمجية
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,وضع أيقونات سطح المكتب
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,دفع النجاح
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,لا {0} الإلكتروني
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,حدث خطأ أثناء تحميل الملفات
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,لا {0} الإلكتروني
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,حدث خطأ أثناء تحميل الملفات
DocType: OAuth Bearer Token,Revoked,إلغاء
DocType: Web Page,Sidebar and Comments,الشريط الجانبي وتعليقات
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",عند تعديل مستند بعد الغاء وحفظه ، وسوف تحصل على عدد جديد هو نسخة من الرقم القديم .
DocType: Stripe Settings,Publishable Key,مفتاح قابل للنشر
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,بدء الاستيراد
DocType: Workflow State,circle-arrow-left,دائرة السهم اليسار
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,اسم الطرف
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,اسم الطرف
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,أنشئ سجل جديد
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,البحث
DocType: Currency,Fraction,جزء
@@ -2269,8 +2276,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,احصل على البنود
DocType: Contact,Image,صورة
DocType: Workflow State,remove-sign,إزالة التوقيع،
+DocType: Domain Settings,Domains HTML,النطاقات هتمل
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,اكتب شيئا في مربع البحث للبحث
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,تحديد سير العمل للنماذج
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,تحديد سير العمل للنماذج
DocType: Address,Other,آخر
DocType: S3 Backup Settings,Access Key ID,معرف مفتاح الوصول
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,بدء تنسيق جديد
@@ -2283,6 +2291,7 @@ DocType: Customize Form Field,Is Custom Field,هو حقل مخصص
DocType: Workflow,"If checked, all other workflows become inactive.",إذا تم، جميع مهام سير العمل الأخرى تصبح خاملة.
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[تسمية]: [نوع الحقل] / [خيارات]: [العرض]
DocType: Workflow State,folder-close,غلق مجلد
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,أبلغ عن:
DocType: Print Settings,Print taxes with zero amount,طباعة الضرائب مع مبلغ صفر
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} غير مسموح بإعادة تسميته
DocType: Custom Script,Custom Script,نص مخصص
@@ -2294,32 +2303,35 @@ DocType: Email Flag Queue,Action,حدث
DocType: GSuite Settings,Script URL,عنوان ورل للنص البرمجي
apps/frappe/frappe/www/update-password.html +111,Please enter the password,الرجاء إدخال كلمة المرور
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,لا يسمح لطباعة الوثائق الملغاة
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,لا يسمح لك لإنشاء أعمدة
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,معلومات:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,لا يسمح لك لإنشاء أعمدة
+DocType: Data Import,If you don't want to create any new records while updating the older records.,إذا كنت لا تريد إنشاء أي سجلات جديدة أثناء تحديث السجلات القديمة.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,معلومات:
DocType: Custom Field,Permission Level,إذن المستوى
DocType: User,Send Notifications for Transactions I Follow,إرسال الإشعارات عن المعاملات التي أتابعها
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة
+DocType: Google Maps,Client Key,مفتاح العميل
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,هل أنت متأكد أنك تريد حذف المرفق؟
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","لا يمكن حذف أو إلغاء ل{0} {1} يرتبط مع {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,شكرا
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,حفظ
DocType: Print Settings,Print Style Preview,معاينة قبل الطباعة ستايل
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,إختبار_المجلد
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,لا يسمح لك بتحديث الوثيقة نموذج الويب هذه
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,رسائل البريد الإلكتروني
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,رسائل البريد الإلكتروني
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,يرجى تحديد نوع الوثيقة أولا
DocType: About Us Settings,About Us Settings,إعدادات صفحة من نحن
DocType: Website Settings,Website Theme,نسق الموقع
DocType: DocField,In List View,في عرض القائمة
DocType: Email Account,Use TLS,استخدام TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,تسجيل الدخول أو كلمة المرور غير صالحة
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,إضافة جافا سكريبت الى (forms)
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,م
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,تنزيل نموذج
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,إضافة جافا سكريبت الى (forms)
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,م
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني
,Role Permissions Manager,مدير ضوابط الأدوار
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,اسم الشكل الجديد طباعة
DocType: Data Migration Run,Pull Insert,سحب إدراج
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,مسح المرفقات
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,إلزامية:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,إلزامية:
,User Permissions Manager,مدير ضوابط المستخدم
DocType: Property Setter,New value to be set,القيمة الجديدة التي سيتم تحديدها
DocType: Email Alert,Days Before or After,أيام قبل أو بعد
@@ -2329,7 +2341,7 @@ DocType: Website Settings,HTML Header & Robots,HTML الرأس والروبوت
DocType: User Permission,User Permission,إذن المستخدم
apps/frappe/frappe/config/website.py +32,Blog,مدونة
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,لم يتم تثبيت لداب
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,تحميل مع البيانات
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,تحميل مع البيانات
DocType: Workflow State,hand-right,ومن جهة اليمين
DocType: Website Settings,Subdomain,مجال فرعي
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,إعدادات مزود أوث
@@ -2345,21 +2357,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,يرجى تحديد تصنيف
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,إعادة تعيين مكتب المدعي العام سر
DocType: Email Account,Notify if unreplied for (in mins),يخطر إذا لا تحوي على ردود ل (في دقيقة)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,منذ يومين
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,منذ يومين
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,تصنيف تدوينات المدونة
DocType: Workflow State,Time,الوقت
DocType: DocField,Attach,إرفاق
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,إرسال ملاحظات طلب فقط إذا كان هناك اتصال واحد على الأقل متاح للوثيقة.
DocType: Custom Role,Permission Rules,إذن قوانين
DocType: GSuite Settings,GSuite Settings,إعدادات غسويت
DocType: Address,Links,الروابط
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,الرجاء تحديد نوع المستند.
apps/frappe/frappe/model/base_document.py +396,Value missing for,قيمة مفقودة لل
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,إضافة الطفل
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد.
DocType: GSuite Templates,Template Name,اسم القالب
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جديد من الوثيقة
DocType: Custom DocPerm,Read,قرأ
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,يرجى الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني
DocType: Address,Chhattisgarh,تشهاتيسجاره
DocType: Role Permission for Page and Report,Role Permission for Page and Report,إذن دور للصفحة وتقرير
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,محاذاة القيمة
@@ -2367,18 +2381,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,كلمة المرو
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},مشاركات {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",لتنسيق الأعمدة، وإعطاء تسميات الأعمدة في الاستعلام.
DocType: Has Domain,Has Domain,لديه النطاق
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,إخفاء
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,إخفاء
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,ليس لديك حساب ؟ تسجيل الدخول
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,لا يمكن إزالة حقل المعرف
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد
DocType: Address,Bihar,بيهار
-DocType: Communication,Link DocType,رابط DOCTYPE
+DocType: Activity Log,Link DocType,رابط DOCTYPE
DocType: Social Login Keys,Social Login Keys,دخول الاجتماعية كيز
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,إزالة كافة التخصيصات ؟
DocType: Website Slideshow,Slideshow Name,اسم العرض
DocType: Address,Andhra Pradesh,ولاية اندرا براديش
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,إلغاء
DocType: DocType,Allow Rename,السماح بإعادة التسمية
-DocType: Authentication Log,Full Name,الاسم الكامل
+DocType: Activity Log,Full Name,الاسم الكامل
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,وتظهر جداول الطفل بأنه في الشبكة DocTypes أخرى.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,الصفحة التي تبحث عن مفقود. يمكن أن يكون هذا ليتم نقله أو أن هناك خطأ مطبعي في الارتباط.
apps/frappe/frappe/www/404.html +25,Error Code: {0},رمز الخطأ: {0}
@@ -2409,18 +2424,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
يمكن أن نعود اليكم. شكر!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,شكرا لك على اهتمامك في الاشتراك في تحديثات لدينا
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,عمود مخصص
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,عمود مخصص
DocType: Workflow State,resize-full,تغيير حجم كامل
DocType: Workflow State,off,بعيدا
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,تقرير غير مفعلة {0}
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,أوصت لإدراج سجلات جديدة.
-DocType: Async Task,Core,جوهر
+DocType: Activity Log,Core,جوهر
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,تعيين أذونات
DocType: DocField,Set non-standard precision for a Float or Currency field,تعيين الدقة غير القياسية لحقل تعويم أو العملات
DocType: Email Account,Ignore attachments over this size,تجاهل إرفاق ملفات أكثر من هذا الحجم
DocType: Address,Preferred Billing Address,عنوان الفواتير المفضل
apps/frappe/frappe/config/integrations.py +68,External Documents,المستندات الخارجية
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} سنة (سنوات)
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,الكثير من يكتب في طلب واحد . يرجى إرسال طلبات أصغر
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,القيم المتغيرة
DocType: Workflow State,arrow-up,سهم لأعلى
@@ -2428,10 +2441,9 @@ DocType: OAuth Bearer Token,Expires In,ينتهي في
DocType: DocField,Allow on Submit,السماح بالإعتماد
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,نوع الاستثناء
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,اختيار الأعمدة
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,اختيار الأعمدة
DocType: Web Page,Add code as <script>,إضافة التعليمات البرمجية كما <script>
DocType: Webhook,Headers,رؤوس
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,حدد نوع
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,الرجاء إدخال قيم التطبيقات مفتاح الوصول والتطبيقات سر مفتاح
DocType: Web Form,Accept Payment,يوافق على الدفع
apps/frappe/frappe/config/core.py +62,A log of request errors,سجل الاخطاء
@@ -2439,7 +2451,7 @@ DocType: Report,Letter Head,ترئيس الرسالة
DocType: DocType,Quick Entry,دخول سريع
DocType: Web Form,Button Label,زر تسمية
DocType: Website Theme,UPPERCASE,الأحرف الكبيرة
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} العناصر المحددة
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} العناصر المحددة
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,تعليق إرسال
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,عناصر السحب من الشريط الجانبي لإضافة. جرها إلى سلة المهملات.
DocType: Workflow State,resize-small,تغيير حجم صغير
@@ -2465,21 +2477,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},تم تص
DocType: Workflow State,Edit,تحرير
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,يمكن أن تدار عن طريق إعداد أذونات & GT. مدير ضوابط دور
DocType: Contact Us Settings,Pincode,الرقم السري
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,يرجى التأكد من أنه لا توجد أعمدة فارغة في الملف.
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,يرجى التأكد من أنه لا توجد أعمدة فارغة في الملف.
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,يرجى التأكد من أن التعريف الخاص بك لديه عنوان البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,لديك تغييرات لم يتم حفظها في هذا النموذج.
DocType: Address,Telangana,تيلانجانا
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا
DocType: Tag Doc Category,Tag Doc Category,العلامة دوك الفئة
DocType: User,User Image,صورة المستخدم
apps/frappe/frappe/email/queue.py +336,Emails are muted,رسائل البريد الإلكتروني هي صامتة
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,CTRL + Up
DocType: Website Theme,Heading Style,نمط العنوان
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,مشروع جديد بهذا الإسم
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,منذ اسبوع
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,مشروع جديد بهذا الإسم
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,منذ اسبوع
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,لا يمكنك تثبيت هذا التطبيق
DocType: Communication,Error,خطأ
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,لا ترسل رسائل البريد الإلكتروني.
+DocType: Data Import,Ignore encoding errors,تجاهل أخطاء الترميز
DocType: DocField,Column Break,فاصل عمودي
DocType: Event,Thursday,الخميس
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,لم يكن لديك إذن للوصول إلى هذا الملف
@@ -2506,7 +2518,6 @@ DocType: Webhook,Webhook Request,طلب ويبهوك
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,الناشر
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** فشل: {0} إلى {1}: {2}
DocType: Data Migration Mapping,Mapping Type,نوع رسم الخرائط
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,حدد إلزامية
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,تصفح
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.",لا حاجة لرموز أو أرقام أو أحرف كبيرة.
DocType: DocField,Currency,عملة
@@ -2516,10 +2527,11 @@ DocType: Async Task,Running,تشغيل
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,إعادة تعيين كلمة المرور
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,يرجى الترقية إلى إضافة المزيد من {0} المشتركين
DocType: Workflow State,hand-left,اليد اليسرى
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها
+DocType: Data Import,If you are updating/overwriting already created records.,إذا كنت تقوم بتحديث / الكتابة فوق السجلات التي تم إنشاؤها بالفعل.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها
DocType: Email Account,Use SSL,استخدام SSL
DocType: Workflow State,play-circle,لعب دائرة
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",تعبير "under_on" غير صالح
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",تعبير "under_on" غير صالح
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,حدد تنسيق طباعة إلى تحرير
DocType: Address,Shipping,الشحن
DocType: Workflow State,circle-arrow-down,دائرة السهم لأسفل
@@ -2531,26 +2543,24 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,سهم يمين
DocType: Workflow State,Workflow state represents the current state of a document.,تمثل حالة سير العمل الحالة الراهنة للوثيقة.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,رمز مفقود
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,ملاحظة: يؤدي تغيير اسم الصفحة إلى كسر عنوان ورل السابق لهذه الصفحة.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,ملاحظة: يؤدي تغيير اسم الصفحة إلى كسر عنوان ورل السابق لهذه الصفحة.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},إزالة {0}
DocType: SMS Settings,SMS Settings,SMS إعدادات
DocType: Company History,Highlight,Highlight
DocType: OAuth Provider Settings,Force,فرض
DocType: DocField,Fold,طية
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,تصاعدي
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,لا يمكن تحديث تنسيق الطباعة القياسية
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,يغيب
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,يرجى تحديد
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,يرجى تحديد
DocType: Communication,Bot,آلي
DocType: Help Article,Help Article,مساعدة المادة
DocType: Page,Page Name,اسم الصفحة
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,مساعدة: خصائص الحقل
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,استيراد ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,بفك
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},قيمة غير صحيحة في الصف {0} : {1} يجب أن يكون {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},قيمة غير صحيحة في الصف {0} : {1} يجب أن يكون {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},"الوثيقة المسجلة لا يمكن تحويلها إلى مسودة .
row{0}"
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},حذف {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},حذف {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,تحديد شكل القائمة لتعديل أو اضافة شكل جديد.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},إنشاء الحقل المخصص {0} في {1}
DocType: System Settings,Time Zone,منطقة زمنية
@@ -2566,16 +2576,19 @@ DocType: Workflow State,Home,الصفحة الرئيسية
DocType: OAuth Provider Settings,Auto,السيارات
DocType: System Settings,User can login using Email id or User Name,يمكن للمستخدم تسجيل الدخول باستخدام معرف البريد الإلكتروني أو اسم المستخدم
DocType: Workflow State,question-sign,علامة سؤال
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},إدراج عمود قبل {0}
DocType: Email Account,Add Signature,إضافة التوقيع
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,تركت هذه المحادثة
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,لم يحدد
,Background Jobs,خلفية عن الخبرات السابقة
DocType: ToDo,ToDo,قائمة المهام
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,الإعداد> المستخدم
DocType: DocField,No Copy,اي نسخة
DocType: Workflow State,qrcode,qrcode
+DocType: Data Import,Submit after importing,إرسال بعد الاستيراد
apps/frappe/frappe/www/login.html +31,Login with LDAP,تسجيل الدخول مع LDAP
DocType: Web Form,Breadcrumbs,فتات الخبز
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,إذا المالك
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,إذا المالك
DocType: Data Migration Mapping,Push,إدفع
DocType: OAuth Authorization Code,Expiration time,وقت انتهاء الصلاحية
DocType: Web Page,Website Sidebar,الشريط الجانبي الموقع
@@ -2591,6 +2604,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,إعدادات الطباعة
DocType: Page,Yes,نعم
DocType: DocType,Max Attachments,المرفقات ماكس
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,مطلوب مفتاح العميل
DocType: Calendar View,End Date Field,حقل تاريخ الانتهاء
DocType: Desktop Icon,Page,صفحة
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},لا يمكن أن تجد {0} في {1}
@@ -2601,18 +2615,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},لا
DocType: Feedback Request,Is Manual,هو دليل
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",النمط يمثل لون الزر: النجاح - الخضراء، خطر -، معكوس الأحمر - الأسود، الابتدائية - أزرق داكن، معلومات - أزرق فاتح، تحذير - أورانج
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,أي تقرير المحملة. الرجاء استخدام استعلام تقرير / [اسم التقرير] لتشغيل التقرير.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,حالة الصف
DocType: Workflow Transition,Workflow Transition,الانتقال سير العمل
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,قبل {0} أشهر
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,منشئه بواسطه
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,إعداد دروببوإكس
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,إعداد دروببوإكس
DocType: Workflow State,resize-horizontal,تغيير حجم الأفقي،
DocType: Note,Content,محتوى
DocType: Data Migration Run,Push Insert,اضغط إدراج
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,عقدة المجموعة
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,عقدة المجموعة
DocType: Communication,Notification,إعلام
DocType: DocType,Document,وثيقة
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},الترقيم المتسلسل {0} مستخدم بالفعل في {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,تنسيق ملف غير معتمد
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,تنسيق ملف غير معتمد
DocType: DocField,Code,رمز
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","جميع حالات سير العمل الممكنة وأدوار سير العمل. خيارات Docstatus: 0 هو ""محفوظ"" (1)، هو ""مقدم"" و 2 هو ""ألغي"""
DocType: Website Theme,Footer Text Color,تذييل لون الخط
@@ -2620,6 +2635,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,آخر
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.",أذونات على مستوى 0 هي أذونات مستوى الوثيقة، أي أنها الأساسي للوصول إلى هذه الوثيقة.
DocType: Email Alert,Print Format,طباعة شكل
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,أوراق بوابة الدفع غير صالحة
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,هذا هو ملف القالب ولدت مع الصفوف فقط وجود بعض الأخطاء. يجب استخدام هذا الملف للتصحيح والاستيراد.
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,مجموعة ضوابط على أنواع المستندات والأدوار
apps/frappe/frappe/model/meta.py +159,No Label,بدون علامة
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,تحديث ...
@@ -2644,15 +2660,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,رد
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),الصفحات في مكتب (أصحاب مكان)
DocType: DocField,Collapsible Depends On,الضم يعتمد على
DocType: Print Style,Print Style Name,اسم نمط الطباعة
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد> الطباعة والعلامة التجارية> نموذج العنوان.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,بواسطة
DocType: Print Settings,Allow page break inside tables,السماح بفاصل صفحات داخل الجداول
DocType: Email Account,SMTP Server,SMTP خادم
DocType: Print Format,Print Format Help,تنسيق الطباعة مساعدة
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,قم بتحديث النموذج وحفظه بتنسيق تم تنزيله قبل إرفاقه.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,مع المجموعات
DocType: DocType,Beta,بيتا
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},استعادة {0} ك {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","إذا كنت تقوم بتحديث، يرجى تحديد ""الكتابة"" لن يتم حذف الصفوف الموجودة آخر."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","إذا كنت تقوم بتحديث، يرجى تحديد ""الكتابة"" لن يتم حذف الصفوف الموجودة آخر."
DocType: Event,Every Month,كل شهر
DocType: Letter Head,Letter Head in HTML,ترئيس الرسالة كصيغة HTML
DocType: Web Form,Web Form,نموذج ويب
@@ -2662,15 +2678,15 @@ DocType: Print Settings,Allow Print for Cancelled,السماح بالطباعة
DocType: Communication,Integrations can use this field to set email delivery status,يمكن التكامل استخدام هذا الحقل لتغيير الحالة تسليم البريد الإلكتروني
DocType: Web Form,Web Page Link Text,نص رابط صفحة الانترنت
DocType: Page,System Page,صفحة النظام
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.",تعيين تنسيق افتراضي، حجم الصفحة، نمط الطباعة الخ
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.",تعيين تنسيق افتراضي، حجم الصفحة، نمط الطباعة الخ
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,زر ESC فى الكيبورد
DocType: Website Settings,Include Search in Top Bar,اضافة البحث في الشريط العلوي
DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى GSuite
DocType: DocType,DESC,تنازلي
DocType: DocType,Naming,التسمية
DocType: Event,Every Year,كل سنة
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,تحديد الكل
-apps/frappe/frappe/config/setup.py +233,Custom Translations,ترجمة مخصصة
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,تحديد الكل
+apps/frappe/frappe/config/setup.py +240,Custom Translations,ترجمة مخصصة
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,تقدم
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,حسب الصلاحية
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,الحقول في عداد المفقودين
@@ -2682,14 +2698,13 @@ DocType: File,Thumbnail URL,URL المصغرة
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,تقارير مخصصة
DocType: Website Script,Website Script,نص الموقع البرمجي
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,إذا كنت لا تستخدم نشر ويباب سكريبت غوغل أبس، فيمكنك استخدام https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec الافتراضية
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,قوالب HTML مخصصة لطباعة المعاملات
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,قوالب HTML مخصصة لطباعة المعاملات
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,توجيه
DocType: Workflow,Is Active,نشط
-apps/frappe/frappe/desk/form/utils.py +92,No further records,لا توجد سجلات أخرى
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,الإعداد> مدير أذونات المستخدم
+apps/frappe/frappe/desk/form/utils.py +103,No further records,لا توجد سجلات أخرى
DocType: DocField,Long Text,نص طويل
DocType: Workflow State,Primary,أساسي
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},من فضلك لا تغيير الصفوف أعلاه {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},من فضلك لا تغيير الصفوف أعلاه {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),انتقل إلى عنوان ورل هذا بعد إكمال النموذج (فقط لمستخدمي الضيف)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(كنترول + G)
DocType: Contact,More Information,المزيد من المعلومات
@@ -2701,7 +2716,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,جرس
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,حدث خطأ في تنبيه البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,مشاركة هذه الوثيقة مع
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,{0} {1} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,{0} {1} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى
DocType: Communication,Info,معلومات
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,إضافة مرفق
DocType: Data Migration Mapping,Sync,مزامنة
@@ -2752,7 +2767,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,بوابة الدفع
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.",لإعطاء رصا إلى دور للسجلات معينة فقط، والتحقق من تطبيق ضوابط العضو. وتستخدم ضوابط المستخدم للحد من المستخدمين مع هذا الدور لسجلات محددة.
DocType: Portal Settings,Hide Standard Menu,إخفاء القائمة القياسية
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,إضافة / إدارة مجالات البريد الإلكتروني.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,إضافة / إدارة مجالات البريد الإلكتروني.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},"لا يمكن إلغاء قبل تسجيل .
{0}"
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,تنسيق الطباعة {0} تم تعطيل
@@ -2762,7 +2777,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,قيمة
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,انقر هنا للتأكيد
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,بدائل يمكن التنبؤ بها مثل '@' بدلا من '' لا يساعد كثيرا جدا.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,يسندها عني
-apps/frappe/frappe/utils/data.py +480,Zero,صفر
+apps/frappe/frappe/utils/data.py +485,Zero,صفر
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE ""مخصص""."
DocType: Workflow State,globe,العالم
DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
@@ -2782,11 +2797,12 @@ DocType: Module Def,Module Name,اسم وحدة
DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE هو الجدول / نموذج في التطبيق.
DocType: Email Account,GMail,بريد جوجل
DocType: Address,Party GSTIN,حزب غستين
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} تقرير
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} تقرير
DocType: SMS Settings,Use POST,استخدام بوست
DocType: Communication,SMS,رسالة قصيرة
DocType: DocType,Web View,عرض ويب
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,تحذير: هذا تنسيق الطباعة في النمط القديم، ولا يمكن أن تتولد عن طريق API.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,المجاميع
DocType: DocField,Print Width,طباعة العرض
,Setup Wizard,معالج الإعدادات
DocType: Address,GST State Number,رقم ضريبة السلع والخدمات
@@ -2812,26 +2828,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,يرجى تحديث إعدادات الرسائل القصيرة
DocType: Event,Event Type,نوع الحدث
DocType: User,Last Known Versions,المعروفة إصدارات مشاركة
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,إضافة / إدارة حسابات البريد الإلكتروني.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,إضافة / إدارة حسابات البريد الإلكتروني.
DocType: Newsletter,Published,نشرت
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,شكرا لك على بريدك الالكتروني
DocType: DocField,Small Text,نص صغير
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,تساوي
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '"
DocType: About Us Settings,Team Members Heading,عنوان أعضاء الفريق
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,تنسيق CSV غير صالح
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,تعيين عدد من النسخ الاحتياطية
DocType: DocField,Do not allow user to change after set the first time,لا تسمح للمستخدم لتغيير بعد تعيين أول مرة
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,الخاصة أو العامة؟
-apps/frappe/frappe/utils/data.py +578,1 year ago,منذ سنة
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,الخاصة أو العامة؟
+apps/frappe/frappe/utils/data.py +590,1 year ago,منذ سنة
DocType: Contact,Contact,اتصل
DocType: User,Third Party Authentication,مصادقة طرف ثالث
DocType: Website Settings,Banner is above the Top Menu Bar.,راية فوق أعلى شريط القوائم.
DocType: Razorpay Settings,API Secret,API السرية
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,تقرير التصدير:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} غير موجود
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,تقرير التصدير:
DocType: Data Migration Run,Push Update,دفع التحديث
DocType: Email Account,Port,ميناء
DocType: Print Format,Arial,Arial
@@ -2848,15 +2863,15 @@ DocType: Dropbox Settings,Dropbox Settings,إعدادات دروببوإكس
DocType: About Us Settings,More content for the bottom of the page.,المزيد من المحتوى لأسفل الصفحة.
DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE على سير العمل هذا الذي ينطبق.
DocType: Feedback Trigger,Enabled,تمكين
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,أخفق إكمال الإعداد
DocType: Tag Category,Category Name,اسم التصنيف
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,المشتركون استيراد
DocType: Print Settings,PDF Settings,إعدادات PDF
DocType: Kanban Board Column,Column Name,اسم العمود
DocType: Language,Based On,وبناء على
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,كنت كل مجموعة!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,جعله الافتراضي
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,التحقق من عنوان فرابي خادم
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها
DocType: Communication,Email Account,حساب البريد الإلكتروني
DocType: Workflow State,Download,تحميل
DocType: Blog Post,Blog Intro,بدايه المدونه
@@ -2872,7 +2887,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},حد غير صالح {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,قائمة نوع مستند
DocType: Event,Ref Type,المرجع نوع
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","إذا كنت تحميل سجلات جديدة، وترك ""اسم"" (ID) العمود فارغا."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","إذا كنت تحميل سجلات جديدة، وترك ""اسم"" (ID) العمود فارغا."
DocType: Data Migration Run,Current Mapping Delete Start,جار تعيين الخريطة الحالية
apps/frappe/frappe/config/core.py +47,Errors in Background Events,أخطاء في خلفية الأحداث
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,عدد الأعمدة
@@ -2884,22 +2899,22 @@ DocType: Website Settings,Website Theme Image,موضوع الموقع صورة
DocType: Workflow State,road,طريق
DocType: LDAP Settings,Organizational Unit,وحدة تنظيمية
DocType: User,Timezone,التوقيت
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},غير قادر على تحميل: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},غير قادر على تحميل: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,النسخ الإحتياطي
DocType: DocField,Read Only,للقراءة فقط
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,النشرة الإخبارية جديدة
DocType: Print Settings,Send Print as PDF,PDF إرسال طباعة بصيغة
DocType: Web Form,Amount,كمية
DocType: Workflow Transition,Allowed,سمح
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},تعذر كتابة تنسيق الملف {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,استعادة الإعدادات الافتراضية؟
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,الصفحة الرئيسية غير صالحة
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,تسجيل الدخول غير صالح. حاول ثانية.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,تسجيل الدخول غير صالح. حاول ثانية.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1}
DocType: Auto Email Report,Send only if there is any data,إرسال فقط إذا كان هناك أي بيانات
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,إعادة تعيين المرشحات
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},احالة مغلقة من قبل {0}
DocType: Integration Request,Remote,عن بعد
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,إحسب
@@ -2910,7 +2925,6 @@ DocType: Error Snapshot,Locals,السكان المحليين
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ترسل عن طريق {0} على {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} المذكور لكم في تعليق في {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,على سبيل المثال (55 + 434) / 4 = أو الرياضيات.خطيئة (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} مطلوب
DocType: Integration Request,Integration Type,نوع التكامل
DocType: Newsletter,Send Attachements,إرسال المرفقات
@@ -2920,16 +2934,15 @@ DocType: DocField,Perm Level,بيرم المستوى
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,الأحداث في التقويم اليوم
DocType: Web Page,Web Page,صفحة على الإنترنت
DocType: Blog Category,Blogger,مدون
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,تخطي الصفوف التي بها أخطاء.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}"
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,عرض القائمة
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}"
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,عرض القائمة
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},يجب ان يكون التاريخ بهذا التنسيق: {0}
DocType: Workflow,Don't Override Status,لا تجاوز الحالة
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,يرجى إعطاء تقدير.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} طلب ملاحظات
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,مصطلح البحث
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,المستخدم الأول : أنت
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,تحديد الأعمدة
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,المستخدم الأول : أنت
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,تحديد الأعمدة
DocType: Translation,Source Text,النص المصدر
apps/frappe/frappe/www/login.py +65,Missing parameters for login,المعلمات المفقودة لتسجيل الدخول
DocType: Workflow State,folder-open,فتح مجلد
@@ -2941,18 +2954,17 @@ DocType: Page,No,لا
DocType: Property Setter,Set Value,تعيين القيمة
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,إخفاء الحقل في النموذج
DocType: Webhook,Webhook Data,بيانات ويبهوك
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,وصول رمز غير قانوني. حاول مرة اخرى
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,وصول رمز غير قانوني. حاول مرة اخرى
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page",تم تحديث التطبيق إلى الإصدار الجديد، يرجى تحديث هذه الصفحة
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,إعادة إرسال
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,اختياري: سيتم إرسال التنبية إذا كان هذا التعبير صحيح
DocType: Data Migration Plan,Plan Name,اسم الخطة
DocType: Print Settings,Print with letterhead,طباعة مع ترويسة
DocType: Unhandled Email,Raw Email,البريد الإلكتروني الخام
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,اختر سجلات التعيين
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,استيراد
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,اختر سجلات التعيين
DocType: ToDo,Assigned By,تعيين بواسطة
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,يمكنك استخدام نموذج مخصص (Customize Form ) لتحديد المستويات على الحقول .
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,حدد منطقتك
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,حدد منطقتك
DocType: Custom DocPerm,Level,مستوى
DocType: Custom DocPerm,Report,تقرير
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,يجب أن تكون كمية أكبر من 0.
@@ -2971,7 +2983,7 @@ DocType: Website Theme,Background,خلفية
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",قائمة JSON من DocTypes تستخدم لتطبيق أذونات المستخدم. اذا كانت فارغة، وسوف تستخدم كل DocTypes مرتبطة تطبيق أذونات المستخدم.
DocType: Report,Ref DocType,المرجع DOCTYPE
apps/frappe/frappe/www/feedback.py +42,Please add a rating,الرجاء إضافة تقييم
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,صفحة كاملة
DocType: DocType,Is Child Table,هو الجدول التابع
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} يجب أن يكون واحدا من {1}
@@ -2983,7 +2995,7 @@ DocType: Workflow State,chevron-left,شيفرون يسار
DocType: Communication,Sending,إرسال
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,لا يسمح من هذا العنوان IP
DocType: Website Slideshow,This goes above the slideshow.,هذا يذهب فوق عرض الشرائح.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,تثبيت التطبيقات .
+apps/frappe/frappe/config/setup.py +270,Install Applications.,تثبيت التطبيقات .
DocType: Contact,Last Name,اسم العائلة
DocType: Event,Private,خاص
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,لا تنبيهات لهذا اليوم
@@ -3000,19 +3012,19 @@ DocType: Event,Send an email reminder in the morning,إرسال رسالة تذ
DocType: Blog Post,Published On,نشرت في
DocType: Contact,Gender,جنس
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,معلومات إلزامية مفقود:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,الحقل '{0}' لا يمكن تعيينه فريد من نوعه، كما أن لديها قيمة غير فريدة
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,الحقل '{0}' لا يمكن تعيينه فريد من نوعه، كما أن لديها قيمة غير فريدة
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,تحقق من عنوان ورل للطلب
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,فقط 200 إدراج سمحت في طلب واحد
DocType: Footer Item,URL,رابط الانترنت
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,ارجع إلى شاشة التحقق وأدخل الرمز المعروض بواسطة تطبيق المصادقة
DocType: ToDo,Reference Type,مرجع نوع
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,الرجاء تمكين وضع مطور البرامج لإنشاء اتصال جديد
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,الرجاء تمكين وضع مطور البرامج لإنشاء اتصال جديد
DocType: Event,Repeat On,كرر على
DocType: SMS Parameter,SMS Parameter,SMS متغيرات
DocType: Communication,Marked As Spam,وضع علامة على الرسائل غير المرغوب فيها
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},هناك بعض المشاكل مع رابط الملف: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,شجرة
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,لا يسمح لك بطباعة هذا التقرير
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,لا يسمح لك بطباعة هذا التقرير
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,ضوابط المستخدم
DocType: Workflow State,warning-sign,علامة إنذار
DocType: Workflow State,User,مستخدم
@@ -3044,64 +3056,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,الافتراضي
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} أضيف
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',البحث عن '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,يرجى حفظ التقرير الأول
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,يرجى حفظ التقرير الأول
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} مشتركين تم اضافتهم
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ليس في
DocType: Workflow State,star,نجم
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,قيم مفصولة بفواصل
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,قيم مفصولة بفواصل
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},يرجى حصة ملاحظاتك عن {0}
apps/frappe/frappe/config/website.py +13,Content web page.,محتوى الويب الصفحة.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,إضافة دور جديد
DocType: Deleted Document,Deleted Document,تم حذف المستند
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,عفوًا! ذهب شيئا خاطئا
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,عفوًا! ذهب شيئا خاطئا
DocType: Help Article,Category,فئة
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,ملحقات النصي جانب العميل في جافا سكريبت
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,المبادئ التوجيهية لتثبيت dependancies LDAP والثعبان
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,مقدمة المدونه
DocType: Address,Office,مكتب
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,وهذا المجلس كانبان يكون القطاع الخاص
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,وهذا المجلس كانبان يكون القطاع الخاص
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,تقارير قياسية
DocType: User,Email Settings,إعدادات البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,يرجى إدخال كلمة المرور للمتابعة
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,لا أحد المستخدمين LDAP صحيح
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ليست حالة صالحة
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. باي بال لا تدعم المعاملات بالعملة '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,حقل البحث {0} غير صالح
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,حقل البحث {0} غير صالح
DocType: Workflow State,ok-circle,دائرة OK-
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',يمكنك العثور على الأشياء عن طريق طلب 'find orange in customers'
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,آسف! وينبغي أن يكون المستخدم الوصول الكامل إلى سجل الخاصة بهم.
,Usage Info,معلومات الاستخدام
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,رمز غير صحيح
DocType: Email Account,Email Server,خادم البريد الإلكتروني
-DocType: DocShare,Document Type,نوع الوثيقة
+DocType: Data Import,Document Type,نوع الوثيقة
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,تسمية إلزامي
DocType: PayPal Settings,API Username,API اسم المستخدم
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,نصف يوم
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,نصف يوم
DocType: Communication,Communication Type,نوع الاتصال
DocType: DocField,Unique,فريد من نوعه
-DocType: Data Migration Run,Partial Success,نجاح جزئي
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,نجاح جزئي
DocType: Email Account,Service,خدمة
DocType: File,File Name,اسم الملف
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),لم تجد {0} ل {0} ( {1} )
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),لم تجد {0} ل {0} ( {1} )
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that",عفوا، لا يسمح لك أن تعرف أن
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,التالي
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,التالي
apps/frappe/frappe/handler.py +92,You have been successfully logged out,لقد تم تسجيل بنجاح
DocType: Calendar View,Calendar View,عرض التقويم
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,تحرير تنسيق
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,التسجيل الكامل
DocType: GSuite Settings,Enable,تمكين
+DocType: Google Maps,Home Address,عنوان المنزل
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),{0} جديد (Ctrl+B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,أعلى بار اللون ولون الخط هي نفسها. وينبغي أن يكون على النقيض من الجيد أن تكون قابلة للقراءة.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),يمكنك تحميل فقط حتى 5000 دفعة واحدة. (قد يكون أقل في بعض الحالات)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),يمكنك تحميل فقط حتى 5000 دفعة واحدة. (قد يكون أقل في بعض الحالات)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},عدم كفاية الإذن {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),لم يتم حفظ التقرير (كانت هناك أخطاء)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),لم يتم حفظ التقرير (كانت هناك أخطاء)
DocType: Print Settings,Print Style,الطباعة ستايل
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,غير مرتبط بأي سجل
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,غير مرتبط بأي سجل
DocType: Custom DocPerm,Import,استيراد
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,استيراد / تصدير البيانات
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,استيراد / تصدير البيانات
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,أدوار القياسية لا يمكن إعادة تسمية
DocType: Communication,To and CC,لوCC
DocType: SMS Settings,Static Parameters,ثابت معلمات
@@ -3123,18 +3136,17 @@ DocType: Web Page,Header and Description,العنوان والوصف
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,كل من تسجيل الدخول وكلمة المرور المطلوبة
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,يرجى تحديث للحصول على أحدث وثيقة.
DocType: User,Security Settings,إعدادات الأمان
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,إضافة عمود
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,إضافة عمود
,Desktop,سطح المكتب
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},تصدير التقرير: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},تصدير التقرير: {0}
DocType: Auto Email Report,Filter Meta,تصفية ميتا
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,النص ليتم عرضها لرابط صفحة الانترنت إذا هذا النموذج لديه صفحة على شبكة الإنترنت. الطريق للرابط سيتم تكوينه تلقائيا على أساس `` page_name` وparent_website_route`
DocType: Feedback Request,Feedback Trigger,ردود الفعل الزناد
DocType: S3 Backup Settings,Backup Limit,الحد الاحتياطي
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,الرجاء تعيين {0} الأولى
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,الرجاء تعيين {0} الأولى
DocType: Unhandled Email,Message-id,معرف الرسالة
DocType: Patch Log,Patch,بقعة
-DocType: Async Task,Failed,باءت بالفشل
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,لا توجد بيانات
+DocType: Activity Log,Failed,باءت بالفشل
DocType: Web Form,Allow Comments,السماح بالتعليقات
DocType: User,Background Style,نمط الخلفية
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,تجاوز اثنين عامل عامل للمستخدمين الذين تسجيل الدخول من عنوان إب مقيدة
@@ -3143,7 +3155,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},اندمجت {0} إلى {1}
DocType: System Settings,mm-dd-yyyy,MM-DD-YYYY
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,اتصال جديد
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} تم تسجيل الدخول
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} تم تسجيل الدخول
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,معرف تسجيل الدخول الخاص بك هو
DocType: OAuth Client,Skip Authorization,تخطي تفويض
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it",لا يمكن تعديل تنبيه البريد الإلكتروني القياسي. للتعديل، يرجى تعطيل هذا وتكراره
diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv
index cae53126f5..ac1088454e 100644
--- a/frappe/translations/bg.csv
+++ b/frappe/translations/bg.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е определена за Вас от {1}. {2}"
DocType: Email Queue,Email Queue records.,Email Queue записи.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Пост
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Моля изберете страна Type първи
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Моля изберете страна Type първи
DocType: Address,Punjab,Punjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,"Преименуване на много елементи, като качите .csv файл."
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,"Преименуване на много елементи, като качите .csv файл."
DocType: Workflow State,pause,пауза
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Нямате право на достъп до тази страница.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Няма намерени резултати за '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Вашата информация е подадена apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Потребителят {0} не може да бъде изтрит DocType: System Settings,Currency Precision,Десетична точност на валута @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Приложен файл DocType: Communication,Message ID,Съобщението ID DocType: Property Setter,Field Name,Наименование на полето apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite не е конфигуриран. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,или +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,или apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Име на модул ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Продължи DocType: Custom Field,Fieldname,Име на поле DocType: Workflow State,certificate,сертификат DocType: User,Tile,Плочка apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Проверка на ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Първата колона на данни трябва да е празна. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Първата колона на данни трябва да е празна. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Покажи всички версии DocType: Workflow State,Print,Печат DocType: User,Restrict IP,Ограничаване на IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,Табло apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Не може да се изпращат имейли в този момент apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Търси или въведи команда -DocType: Communication,Timeline Name,Timeline Име +DocType: Activity Log,Timeline Name,Timeline Име DocType: Email Account,e.g. smtp.gmail.com,напр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Добави ново правило DocType: Contact,Sales Master Manager,Мениджър на данни за продажби @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,Родител Заглавие apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Заявката Ви е било получено. Ние ще ви отговорим върна скоро. Ако имате някаква допълнителна информация, моля, отговорете на този имейл." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Permissions автоматично се преизчисляват в стандартни отчети и търсения. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Изисква се означение за вход +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} е задължително поле +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Изисква се означение за вход DocType: Event,Repeat Till,Повторете до apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Нов apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Моля, задайте URL адрес на скрипта в настройките на Gsuite" @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Предстоящи събития за днес DocType: Email Alert Recipient,Email By Document Field,Email от документ Невярно DocType: Domain Settings,Domain Settings,Настройки на домейн -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Размер на файловете: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Размер на файловете: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Подобряване на apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Не може да се свърже: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Една дума само по себе си е лесно да се отгатне. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Фракционни единици apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} от {1} до {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Маркирайте като Готово DocType: Communication,Type,Тип -DocType: Authentication Log,Subject,Предмет +DocType: Activity Log,Subject,Предмет DocType: Web Form,Amount Based On Field,Сума на база Невярно apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Потребителят е задължително за споделяне DocType: DocField,Hidden,Скрит @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Оставя Непълни форму apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} трябва да се зададе първо apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Използвайте няколко думи, избягвайте общи фрази." DocType: Workflow State,plane,равнина -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако качвате нови рекорди, "именуване Series" става задължителен, ако има такива." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако качвате нови рекорди, "именуване Series" става задължителен, ако има такива." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Абонамент за сигнали за днес apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType може да се преименува само от Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},променената стойност на {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Ако потребителят има някаква роля, потребителят става "системен потребител". "Системен потребител" има достъп до работния плот" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,"Моля, проверете електронната си поща за проверка" -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Fold не може да бъде в края на формата +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Fold не може да бъде в края на формата DocType: Communication,Bounced,Върнат DocType: Deleted Document,Deleted Name,Изтрито Име apps/frappe/frappe/config/setup.py +14,System and Website Users,Системни и Сайт Потребители @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Издърпайте актуализа DocType: Auto Email Report,No of Rows (Max 500),Брои редове (максимум 500) DocType: Language,Language Code,Код на език apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Изтеглянето се строи, това може да отнеме няколко минути, за ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Добавяне на филтър +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Добавяне на филтър apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS изпратен на следните номера: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Вашият рейтинг: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} и {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} и {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Винаги се добави "Проект" Функция за печат проекти на документи DocType: Data Migration Run,Current Mapping Start,Текущо стартиране на картографиране apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,Имейл бе маркиран като спам DocType: About Us Settings,Website Manager,Сайт на мениджъра apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,"Файловото качване е прекъснато. Моля, опитайте отново." -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Избрали сте проектирани или анулирани документи -apps/frappe/frappe/model/document.py +1180,Document Queued,Документ Чакащи +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Избрали сте проектирани или анулирани документи +apps/frappe/frappe/model/document.py +1186,Document Queued,Документ Чакащи DocType: GSuite Templates,Destination ID,Идентификационен номер на дестинацията DocType: Desktop Icon,List,Списък -DocType: Communication,Link Name,Препратка - Име -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране +DocType: Activity Log,Link Name,Препратка - Име +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране DocType: System Settings,mm/dd/yyyy,дд/мм/гггг -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Грешна парола: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Грешна парола: DocType: Print Settings,Send document web view link in email,Изпрати документ уеб оглед връзката в имейл apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Вашата обратна връзка {0} е записана успешно -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Предишен +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Предишен apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} редове за {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Под-валута. Например ""цент""" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Изберете качен файл DocType: Letter Head,Check this to make this the default letter head in all prints,"Маркирайте това, за да направите това заглавие на писмо по подразбиране за всички разпечатки" DocType: Print Format,Server,Сървър -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Нов КАНБАН борд +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Нов КАНБАН борд DocType: Desktop Icon,Link,Препратка apps/frappe/frappe/utils/file_manager.py +111,No file attached,Няма прикачени файлове DocType: Version,Version,Версия DocType: User,Fill Screen,Запълване на екрана -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се покаже този доклад дърво, поради липсващи данни. Най-вероятно, той се филтрира поради разрешения." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Изберете File +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се покаже този доклад дърво, поради липсващи данни. Най-вероятно, той се филтрира поради разрешения." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Качването не бе успешно -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Редакция чрез качване +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Редакция чрез качване apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","вида документ ..., например на клиенти" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,"Условие ""{0}"" е невалидно" DocType: Workflow State,barcode,баркод -apps/frappe/frappe/config/setup.py +235,Add your own translations,Добавете вашите собствени преводи +apps/frappe/frappe/config/setup.py +242,Add your own translations,Добавете вашите собствени преводи DocType: Country,Country Name,Име на държавата DocType: About Us Team Member,About Us Team Member,За нас Член на Екип apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Разрешения са разположени на Роли и видове документи (наречени DocTypes) чрез определяне на правата, като четене, писане, създаване, изтриване, Знаете, Отмени, се изменя, Доклад, внос, износ, Print, електронна поща и Set потребителски разрешения." DocType: Event,Wednesday,Сряда -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME DocType: OAuth Client,Token,жетон DocType: Property Setter,ID (name) of the entity whose property is to be set,Идентификато (име) на свойствтото което да се настрои apps/frappe/frappe/limits.py +84,"To renew, {0}.","Да се поднови, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,Приложен apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Няма предварителен преглед DocType: Workflow State,exclamation-sign,удивителен знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Показване на Разрешения -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Период от време -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Гант +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Гант apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Стр. {0} от {1} DocType: About Us Settings,Introduce your company to the website visitor.,Въвеждане на компанията към уебсайт посетител. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","Ключът за шифроване е невалиден. Моля, проверете site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime видео apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 коментар DocType: Email Alert,Days Before,Дни преди DocType: Workflow State,volume-down,Намаляване на звука -apps/frappe/frappe/desk/reportview.py +262,No Tags,Няма тагове +apps/frappe/frappe/desk/reportview.py +266,No Tags,Няма тагове DocType: DocType,List View Settings,Списък Преглед на настройките DocType: Email Account,Send Notification to,Изпрати съобщение на DocType: DocField,Collapsible,Свиваем apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Запазен apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,За какво ти е необходима помощ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Опции за избор. Всеки вариант на нов ред. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Постоянно Отмени {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Постоянно Отмени {0}? DocType: Workflow State,music,музика apps/frappe/frappe/www/qrcode.html +3,QR Code,QR код apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Последна промяна на датата DocType: Web Page,Settings,Настройки apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Моля, посочете DOCTYPE" DocType: Print Format,Style Settings,Настройки на стила -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Още +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Още DocType: Contact,Sales Manager,Мениджър Продажби -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Преименувай +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Преименувай DocType: Print Format,Format Data,Форматирай данни -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Харесай +apps/frappe/frappe/utils/bot.py +91,Like,Харесай DocType: Customize Form Field,Customize Form Field,Персонализирайте Фирма - Поле DocType: OAuth Client,Grant Type,Вид Grant apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Проверете какви документи са достъпни за Потребител apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Приложението за регистрация не е разрешено DocType: Deleted Document,Hub Sync ID,Идент -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,използвайте % като маска +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,използвайте % като маска apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email на домейн не е конфигурирана за този профил, Създаване на един?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Активирайте автоматичен отговор @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Минимален резултат за парола DocType: DocType,Fields,Полета DocType: System Settings,Your organization name and address for the email footer.,Име и адрес на организацията ви за долното поле на електронни писма. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Таблица - Родител +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Таблица - Родител apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup завършен! apps/frappe/frappe/config/desktop.py +60,Developer,Разработчик apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Създаден @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Определете само веднъж DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Получател DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Потребител {0} вече съществува -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Има грешка във вашия шаблон на адрес {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Високо DocType: S3 Backup Settings,Secret Access Key,Таен ключ за достъп apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Мъжки -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret е нулирана. При следващото влизане ще бъде необходима повторна регистрация. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret е нулирана. При следващото влизане ще бъде необходима повторна регистрация. DocType: Communication,From Full Name,От Пълно име apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Вие нямате достъп до отчет: {0} DocType: User,Send Welcome Email,Изпрати имейл за добре дошли -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Премахване на филтъра +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Премахване на филтъра DocType: Address,Daman and Diu,Даман и Диу DocType: Address,Personal,Персонален -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Масово преименуване +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Масово преименуване DocType: Email Queue,Show as cc,Покажи като куб.см. DocType: DocField,Heading,Заглавие DocType: Workflow State,resize-vertical,преоразмеряване-вертикална -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Качи DocType: Contact Us Settings,Introductory information for the Contact Us Page,"Встъпителна информация за страница ""За контакти""" DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,неодобрение @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,В глобално търсене DocType: Workflow State,indent-left,ляво подравняване apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,"Рисковано е да изтриете този файл: {0}. Моля, обърнете се към вашия System Manager." DocType: Currency,Currency Name,Валута Име -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,Няма имейли +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,Няма имейли DocType: Report,Javascript,Javascript DocType: File,Content Hash,Content Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,"Магазини за JSON на последния известен версии на различни инсталирани приложения. Той се използва, за да покаже бележки към изданието." @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Стандартният DocType не може да има стандартния формат на печат, използвайте Персонализиране на формуляра" DocType: Report,Query,Запитване DocType: DocType,Sort Order,Ред на сортиране -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикета след която искате да вмъкнете нова област. ,Document Share Report,Документ Сподели Съобщи DocType: User,Last Login,Последно влизане -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Fieldname се изисква в ред {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Fieldname се изисква в ред {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона DocType: Custom Field,Adds a custom field to a DocType,Добавя потребителско поле към DocType DocType: File,Is Home Folder,Дали Home Folder apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не е валиден имейл адрес -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Изберете поне един запис за печат +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Изберете поне един запис за печат apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Потребителят "{0}" вече има ролята "{1}" DocType: System Settings,Two Factor Authentication method,Метод за удостоверяване с два фактора apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Споделено с {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Отписване -DocType: Communication,Reference Name,Референтен номер Име +DocType: Activity Log,Reference Name,Референтен номер Име apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Поддръжка по чат DocType: Error Snapshot,Exception,Изключение -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Няма намерени резултати за '
DocType: Email Account,Use IMAP,Използвайте IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Не може да се направи заявка за URL адреса на Frappe Сървър +DocType: Activity Log,Activity Log,Журнал на дейностите DocType: Integration Request,Authorized,упълномощен DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Единични видове имат само един по Протокол № маси свързани. Стойностите се съхраняват в tabSingles DocType: System Settings,Enable Password Policy,Активиране на правилата за паролите @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Сп apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Типът на полето не може да бъде променен за {0} DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, които определят преход от състоянието, в работния процес." DocType: File,Folder,Папка +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Импортиране / експортиране на данни от CSV и Excel файлове. DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Newsletter мениджъра apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Вариант 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} до {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Журнал на грешки по време на заявки. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} е успешно добавен към Email група. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,"Не редактирайте заглавките, които са предварително зададени в шаблона" +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,"Не редактирайте заглавките, които са предварително зададени в шаблона" apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Код за потвърждение за вход от {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,"Направи файл (а), частен или обществен?" +DocType: Data Import,Import Status,Статус на внос +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,"Направи файл (а), частен или обществен?" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Планирана да изпрати на {0} DocType: Kanban Board Column,Indicator,индикатор DocType: DocShare,Everyone,Всички DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" DocType: Email Queue,Add Unsubscribe Link,Добави абонамент в Google apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Все още няма коментари. Започнете ново обсъждане. DocType: Workflow State,share,дял apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Абонаментът ви е изтекъл на {0}. За да се поднови, моля изпратете имейл на {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Определете номериране серия за транзакции. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Определете номериране серия за транзакции. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,"Вие не може да харесва нещо, което сте създали" apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC & Standard Отговор" DocType: User,Last IP,Последен IP адрес @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Конектор за DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,"Филтър записи на базата на потребителски разрешения, определени за даден потребител" DocType: Note,Notify Users On Every Login,Уведомявайте потребителите при всяко влизане DocType: PayPal Settings,API Password,API парола -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Въведете Python модула или изберете тип конектор +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Въведете Python модула или изберете тип конектор apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Fieldname не е конфигуриран за персонализирано поле apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Последно актуализирана от apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,не е позволено. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Не може да се изтрие файла, тъй като принадлежи към {0} {1}, за което нямате разрешения" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Госпожица DocType: Website Theme,Background Color,Цвят На Фона -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,"Имаше грешки при изпращане на имейл. Моля, опитайте отново." +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,"Имаше грешки при изпращане на имейл. Моля, опитайте отново." DocType: Portal Settings,Portal Settings,Portal Settings DocType: Data Migration Mapping,Mapping,картография DocType: Web Page,0 is highest,0 е най-висока @@ -667,6 +668,7 @@ DocType: Language,Language Name,Език - Име DocType: Email Group Member,Email Group Member,Email член на група DocType: Email Alert,Value Changed,Променената стойност apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Дублиране име {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Повторен опит DocType: Web Form Field,Web Form Field,Web Form Поле apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Скриване на поле в Report Builder apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Редактиране на HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Магазин DocType: DocField,Button,Бутон apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} вече е стандартният формат за печат за {1} doctype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Архивирани колони +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Архивирани колони DocType: Email Account,Default Outgoing,Default Outgoing DocType: Workflow State,play,играя apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,"Кликнете върху линка по-долу, за да завършите регистрацията си и да зададете нова парола" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Не бяха добавени -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Не е зададен имейл +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Не е зададен имейл DocType: Contact Us Settings,Contact Us Settings,"Настройки на ""Свържете се с нас""" apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Търсене ... DocType: Workflow State,text-width,текст-ширина @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Проверете Communication DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Доклади Report Builder се управляват пряко от доклад строител. Нищо за правене. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,"Моля, потвърдете имейл адреса си" -apps/frappe/frappe/model/document.py +1039,none of,никой от +apps/frappe/frappe/model/document.py +1045,none of,никой от apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Изпрати ми копие DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Маркирайте елементи ще бъдат показани на работния плот -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Канбан Табло {0} не съществува. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Канбан Табло {0} не съществува. +DocType: Data Import,Data Import,Импортиране на данни apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} в момента преглеждат този документ DocType: ToDo,Assigned By Full Name,Възложени от Пълно име apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} актуализиран -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Преди {0} дни DocType: Email Account,Awaiting Password,Очаква парола DocType: Address,Address Line 1,Адрес - Ред 1 DocType: Custom DocPerm,Role,Роля apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Настройки... -apps/frappe/frappe/utils/data.py +459,Cent,Цент -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Ново имейл съобщение -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Членки за работния процес (напр Проект, Одобрен, Отменен)." +apps/frappe/frappe/utils/data.py +464,Cent,Цент +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,Ново имейл съобщение +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Членки за работния процес (напр Проект, Одобрен, Отменен)." DocType: Print Settings,Allow Print for Draft,Оставя Print за Проект apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Определете Количество -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,"Изпратете този документ, за да потвърдите" +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,"Изпратете този документ, за да потвърдите" DocType: Contact,Unsubscribed,Отписахте apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Комплект потребителски роли за страница и доклад apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Рейтинг: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Не можете да намери UIDVALIDITY в отговор статус IMAP -,Data Import Tool,Data Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup> Email> Email Account" apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Качване на файлове. Моля, изчакайте няколко секунди." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Прикрепете вашата снимка +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Прикрепете вашата снимка apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Стойности Changed DocType: Workflow State,Stop,Спри DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Препратка към страницата, която искате да отворите. Оставете празно, ако искате да го направите група." @@ -747,7 +748,7 @@ DocType: Report,Script Report,Script Доклад DocType: OAuth Authorization Code,Scopes,Скоупс DocType: About Us Settings,Company Introduction,Представяне на компанията DocType: DocField,Length,Дължина -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Възстановете или изтриете за постоянно документ. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Възстановете или изтриете за постоянно документ. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,Тестът GSuite е изпълнен успешно. Интеграцията на GSuite е правилно конфигурирана DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} отстранен DocType: Custom DocPerm,Apply User Permissions,Нанесете потребителски разрешения DocType: User,Modules HTML,Модули HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Липсват задължителни стойности +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Липсват задължителни стойности DocType: DocType,Other Settings,Други настройки DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Маркирай като непрочетено apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} не е зададен -DocType: Authentication Log,Operation,Операция +DocType: Activity Log,Operation,Операция DocType: Customize Form,Change Label (via Custom Translation),Промяна на заглавие (чрез персонализиран превод) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Няма разрешение за {0} {1} {2} DocType: Address,Permanent,постоянен apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Забележка: Възможно е да се прилагат и други правила за достъп apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Не е позволено да имат достъп {0} с {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Ако това е отметнато, редове с валидни данни ще бъдат импортирани, а невалидни редове ще бъдат изхвърлени в нов файл, който да импортирате по-късно." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Разгледай това във вашия браузър DocType: DocType,Search Fields,Поле за търсене DocType: System Settings,OTP Issuer Name,Име на емитента на OTP @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Носител Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Няма избран документ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Събитие -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","На {0}, {1} написа:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","На {0}, {1} написа:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Не можете да изтриете стандартно поле. Можете да го скрие, ако искате." DocType: Top Bar Item,For top bar,За горния бар apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Очаква се резервно копие. Ще получите имейл с връзката за изтегляне @@ -789,35 +792,34 @@ DocType: Workflow State,minus,минус DocType: S3 Backup Settings,Bucket,кофа apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,"Грешка в сървъра: Моля, проверете вашите сървърни регистрационни файлове или се свържете с техническата поддръжка." apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Имейлът за добре дошли е изпратен -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Нека да се подготви системата за първа употреба. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Нека да се подготви системата за първа употреба. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Подбрани apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Вече Е Регистриран DocType: System Settings,Float Precision,Прецизност на реални числа apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Само администратор може да редактира -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Име на файл +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Име на файл DocType: DocType,Editable Grid,Може да се редактира Grid DocType: Property Setter,Property Setter,Property сетер DocType: Web Form,Allow Print,Оставя Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Не са инсталирани приложения apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Маркирайте полето като задължително DocType: Communication,Clicked,Кликнато -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Няма разрешение за '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Няма разрешение за '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Планирана да изпратите DocType: DocType,Track Seen,Track Погледнато apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Този метод може да се използва само за да се създаде коментар DocType: Kanban Board Column,orange,оранжев -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Номер {0} намерен -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Добавяне на персонализирани форми. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Номер {0} намерен +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Добавяне на персонализирани форми. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} в {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,подадено този документ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Системата осигурява много предварително определени роли. Можете да добавяте нови роли за да зададете по-фини разрешения. DocType: Communication,CC,CC DocType: Country,Geo,Гео -DocType: Domain Settings,Domains,Домейни +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Домейни DocType: Blog Category,Blog Category,Блог Категория apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Не може да се карта, защото следното условие не успее:" -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Роли HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Изберете имидж на марката на първо място. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Активен @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Син apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,"Всички персонализации ще бъдат премахнати. Моля, потвърдете." DocType: Page,Page HTML,Страница HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,Допълнителни възли могат да се създават само при тип възли "група" +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,Допълнителни възли могат да се създават само при тип възли "група" DocType: SMS Parameter,Header,Заглавие -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Unknown Колона: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Unknown Колона: {0} DocType: Email Alert Recipient,Email By Role,Email Чрез Роля apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Потребителите с роля {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Инсталиране приложение {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Представлява потр DocType: Communication,Label,Етикет apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Задачата {0}, която сте задали за {1}, е била затворена." DocType: User,Modules Access,Модули за достъп -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Моля затворете този прозорец +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Моля затворете този прозорец DocType: Print Format,Print Format Type,Тип печат Format DocType: Newsletter,A Lead with this Email Address should exist,Потенциален клиент с този имейл адрес трябва да съществува apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Приложенията с отворен код за уеб DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Добавете името на "Google Web Font" например "Open Sans" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Времето за заявката е изтекло +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Активиране / деактивиране на домейни DocType: Role Permission for Page and Report,Allow Roles,Позволете Роли DocType: DocType,Hide Toolbar,Скриване на лентата с инструменти DocType: User,Last Active,Последна активност DocType: Email Account,SMTP Settings for outgoing emails,Настройки SMTP за изходящи имейли -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Импортирането неуспешно apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Паролата ви беше актуализирана. Ето новата ви парола DocType: Email Account,Auto Reply Message,Auto Reply Message DocType: Feedback Trigger,Condition,Състояние -apps/frappe/frappe/utils/data.py +564,{0} hours ago,Преди {0} часа -apps/frappe/frappe/utils/data.py +574,1 month ago,преди 1 месец +apps/frappe/frappe/utils/data.py +576,{0} hours ago,Преди {0} часа +apps/frappe/frappe/utils/data.py +586,1 month ago,преди 1 месец DocType: Contact,User ID,User ID DocType: Communication,Sent,Изпратено DocType: Address,Kerala,Kerala @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Вашият абонамент изтича утре. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Запазена! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} не е валиден шестнадесетичен цвят apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Мадам apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Обновен {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Майстор DocType: DocType,User Cannot Create,Потребителят не може да създаде apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Папка {0} не съществува -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,достъп Dropbox е одобрен! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,достъп Dropbox е одобрен! DocType: Customize Form,Enter Form Type,Въведете Форма Type +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Липсва параметър Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Не са маркирани записи. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Премахване на поле DocType: User,Send Password Update Notification,Изпрати уведомление за актуализация на парола @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Зелен DocType: Custom DocPerm,Additional Permissions,Допълнителни Права DocType: Email Account,Always use Account's Email Address as Sender,"Винаги използвайте профил на имейл адрес, както Sender" apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Влез за да коментираш -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Започнете да въвеждате данни под тази линия +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Започнете да въвеждате данни под тази линия apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},променени стойности на {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Персонализирайте ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Неактивен DocType: Workflow State,eye-close,око-близо DocType: OAuth Provider Settings,OAuth Provider Settings,Настройки на OAuth доставчик -apps/frappe/frappe/config/setup.py +257,Applications,Приложения +apps/frappe/frappe/config/setup.py +264,Applications,Приложения apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Съобщи за проблем DocType: Custom Script,Adds a custom script (client or server) to a DocType,Добавя потребителски скрипт (клиент или сървър) към DocType DocType: Address,City/Town,Град @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Вашата компания Адре apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Редакция на ред DocType: Workflow Action,Workflow Action Master,Workflow Action магистър DocType: Custom Field,Field Type,Тип поле -apps/frappe/frappe/utils/data.py +489,only.,само. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP тайната може да бъде нулирана само от администратора. +apps/frappe/frappe/utils/data.py +494,only.,само. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP тайната може да бъде нулирана само от администратора. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,"Избягвайте години, които са свързани с вас." DocType: GSuite Templates,GSuite Templates,Шаблони за шаблони -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Низходящо apps/frappe/frappe/utils/goal.py +109,Goal,Цел apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,"Невалиден Mail Server. Моля, поправи и опитайте отново." DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,филм apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Няма разрешение да чете {0} apps/frappe/frappe/config/desktop.py +8,Tools,Инструменти apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Избягва последните години. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Множество коренни възли не са позволени. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Множество коренни възли не са позволени. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ако е активирано, потребителите ще бъдат уведомявани всеки път, когато влизат. Ако не е активирана, потребителите ще бъдат уведомени само веднъж." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Невалидно условие {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Невалидно условие {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Ако е избрано, потребителите няма да виждат диалоговия прозорец Confirm Access." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,"Поле ID е необходимо да редактирате стойностите, като използвате доклад. Моля изберете полето ID използвайки Колона Picker" apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Коментари apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Потвърждавам apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Свиване на всички @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Задаване на потребителски права DocType: Email Account,Email Account Name,Email Име на профила apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Изберете типове документи -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,"Нещо се обърка, докато генерираха символа за достъп до dropbox. Моля, проверете регистъра на грешките за повече подробности." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,"Нещо се обърка, докато генерираха символа за достъп до dropbox. Моля, проверете регистъра на грешките за повече подробности." DocType: File,old_parent,предишен_родител apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Бютелин с новини към контакти и потенциални клиенти. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","например "Подкрепа", "Продажби", "Джери Янг"" @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook User ID DocType: Workflow State,fast-forward,бързо напред DocType: Communication,Communication,Комуникации apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Маркирай колони, за да изберете, плъзнете, за да зададете подредба." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Това е постоянното действие и не можете да отмените. Продължи? DocType: Event,Every Day,Всеки Ден DocType: LDAP Settings,Password for Base DN,Парола за Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Поле на таблица -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Колони на базата на +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Колони на базата на apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,"Въведете ключове, за да активирате интегрирането с Google GSuite" DocType: Workflow State,move,ход -apps/frappe/frappe/model/document.py +1223,Action Failed,Действие Неуспешно +apps/frappe/frappe/model/document.py +1229,Action Failed,Действие Неуспешно apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,За потребител -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Сметкоплан +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Сметкоплан DocType: Address,Assam,Асам -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,Имате останали {0} дни в абонамента си +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Имате останали {0} дни в абонамента си apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Изходящият имейл акаунт не е правилен apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Увреждания Temperorily apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} е Инсталирано -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,"Моля, задайте имейл адрес" +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,"Моля, задайте имейл адрес" DocType: System Settings,Date and Number Format,Форма на дати и числа apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Максимален размер на прикачен файл е {0} MB -apps/frappe/frappe/model/document.py +1038,one of,един от -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Моля, изберете файла, който да копирате" +apps/frappe/frappe/model/document.py +1044,one of,един от apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,"Проверка. Един момент, моля." apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Покажи Етикети DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ако е поставена отметка дали е разрешено разрешение за кандидатстване за строго потребителско име и потребителско разрешение е зададено за DocType за потребител, тогава всички документи, в които стойността на връзката е празна, няма да се показва на този потребител" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Действия DocType: Workflow State,align-justify,уеднаквят-оправдае DocType: User,Middle Name (Optional),Презиме (по избор) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Не е разрешен -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Следните полета имат липсващи стойности: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,"Вие нямате достатъчно права, за да изпълните действието" +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Следните полета имат липсващи стойности: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,"Вие нямате достатъчно права, за да изпълните действието" apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Няма резултати DocType: System Settings,Security,Сигурност apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Планирана да изпрати на {0} получатели +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Разрез apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},преименуван от {0} на {1} DocType: Currency,**Currency** Master,** Валути ** Главна DocType: Email Account,No of emails remaining to be synced,"Брой на имейли, които остава да бъдат синхронизирани" -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,Качване +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,Качване apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Моля, запишете документа преди присвояване" apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,"Кликнете тук, за да публикувате бъгове и предложения" DocType: Website Settings,Address and other legal information you may want to put in the footer.,Адрес и друга правна информация които може да искате да поставите. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,Преди {0} минути DocType: Kanban Board Column,lightblue,светло синьо apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Същото поле се въвежда повече от веднъж -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Изберете Колони apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Всеки ден събития трябва да завършат в същия ден. DocType: Communication,User Tags,Потребителски етикети @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Впиши се DocType: Web Page,Main Section,Основен раздел DocType: Page,Icon,Икона apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,за филтриране на стойности между 5 и 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Съвет: Въведете в паролата символи, цифри и главни букви" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Съвет: Въведете в паролата символи, цифри и главни букви" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Мениджър на разрешенията на потребителите apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд/мм/гггг apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Тест за скрипт GSuite @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Авторско право apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Отивам DocType: OAuth Authorization Code,Invalid,Невалиден DocType: ToDo,Due Date,Срок за плащане -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Ден Квартал +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Ден Квартал DocType: Social Login Keys,Google Client Secret,Google Client Secret DocType: Website Settings,Hide Footer Signup,Скриване регистрацията във футъра apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,отмени този документ apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Напиши файл Python в същата папка, където това се записва и да се върнете на колоната и резултат." DocType: DocType,Sort Field,Поле за сортиране DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Редактиране на Филтър -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Редактиране на Филтър +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Добави още DocType: System Settings,Session Expiry Mobile,Session Изтичане Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Резултати от търсенето за apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Изберете да изтеглите: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Ако {0} е разрешено DocType: Custom DocPerm,If user is the owner,Ако потребителят е собственик +apps/frappe/frappe/config/integrations.py +88,Maps,Карти ,Activity,Дейност DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: За да създадете връзка към друг запис в системата, използвайте "# Form / Note / [Забележка Name]", както URL на Link. (Не се използват "HTTP: //")" DocType: User Permission,Allow,Позволява apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Нека да се избегнат повтарящи се думи и знаци DocType: Communication,Delayed,Отложен -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Списък на резервни копия на разположение за изтегляне +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Списък на резервни копия на разположение за изтегляне apps/frappe/frappe/www/login.html +86,Sign up,Регистрирай се DocType: Test Runner,Output,продукция DocType: Email Alert,Set Property After Alert,Задайте собственост след предупреждение -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Добави полета към форми. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Добави полета към форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,"Изглежда, че нещо не е наред с конфигурацията на Paypal на този сайт." DocType: File,rgt,RGT DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Тип файл DocType: Workflow State,leaf,листо DocType: Portal Menu Item,Portal Menu Item,Portal Меню DocType: Contact Us Settings,Email ID,Email ID +DocType: Activity Log,Keep track of all update feeds,Следете всички емисии за актуализации DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ако е разрешено да зададете потребителско разрешение за Report DocType, но не са дефинирани Потребителски права за отчет за потребител, тогава всички отчети се показват на този потребител" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: Добави Reference: {{ reference_doctype }} {{ reference_name }}
да изпратите документ за справка
apps/frappe/frappe/modules/utils.py +196,App not found,App не е намерен
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Не може да се създаде {0} срещу подчинен документ: {1}
@@ -1898,7 +1902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Пасивен
DocType: Contact,Accounts Manager,Роля Мениджър на 'Сметки'
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Плащането Ви е анулирано.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Изберете Вид на файла
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Изберете Вид на файла
DocType: Help Article,Knowledge Base Editor,База от знание - Редактор
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страницата не е намерена
DocType: DocField,Precision,Точност
@@ -1925,12 +1929,12 @@ DocType: Property Setter,Property Type,Тип на имота
DocType: Workflow State,screenshot,скрийншот
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Само администратор може да записва стандартна справка. Моля, преименувате и запазете."
DocType: System Settings,Background Workers,Фонов режим Работници
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,"Име на поле {0}, което е в противоречие с мета обект"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,"Име на поле {0}, което е в противоречие с мета обект"
DocType: Deleted Document,Data,Данни
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Статус на документ
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Вече са направени {0} от {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Оторизационен код
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Не е разрешено да импортира
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Не е разрешено да импортира
DocType: Social Login Keys,Frappe Client Secret,Frappe Client Secret
DocType: Deleted Document,Deleted DocType,Изтрити DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Разрешение Нива
@@ -1938,11 +1942,11 @@ DocType: Workflow State,Warning,Предупреждение
DocType: Data Migration Run,Percent Complete,Процентът е завършен
DocType: Tag Category,Tag Category,Етикет - Категория
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Пренебрегването т {0}, защото съществува една група със същото име!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Помощ
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Помощ
DocType: User,Login Before,Вход Преди
DocType: Web Page,Insert Style,Вмъкни стил
-apps/frappe/frappe/config/setup.py +262,Application Installer,Application Installer
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Ново име Справка
+apps/frappe/frappe/config/setup.py +269,Application Installer,Application Installer
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Ново име Справка
DocType: Workflow State,info-sign,Инфо-знак
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Цена {0} не може да бъде даден списък
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как трябва да се форматира тази валута? Ако не е зададена, ще използва системните настройки"
@@ -1955,6 +1959,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Роля - Права
DocType: Help Article,Intermediate,Междинен
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,"Отменен документ, възстановен като чернова"
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Не може да бъде изтрито или отменено, защото {0} {1} е свързано с {2} {3} {4}"
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Може да чете
DocType: Custom Role,Response,Отговор
DocType: DocField,Geolocation,геолокация
@@ -1978,8 +1983,8 @@ DocType: OAuth Client,Default Redirect URI,Адрес URI по подразби
DocType: Email Alert,Recipients,Получатели
DocType: System Settings,Choose authentication method to be used by all users,"Изберете метод за удостоверяване, който да се използва от всички потребители"
DocType: Workflow State,ok-sign,ОК-знак
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Изтрити документи
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,Форматът CSV е чувствителен към главни и малки букви
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Изтрити документи
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,Форматът CSV е чувствителен към главни и малки букви
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Иконата на работния плот вече съществува
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Дубликат
DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане на бюлетини
@@ -1987,14 +1992,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Островите Андаман и Никобар
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite документ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,"Моля, посочете кое поле за стойност трябва да се проверява"
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Родителска"" означава главната таблица, в която трябва да се добави този ред"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Родителска"" означава главната таблица, в която трябва да се добави този ред"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Този имейл адрес не може да се изпрати. Преминахте прага за изпращане на {0} имейла за този ден.
DocType: Website Theme,Apply Style,Нанесете Style
DocType: Feedback Request,Feedback Rating,Обратна връзка Рейтинг
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Споделено с
DocType: Help Category,Help Articles,Помощни статии
,Modules Setup,Настройка на модули
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Тип:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Тип:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Плащането Ви не бе успешно.
DocType: Communication,Unshared,неразделен
DocType: Address,Karnataka,Karnataka
@@ -2003,12 +2008,11 @@ DocType: User,Location,Местоположение
,Permitted Documents For User,Разрешени документи за потребителя
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Трябва да има "Share" разрешение
DocType: Communication,Assignment Completed,Прехвърляне Завършен
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Масова редакция {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Масова редакция {0}
DocType: Email Alert Recipient,Email Alert Recipient,Email Alert Получател
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Не е активна
DocType: About Us Settings,Settings for the About Us Page,"Настройки на ""За нас"" страницата"
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Настройки на порта за плащане за ленти
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Изберете вида на документа за изтегляне
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,напр pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Използвайте полето за филтриране на записи
DocType: DocType,View Settings,Преглед на настройките
@@ -2031,6 +2035,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Не м
DocType: Unhandled Email,Unhandled Email,Необработена Email
DocType: Event,Monday,Понеделник
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Възползвайте се от по-дълги модели клавишни
+DocType: Data Import,Don't create new records,Не създавайте нови записи
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,"Вложени набор грешка. Моля, свържете се с администратора."
DocType: Workflow State,envelope,плик
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Вариант 2
@@ -2041,41 +2046,41 @@ DocType: Website Settings,Brand Image,Изображение на марката
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup на горната навигационна лента, долния и лого."
DocType: Web Form Field,Max Value,Максимална стойност
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3}
DocType: Contact,All,Всички
DocType: Email Queue,Recipient,Получател
DocType: Communication,Has Attachment,С прикачен файл
DocType: Address,Sales User,Продажби - потребител
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,"Drag и Drop инструмент, за да се изгради и да персонализирате формати на печат."
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,"Drag и Drop инструмент, за да се изгради и да персонализирате формати на печат."
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Разширяване
DocType: Address,Sikkim,Сиким
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Определете
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Този стил на заявката е прекратен
DocType: Email Alert,Trigger Method,Trigger Метод
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Операторът трябва да бъде един от {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Операторът трябва да бъде един от {0}
DocType: Dropbox Settings,Dropbox Access Token,Доказателство за достъп до Dropbox
DocType: Workflow State,align-right,уеднаквят десен
DocType: Auto Email Report,Email To,Email до
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Папка {0} не е празна
DocType: Page,Roles,Роли
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Грешка: липсва стойност за {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Поле {0} не е избираемо.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Поле {0} не е избираемо.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Сесия - Изтичане
DocType: Workflow State,ban-circle,бан-кръг
DocType: Email Flag Queue,Unread,непрочетен
DocType: Bulk Update,Desk,Бюро
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Филтърът трябва да е сорт или списък (в списък)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Филтърът трябва да е сорт или списък (в списък)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Напиши SELECT заявка. Забележка резултат не е пейджъра (всички данни се изпращат на един път).
DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB)
DocType: Address,Arunachal Pradesh,Аруначал Прадеш
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Setup Auto Email
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Setup Auto Email
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Надолу
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Това е топ-10 обща парола.
DocType: User,User Defaults,Потребителски настройки
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Създавай на нов
DocType: Workflow State,chevron-down,Стрелка-надолу
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),Email не изпраща до {0} (отписахте / инвалиди)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),Email не изпраща до {0} (отписахте / инвалиди)
DocType: Async Task,Traceback,Проследи
DocType: Currency,Smallest Currency Fraction Value,Най-малък Фракция валути Value
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Присвояване на
@@ -2095,7 +2100,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Поле за ID на миграцията
DocType: Communication,Comment Type,Коментар Тип
DocType: OAuth Client,OAuth Client,OAuth клиент
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Потребители
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Потребители
DocType: Communication,Timeline field Name,Timeline поле Име
DocType: Address,Odisha,Одиша
DocType: Report,Report Type,Тип на отчета
@@ -2105,7 +2110,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Въведете клавиши, за да се даде възможност за вход чрез Facebook, Google, GitHub."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Файловият формат не може да се чете за {0}
DocType: Auto Email Report,Filter Data,Данни за филтриране
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Добавяне на маркер
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,"Моля, първо прикачете файл."
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Имаше някои грешки, определящи името, моля, свържете се с администратора"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Входящата пощенска кутия не е правилна
@@ -2128,7 +2132,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,И
DocType: Website Theme,Link Color,Цвят на Препратка
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Потребителят {0} не може да бъде деактивиран
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Уважаем мениджър на системата,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Стараната ти
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Стараната ти
DocType: Event,Sunday,Неделя
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,В табличен изглед
DocType: Address Template,Template,Шаблон
@@ -2153,7 +2157,7 @@ DocType: DocField,Table,Таблица
DocType: File,File Size,Размер на файла
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Трябва да се логнете за да изпратите този формуляр
DocType: User,Background Image,Изображение за фон
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Изберете вашата държава, часова зона и валута"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Изберете вашата държава, часова зона и валута"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,между
DocType: Async Task,Queued,На опашка
@@ -2167,12 +2171,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App на ключа за достъп
DocType: OAuth Bearer Token,Access Token,Токен за достъп
DocType: About Us Settings,Org History,Орг история
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Размер на резервното копие:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Размер на резервното копие:
DocType: Workflow,Workflow Name,Workflow Име
DocType: DocShare,Notify by Email,Изпращайте по имейл
DocType: DocField,In Standard Filter,В Стандартен Филтър
DocType: Web Form,Allow Edit,Оставя Edit
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Поставяне
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Поставяне
DocType: Webhook,Doc Events,Документи за събития
DocType: Auto Email Report,Based on Permissions For User,Въз основа на правата на потребителя
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Не може да се промени състоянието на Отменен документ. Поредни Transition {0}
@@ -2185,10 +2189,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Въведете в паролата символи, цифри и главни букви"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Поставете След поле "{0}", споменат в персонализирано поле "{1}", с етикет "{2}", не съществува"
DocType: Workflow State,signal,сигнал
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Има прикачени файлове
DocType: DocType,Show Print First,Покажи печатай първи
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, за да публикувате"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Направете нов {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Нов имейл акаунт
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Нов имейл акаунт
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Документ възстановен
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Изберете език...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Не можете да зададете "Опции" за поле {0}
@@ -2209,13 +2214,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Преместване в кошчето
DocType: Web Form,Web Form Fields,Web Form Полета
DocType: Website Theme,Top Bar Text Color,Top Bar Цвят на текста
+DocType: Data Import,Amended From,Изменен От
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Внимание: Не може да се намери {0} в таблица свързана с {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,"Този документ е в момента опашка за изпълнение. Моля, опитайте отново"
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,"Този документ е в момента опашка за изпълнение. Моля, опитайте отново"
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,"{0}" не е намерен файла
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Махни Раздел
DocType: User,Change Password,Смени парола
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Невалиден Email: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Здравейте!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Здравейте!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Край на събитието трябва да бъде след началото
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Това ще излезе {0} от всички останали устройства
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Не е нужно разрешение да получите отчет за: {0}
@@ -2224,26 +2230,27 @@ DocType: DocField,Allow Bulk Edit,Разрешаване на групово р
DocType: Blog Post,Blog Post,Блог - Статия
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Разширено Търсене
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Не ви е позволено да разглеждате бюлетина.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, \ по-високи нива за разрешения на ниво поле."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Sort By
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,"Формулярът не може да бъде запазен, тъй като внасянето на данни е в ход."
DocType: Workflow,States,Членки
DocType: Email Alert,Attach Print,Прикрепете Print
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Примерен Потребител: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,ден
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,ден
,Modules,модули
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Задай икони за раб.площ
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,Успешно плащане
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Няма {0} поща
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Грешка при качването на файлове
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Няма {0} поща
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Грешка при качването на файлове
DocType: OAuth Bearer Token,Revoked,отм
DocType: Web Page,Sidebar and Comments,Sidebar и Коментари
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когато се изменя документ след Отмени и спести нея, тя ще получи нов номер, който е версия на стария номер."
DocType: Stripe Settings,Publishable Key,Ключ за публикуване
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Стартирайте импортирането
DocType: Workflow State,circle-arrow-left,Стрелка в кръг-наляво
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,"Redis кеш сървър не работи. Моля, свържете се с администратора / подкрепа Tech"
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Име на Компания
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Име на Компания
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Направете нов запис
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,търсене
DocType: Currency,Fraction,Фракция
@@ -2268,8 +2275,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Вземи артикули
DocType: Contact,Image,Изображение
DocType: Workflow State,remove-sign,махни-знак
+DocType: Domain Settings,Domains HTML,Домейни HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,"Напишете нещо в полето за търсене, за да търсите"
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Определете работни потоци за форми.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Определете работни потоци за форми.
DocType: Address,Other,Друг
DocType: S3 Backup Settings,Access Key ID,Ключ за достъп
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Започнете новия формат
@@ -2282,6 +2290,7 @@ DocType: Customize Form Field,Is Custom Field,Е персонализирано
DocType: Workflow,"If checked, all other workflows become inactive.","Ако е избрано, всички други работни процеси стават неактивни."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Етикет]: [Вид Поле] / [Опции]: [Ширина]
DocType: Workflow State,folder-close,папка-затворена
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Доклад:
DocType: Print Settings,Print taxes with zero amount,Печатайте данъци с нулева сума
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} не е позволено да бъде преименуван
DocType: Custom Script,Custom Script,Потребителски Script
@@ -2293,32 +2302,35 @@ DocType: Email Flag Queue,Action,Действие
DocType: GSuite Settings,Script URL,URL адрес на скрипта
apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Моля, въведете паролата"
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Не е позволено да отпечатате анулирани документи
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Не е разрешено да се създаде колони
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Инфо:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Не е разрешено да се създаде колони
+DocType: Data Import,If you don't want to create any new records while updating the older records.,Ако не искате да създавате нови записи при актуализирането на по-старите записи.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Инфо:
DocType: Custom Field,Permission Level,Ниво на достъп
DocType: User,Send Notifications for Transactions I Follow,"Изпращай ми известия за транзакции, които следя"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write"
+DocType: Google Maps,Client Key,Клиентски ключ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Сигурни ли сте, че искате да изтриете прикачения файл?"
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не може да се изтрие или затвори, защото {0} {1} е свързан с {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Благодаря
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Запазване
DocType: Print Settings,Print Style Preview,Печат Style Preview
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Не е позволено да се актуализира този уеб форма Document
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,имейли
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,имейли
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,"Моля, изберете първо тип документ"
DocType: About Us Settings,About Us Settings,За нас Настройки
DocType: Website Settings,Website Theme,Website Theme
DocType: DocField,In List View,В списъчен изглед
DocType: Email Account,Use TLS,Използване на TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Невалидна парола или потребителско име
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Добави JavaScript форми.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Номер
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Изтеглете шаблони
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Добави JavaScript форми.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Номер
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка> Имейл> Имейл акаунт"
,Role Permissions Manager,Мениджър на права за роля
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Името на новия Print Format
DocType: Data Migration Run,Pull Insert,Издърпайте вложката
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,Изчистване на прикачен файл
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Задължително:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Задължително:
,User Permissions Manager,Мениджър потребителски разрешения
DocType: Property Setter,New value to be set,Задай Нова стойност
DocType: Email Alert,Days Before or After,Дни преди или след
@@ -2328,7 +2340,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Robots
DocType: User Permission,User Permission,Потребителско разрешение
apps/frappe/frappe/config/website.py +32,Blog,Блог
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP не е инсталиран
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Свали с данни
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Свали с данни
DocType: Workflow State,hand-right,ръка-надясно
DocType: Website Settings,Subdomain,Поддомейн
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Настройки за OAuth Provider
@@ -2344,21 +2356,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Моля изберете оценка
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Нулиране на OTP Secret
DocType: Email Account,Notify if unreplied for (in mins),Уведоми ако неотговорени за (в минути)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,Преди 2 дни
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,Преди 2 дни
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризиране блог постове.
DocType: Workflow State,Time,Време
DocType: DocField,Attach,Прикрепете
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Изпрати Обратна връзка Заявка само ако има най-малко една комуникация е достъпно за документа.
DocType: Custom Role,Permission Rules,Разрешение Правила
DocType: GSuite Settings,GSuite Settings,Настройки на GSuite
DocType: Address,Links,Връзки
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,"Моля, изберете типа на документа."
apps/frappe/frappe/model/base_document.py +396,Value missing for,Липсва Цена за
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Добави Поделемент
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит.
DocType: GSuite Templates,Template Name,Име на шаблона
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нов тип документ
DocType: Custom DocPerm,Read,Четене
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup> Email> Email Account"
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роля АКТ Пейдж и доклад
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Изравнете Value
@@ -2366,18 +2380,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Стара Паро
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Мнения на {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","За колони формат, даде етикети на колони в заявката."
DocType: Has Domain,Has Domain,Има Домейн
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Крия
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Крия
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Не сте регистриран? Регистрирай се
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,Не може да се премахне полето ID
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,Препратка DocType
+DocType: Activity Log,Link DocType,Препратка DocType
DocType: Social Login Keys,Social Login Keys,Социални Вход Keys
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Отмяна на всички персонализации?
DocType: Website Slideshow,Slideshow Name,Име Slideshow
DocType: Address,Andhra Pradesh,Андхра Прадеш
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Анулира
DocType: DocType,Allow Rename,Оставя Rename
-DocType: Authentication Log,Full Name,Пълно Име
+DocType: Activity Log,Full Name,Пълно Име
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Починени таблици са показани като таблица в други DocTypes.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Страницата, която търсите липсва. Това би могло да бъде, защото тя е преместена или има печатна грешка в линка."
apps/frappe/frappe/www/404.html +25,Error Code: {0},Код на грешка: {0}
@@ -2407,18 +2422,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Моля, въведете и двете си поща и съобщения, така че можем \ може да се свържем с вас. Благодаря!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Не може да се свърже с изходящ сървър за електронна поща
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Благодарим ви за проявения интерес към абонирате за нашите новини
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Персонализирана колона
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Персонализирана колона
DocType: Workflow State,resize-full,преоразмеряване-пълно
DocType: Workflow State,off,край
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Справка {0} е деактивирана
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Препоръчва се за вмъкване на нови записи.
-DocType: Async Task,Core,Сърцевина
+DocType: Activity Log,Core,Сърцевина
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Задаване на разрешения
DocType: DocField,Set non-standard precision for a Float or Currency field,Определете нестандартно прецизност за Float или валути поле
DocType: Email Account,Ignore attachments over this size,Игнориране на прикачени файлове над този размер
DocType: Address,Preferred Billing Address,Предпочитана Billing Адрес
apps/frappe/frappe/config/integrations.py +68,External Documents,Външни документи
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} години преди
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,"Твърде много записи в една заявка. Моля, изпратете по-малки заявки"
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Променени стойности
DocType: Workflow State,arrow-up,стрелка нагоре
@@ -2426,10 +2439,9 @@ DocType: OAuth Bearer Token,Expires In,Изтича В
DocType: DocField,Allow on Submit,Позволете на Подайте
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Тип Изключение
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Избрани Колони
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Избрани Колони
DocType: Web Page,Add code as <script>,"Добави код, както"
DocType: Webhook,Headers,Заглавия
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Изберете тип
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,"Моля, въведете стойности за App ключа за достъп и App Secret Key"
DocType: Web Form,Accept Payment,Приеми плащане
apps/frappe/frappe/config/core.py +62,A log of request errors,Журнал с грешки на заявки
@@ -2437,7 +2449,7 @@ DocType: Report,Letter Head,Бланка
DocType: DocType,Quick Entry,Бързо въвеждане
DocType: Web Form,Button Label,Текст на Бутон
DocType: Website Theme,UPPERCASE,ГЛАВНА БУКВА
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} елементи избрани
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} елементи избрани
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,Задържане на изпращането
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,"Плъзнете елементи от страничната лента, за да добавите. Ги завлече в кошчето."
DocType: Workflow State,resize-small,преоразмеряване-малка
@@ -2463,21 +2475,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Перс
DocType: Workflow State,Edit,Редактирай
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Разрешения могат да бъдат управлявани чрез Setup> Мениджър Роля Permissions
DocType: Contact Us Settings,Pincode,ПИН код
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,"Моля, уверете се, че няма празни колони във файла."
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,"Моля, уверете се, че няма празни колони във файла."
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,"Моля, уверете се, че вашият профил има зададен имейл адрес"
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Имате незапазени промени в тази форма. Моля, запишете преди да продължите."
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория
DocType: User,User Image,Потребител - Снимка
apps/frappe/frappe/email/queue.py +336,Emails are muted,Имейлите са заглушени
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Нагоре
DocType: Website Theme,Heading Style,Заглавие - Стил
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,Ще бъде създаден нов проект с това име
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,преди 1 седмица
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,Ще бъде създаден нов проект с това име
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,преди 1 седмица
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Не можете да инсталирате това приложение
DocType: Communication,Error,Грешка
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Да не се изпращат имейли.
+DocType: Data Import,Ignore encoding errors,Пренебрегвайте грешките при кодирането
DocType: DocField,Column Break,Разделител на Колона
DocType: Event,Thursday,Четвъртък
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Вие нямате разрешение за достъп до този файл
@@ -2504,7 +2516,6 @@ DocType: Webhook,Webhook Request,Искане за Webhook
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Издател
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Грешка: {0} до {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Тип на картографиране
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Изберете Задължително
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Разгледай
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Няма нужда от символи, цифри или главни букви."
DocType: DocField,Currency,Валута
@@ -2514,10 +2525,11 @@ DocType: Async Task,Running,Изпълнение
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Reset Password
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Моля Подобрете да добавите повече от {0} абонати
DocType: Workflow State,hand-left,ръка-наляво
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален
+DocType: Data Import,If you are updating/overwriting already created records.,Ако актуализирате / презаписвате вече създадени записи.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален
DocType: Email Account,Use SSL,Използване на SSL
DocType: Workflow State,play-circle,игра-кръг
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",Невалиден израз "зависи_на"
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",Невалиден израз "зависи_на"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Изберете Print Формат за редактиране
DocType: Address,Shipping,Доставки
DocType: Workflow State,circle-arrow-down,Стрелка в кръг-надолу
@@ -2529,25 +2541,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,стрелка надясно
DocType: Workflow State,Workflow state represents the current state of a document.,Членка Workflow представлява текущото състояние на даден документ.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token липсва
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Забележка: Промяната на името на страницата ще прекъсне предишния URL адрес на тази страница.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,Забележка: Промяната на името на страницата ще прекъсне предишния URL адрес на тази страница.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Премахнато {0}
DocType: SMS Settings,SMS Settings,SMS Настройки
DocType: Company History,Highlight,Маркиране
DocType: OAuth Provider Settings,Force,сила
DocType: DocField,Fold,Гънка
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Възходящ
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard Print формат не може да се актуализира
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,мис
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,"Моля, посочете"
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,"Моля, посочете"
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Помощ статия
DocType: Page,Page Name,Име на страницата
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Помощ: свойства на поле
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Импортиране ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Разархивиране
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Неправилна стойност в ред {0}: {1} трябва да е {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Неправилна стойност в ред {0}: {1} трябва да е {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Изпратено Документът не може да се превръща отново да изготви проект. Поредни Transition {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Изтриване на {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Изтриване на {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,"Изберете съществуващ формат, за да редактирате или започнете нов формат."
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Създаден персонализирано поле {0} в {1}
DocType: System Settings,Time Zone,Часова Зона
@@ -2563,16 +2573,19 @@ DocType: Workflow State,Home,Начална страница
DocType: OAuth Provider Settings,Auto,Автоматичен
DocType: System Settings,User can login using Email id or User Name,Потребителят може да влезе с имейл или потребителско име
DocType: Workflow State,question-sign,въпрос-знак
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Вмъкване на колона преди {0}
DocType: Email Account,Add Signature,Добави подпис
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Напусна този разговор
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Не избран
,Background Jobs,Задачи във фонов режим
DocType: ToDo,ToDo,Да направя
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Потребител
DocType: DocField,No Copy,Няма копие
DocType: Workflow State,qrcode,QRCode
+DocType: Data Import,Submit after importing,Изпратете след импортирането
apps/frappe/frappe/www/login.html +31,Login with LDAP,Влез с LDAP
DocType: Web Form,Breadcrumbs,Breadcrumbs
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Ако Собственик
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Ако Собственик
DocType: Data Migration Mapping,Push,тласък
DocType: OAuth Authorization Code,Expiration time,време изтичане
DocType: Web Page,Website Sidebar,Сайт Sidebar
@@ -2588,6 +2601,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Настройки за печат
DocType: Page,Yes,Да
DocType: DocType,Max Attachments,Максимален брой прикачени файлове
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Клиентският ключ е задължителен
DocType: Calendar View,End Date Field,Поле за край на датата
DocType: Desktop Icon,Page,Страница
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не можах да намеря {0} в {1}
@@ -2598,18 +2612,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},"Ст
DocType: Feedback Request,Is Manual,Дали Manual
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style представлява цвета на бутона: Success - Green, Danger - Red, Inverse - Черно, Основно - Тъмно син, Info - Light Blue, Предупреждение - Orange"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Не Доклад зареден. Моля, използвайте заявка-доклад / [Докладвай Name], за да изготвите отчет."
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Статус на ред
DocType: Workflow Transition,Workflow Transition,Workflow Transition
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,Преди {0} месеца
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Създаден от
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Dropbox Setup
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Dropbox Setup
DocType: Workflow State,resize-horizontal,преоразмеряване-хоризонтална
DocType: Note,Content,Съдържание
DocType: Data Migration Run,Push Insert,Натиснете Insert
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Група - Елемент
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Група - Елемент
DocType: Communication,Notification,нотификация
DocType: DocType,Document,Документ
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Номерация {0} вече се използва в {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Неподдържан файлов формат
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Неподдържан файлов формат
DocType: DocField,Code,Код
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Всичко е възможно Workflow членки и роли на работния процес. Docstatus варианти: 0 е "Saved", 1 е "Внесена" и 2 е "Анулирани""
DocType: Website Theme,Footer Text Color,Footer Текст Color
@@ -2617,6 +2632,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Посл
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Разрешения на ниво 0 са Document разрешенията на ниво, т.е. те са първични достъп до документа."
DocType: Email Alert,Print Format,Print Format
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Невалидни пълномощията на шлюза за плащане
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Това е шаблонният файл, генериран само с някои грешки. Трябва да използвате този файл за корекция и импортиране."
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Задаване на разрешения за видовете и Роли на документи
apps/frappe/frappe/model/meta.py +159,No Label,Няма етикет
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Актуализира се ...
@@ -2641,15 +2657,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,Отг
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Страници в Desk (място притежателите)
DocType: DocField,Collapsible Depends On,Свиваем - зависи от
DocType: Print Style,Print Style Name,Име на стил на печат
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template."
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,От
DocType: Print Settings,Allow page break inside tables,Оставя почивка страница вътре маси
DocType: Email Account,SMTP Server,SMTP сървър
DocType: Print Format,Print Format Help,Print Format Помощ
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,"Актуализирайте шаблона и го запазете в изтегления формат, преди да го прикачите."
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,С групи
DocType: DocType,Beta,Бета
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},възстановено {0} като {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ако обновявате, моля изберете "Презаписване" друго съществуващи редове няма да бъдат изтрити."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ако обновявате, моля изберете "Презаписване" друго съществуващи редове няма да бъдат изтрити."
DocType: Event,Every Month,Всеки Месец
DocType: Letter Head,Letter Head in HTML,Бланка в HTML
DocType: Web Form,Web Form,Web Form
@@ -2659,15 +2675,15 @@ DocType: Print Settings,Allow Print for Cancelled,Оставя Print за Отм
DocType: Communication,Integrations can use this field to set email delivery status,Интеграции могат да използват тази област да се създаде статут на имейл доставка
DocType: Web Form,Web Page Link Text,Web Page Link Текст
DocType: Page,System Page,Системна страница
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Определете формат по подразбиране, размер на страница, печат стил и т.н."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Определете формат по подразбиране, размер на страница, печат стил и т.н."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Включи Търсене в Top Bar
DocType: GSuite Settings,Allow GSuite access,Разрешете достъп на GSuite
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Именуване
DocType: Event,Every Year,Всяка Година
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Избери всички
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Персонализирани Преводи
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Избери всички
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Персонализирани Преводи
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Прогрес
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,от Роля
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,липсващи полета
@@ -2679,14 +2695,13 @@ DocType: File,Thumbnail URL,Thumbnail URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Персонализирани отчети
DocType: Website Script,Website Script,Website Script
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Ако не използвате собствена публикация за Google Apps Script webapp, можете да използвате стандартната https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec"
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Персонализиран HTML шаблон за печат на транзакции.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Персонализиран HTML шаблон за печат на транзакции.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,ориентация
DocType: Workflow,Is Active,Е активен
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Няма повече записи
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Мениджър на разрешенията на потребителите
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Няма повече записи
DocType: DocField,Long Text,Дълъг текст
DocType: Workflow State,Primary,Първичен
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},"Моля, не променяйте редовете над {0}"
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},"Моля, не променяйте редовете над {0}"
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Отидете на този URL след попълване на формуляра (само за Гост потребители)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,Повече информация
@@ -2698,7 +2713,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,звънец
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Грешка при предупреждението по имейл
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Споделете този документ с
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може да бъде клон, тъй като има подклонове"
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може да бъде клон, тъй като има подклонове"
DocType: Communication,Info,Инфо
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Добави Attachment
DocType: Data Migration Mapping,Sync,Sync
@@ -2738,7 +2753,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Плащане Gateway
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","За да се даде до зоната роля само за конкретни записи, проверка на Apply потребителски разрешения. Потребителски разрешения се използват за ограничаване на потребителите с такава роля на специфични регистри."
DocType: Portal Settings,Hide Standard Menu,Скриване на стандартното меню
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Добави / Управление на имейл домейни.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Добави / Управление на имейл домейни.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Не може да се отмени преди изпращане. Вижте Transition {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} е деактивиран
DocType: Email Alert,Send days before or after the reference date,Изпрати дни преди или след референтната дата
@@ -2747,7 +2762,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Стойно
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,"Кликнете тук, за да потвърдите"
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Предвидими замествания като "@" вместо "а" не помагат много.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Възложени от мен
-apps/frappe/frappe/utils/data.py +480,Zero,нула
+apps/frappe/frappe/utils/data.py +485,Zero,нула
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не е в режим на програмиста! Разположен в site_config.json или да направите "по поръчка" DocType.
DocType: Workflow State,globe,глобус
DocType: System Settings,dd.mm.yyyy,дд.мм.гггг
@@ -2767,11 +2782,12 @@ DocType: Module Def,Module Name,Модул име
DocType: DocType,DocType is a Table / Form in the application.,DocType е таблица / Form в заявлението.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Партия GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Доклад
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Доклад
DocType: SMS Settings,Use POST,Използвайте POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,уеб View
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Внимание: Този формат за печат е в стар стил и не може да бъде генериран чрез API.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Общо
DocType: DocField,Print Width,Print Width
,Setup Wizard,Помощник за инсталиране
DocType: Address,GST State Number,GST номер на държавата
@@ -2797,26 +2813,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,"Моля, актуализирайте SMS настройките"
DocType: Event,Event Type,Тип на събитието
DocType: User,Last Known Versions,Последни познати версии
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Добавяне / Управление на имейл акаунти.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Добавяне / Управление на имейл акаунти.
DocType: Newsletter,Published,Публикуван
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Благодаря ви за вашия имейл
DocType: DocField,Small Text,Малък Текст
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Равно
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType"
DocType: About Us Settings,Team Members Heading,Членове на екипа - заглавие
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Невалиден CSV формат
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Определете брой резервни копия
DocType: DocField,Do not allow user to change after set the first time,Да не се допуска потребител да се промени след задаване за първи път
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Private или Public?
-apps/frappe/frappe/utils/data.py +578,1 year ago,Преди 1 година
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Private или Public?
+apps/frappe/frappe/utils/data.py +590,1 year ago,Преди 1 година
DocType: Contact,Contact,Контакт
DocType: User,Third Party Authentication,Автентикация от трета страна
DocType: Website Settings,Banner is above the Top Menu Bar.,Рекламата е над Top Menu Bar.
DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Export Доклад:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} не съществува
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Export Доклад:
DocType: Data Migration Run,Push Update,Натиснете Update
DocType: Email Account,Port,Порт
DocType: Print Format,Arial,Arial
@@ -2833,15 +2848,15 @@ DocType: Dropbox Settings,Dropbox Settings,Настройки Dropbox
DocType: About Us Settings,More content for the bottom of the page.,Повече съдържание за долната част на страницата.
DocType: Workflow,DocType on which this Workflow is applicable.,"DocType, на която тази Workflow е приложимо."
DocType: Feedback Trigger,Enabled,Активен
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Неуспешно завършване на настройката
DocType: Tag Category,Category Name,Категория Име
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Импорт - Абонати
DocType: Print Settings,PDF Settings,PDF Настройки
DocType: Kanban Board Column,Column Name,Колона Име
DocType: Language,Based On,Базиран на
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Вие сте готови!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Направи по подразбиране
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Проверете URL на Frappe сървъра
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира
DocType: Communication,Email Account,Имейл акаунт
DocType: Workflow State,Download,Изтегляне
DocType: Blog Post,Blog Intro,Блог - Въведение
@@ -2857,7 +2872,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Невалиден лимит {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Списък на тип документ
DocType: Event,Ref Type,Ref Type
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако качвате нови рекорди, оставете "име" (ID) колона заготовката."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако качвате нови рекорди, оставете "име" (ID) колона заготовката."
DocType: Data Migration Run,Current Mapping Delete Start,Текущо картографиране Изтрий старт
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Грешки в Background Събития
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Брои колони
@@ -2869,22 +2884,22 @@ DocType: Website Settings,Website Theme Image,Website Theme Изображени
DocType: Workflow State,road,път
DocType: LDAP Settings,Organizational Unit,Организационна единица
DocType: User,Timezone,Часова Зона
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Не може да се зареди: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},Не може да се зареди: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,Резервно копие
DocType: DocField,Read Only,Само За Четене
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Нов бюлетин
DocType: Print Settings,Send Print as PDF,Изпрати Принтирай като PDF
DocType: Web Form,Amount,Стойност
DocType: Workflow Transition,Allowed,Позволен
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Не може да има само едно стадо във форма
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Не може да има само едно стадо във форма
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Не може да се напише файлов формат за {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Възстановяване на настройките по подразбиране?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Невалиден Home Page
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Невалиден вход. Опитайте пак.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}"
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Невалиден вход. Опитайте пак.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}"
DocType: Auto Email Report,Send only if there is any data,Изпрати само ако има някаква информация
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Фабрични филтри
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Назначението е затворено от {0}
DocType: Integration Request,Remote,отдалечен
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Изчисли
@@ -2895,7 +2910,6 @@ DocType: Error Snapshot,Locals,Местните жители
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Съобщено посредством {0} от {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} ви спомена в коментар в {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,напр (55 + 434) / 4 или = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка> Имейл> Имейл акаунт"
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} е задължително
DocType: Integration Request,Integration Type,Вид интеграция
DocType: Newsletter,Send Attachements,Изпрати прикачванията
@@ -2905,16 +2919,15 @@ DocType: DocField,Perm Level,Ниво на достъп
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Събития в днешния Calendar
DocType: Web Page,Web Page,Уеб Страница
DocType: Blog Category,Blogger,Списвач на блог
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Пропускайте редове с грешки.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Вижте Списък
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Вижте Списък
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Датата трябва да бъде във формат: {0}
DocType: Workflow,Don't Override Status,Не променяй статуса
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Моля, дайте оценка."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Заявка за Обратна връзка
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Дума за търсене
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,Първият потребител: Вие
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Изберете Колони
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,Първият потребител: Вие
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Изберете Колони
DocType: Translation,Source Text,Източник Текст
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Липсващи параметри за влизане
DocType: Workflow State,folder-open,папка-отворена
@@ -2926,18 +2939,17 @@ DocType: Page,No,Не
DocType: Property Setter,Set Value,Зададена стойност
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Скриване поле във форма
DocType: Webhook,Webhook Data,Webhook Данни
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,"Неправомерен токън за достъп. Моля, опитайте отново"
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,"Неправомерен токън за достъп. Моля, опитайте отново"
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Заявлението беше обновен до нова версия, моля обновите тази страница"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Повторно изпращане
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"По желание: Сигналът ще бъде изпратен, ако този израз е вярно"
DocType: Data Migration Plan,Plan Name,Име на плана
DocType: Print Settings,Print with letterhead,Печат с бланки
DocType: Unhandled Email,Raw Email,Raw Email
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Изберете записа за присвояване
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Импортиране
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Изберете записа за присвояване
DocType: ToDo,Assigned By,Възложен от
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Можете да използвате Customize Форма за да зададете нивото на полета.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Изберете Вашия регион
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Изберете Вашия регион
DocType: Custom DocPerm,Level,Ниво
DocType: Custom DocPerm,Report,Справка
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сумата трябва да бъде по-голямо от 0.
@@ -2956,7 +2968,7 @@ DocType: Website Theme,Background,Фонов режим
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON списък на DocTypes използвани да се прилагат потребителски разрешения. Ако празна, всички свързани DocTypes ще бъдат използвани, за да се прилага потребителски разрешения."
DocType: Report,Ref DocType,Ref DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Моля, добавете рейтинг"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Пълна страница
DocType: DocType,Is Child Table,Е подчинена таблица
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} трябва да бъде един от {1}
@@ -2968,7 +2980,7 @@ DocType: Workflow State,chevron-left,Стрелка-ляво
DocType: Communication,Sending,Изпращане
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Не е позволено от този IP адрес
DocType: Website Slideshow,This goes above the slideshow.,Това се отнася по-горе слайдшоу.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Инсталиране на приложения.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Инсталиране на приложения.
DocType: Contact,Last Name,Фамилия
DocType: Event,Private,Частен
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Няма сигнали за днес
@@ -2985,19 +2997,19 @@ DocType: Event,Send an email reminder in the morning,Изпращане на е
DocType: Blog Post,Published On,Публикуван на
DocType: Contact,Gender,Пол
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Задължителната информация липсва:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности"
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Проверете URL адреса
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Само 200 добавяния се допускат в една заявка
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,"Върнете се в екрана за потвърждение и въведете кода, показан от приложението ви за удостоверяване"
DocType: ToDo,Reference Type,Референтен Type
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,"Моля, активирайте режима за програмисти, за да създадете нова връзка"
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,"Моля, активирайте режима за програмисти, за да създадете нова връзка"
DocType: Event,Repeat On,Повтори на
DocType: SMS Parameter,SMS Parameter,SMS параметър
DocType: Communication,Marked As Spam,"Маркиран, като спам"
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Има някакъв проблем с адреса на файл: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Дърво
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,Не е разрешено да се отпечатва отчета
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,Не е разрешено да се отпечатва отчета
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Потребителски права
DocType: Workflow State,warning-sign,предупредителен-знак
DocType: Workflow State,User,Потребител
@@ -3029,64 +3041,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Неустойка
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} добавен
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Търсене за '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Моля, запишете справката първо"
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,"Моля, запишете справката първо"
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,Добавени {0} абонати
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Не в
DocType: Workflow State,star,звезда
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,"стойности, разделени със запетаи"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,"стойности, разделени със запетаи"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Моля, споделете вашето мнение за {0}"
apps/frappe/frappe/config/website.py +13,Content web page.,Съдържание уеб страница.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Добави нова роля
DocType: Deleted Document,Deleted Document,Изтрити Документ
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Ами сега! Нещо се обърка
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Ами сега! Нещо се обърка
DocType: Help Article,Category,Категория
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Client страна скрипт разширения в Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Указания за инсталиране на LDAP dependancies and python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Блог - Въведение
DocType: Address,Office,Офис
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Това Kanban табло ще бъде частно
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Това Kanban табло ще бъде частно
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Стандартни отчети
DocType: User,Email Settings,Email настройки
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,"Моля, въведете паролата си, за да продължите"
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Не е валидно потребителско LDAP
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} не е валидна Област
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. PayPal не поддържа транзакции с валута "{0}""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Поле за търсене {0} не е валидно
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Поле за търсене {0} не е валидно
DocType: Workflow State,ok-circle,OK-кръг
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Можете да намерите неща, като попита "намери оранжево в клиенти""
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,За съжаление! Потребителят трябва да има пълен достъп до собствения си рекорд.
,Usage Info,Информация за употребата
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Невалиден токън
DocType: Email Account,Email Server,Email Сървър
-DocType: DocShare,Document Type,Вид документ
+DocType: Data Import,Document Type,Вид документ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Етикет е задължително
DocType: PayPal Settings,API Username,API име
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Половин ден
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Половин ден
DocType: Communication,Communication Type,Тип Комуникации
DocType: DocField,Unique,Уникален
-DocType: Data Migration Run,Partial Success,Частичен успех
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Частичен успех
DocType: Email Account,Service,Обслужване
DocType: File,File Name,Име На Файл
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),Не намерихте {0} за {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),Не намерихте {0} за {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Опа, не ви е позволено да се знае, че"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Следващ
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Следващ
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Вие излязохте от системата успешно
DocType: Calendar View,Calendar View,Календарен изглед
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Редактиране на Формат
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Пълна Регистрация
DocType: GSuite Settings,Enable,Активиране
+DocType: Google Maps,Home Address,Начален адрес
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Нов {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar Цвят и Цвят на текста са еднакви. Те трябва да се имат добра разлика може да се чете.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да качите само до запълването 5000 записи с един замах. (Може да бъде по-малко в някои случаи)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да качите само до запълването 5000 записи с един замах. (Може да бъде по-малко в някои случаи)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Недостатъчно разрешение за {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Справката не беше запазена (имаше грешки)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Справката не беше запазена (имаше грешки)
DocType: Print Settings,Print Style,Print Style
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Не е свързан с никакви записи
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Не е свързан с никакви записи
DocType: Custom DocPerm,Import,Импорт
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Не е позволено да се даде възможност Оставя върху Изпращане за стандартни полета
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Импорт / Експорт на данни
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Импорт / Експорт на данни
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Стандартни роли не могат да се преименуват
DocType: Communication,To and CC,До и Копие до
DocType: SMS Settings,Static Parameters,Статични параметри
@@ -3107,18 +3120,17 @@ DocType: Web Page,Header and Description,Заглавие и Описание
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Изисква се въвеждане на двете: потребителско име и парола
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,"Моля, опреснете, за да получите най-новата документа."
DocType: User,Security Settings,Настройки за сигурност
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Добави Колона
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Добави Колона
,Desktop,Работен плот
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Експортиран отчет: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Експортиран отчет: {0}
DocType: Auto Email Report,Filter Meta,Филтър Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, за да бъде показана за Линк към Web Page ако този формуляр има уеб страница. Link маршрут автоматично ще се генерира на базата на `page_name` и` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Обратна връзка Trigger
DocType: S3 Backup Settings,Backup Limit,Грешка при архивиране
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,"Моля, задайте {0} първа"
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,"Моля, задайте {0} първа"
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Кръпка
-DocType: Async Task,Failed,Не успя
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Не са намерени данни
+DocType: Activity Log,Failed,Не успя
DocType: Web Form,Allow Comments,Оставя Коментари
DocType: User,Background Style,Стил на фона
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,"Bypass Two Factor Auth за потребители, които влизат от ограничен IP адрес"
@@ -3127,7 +3139,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},сля {0} в {1}
DocType: System Settings,mm-dd-yyyy,mm-dd-yyyy
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Нова връзка
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} влязе в профила си
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} влязе в профила си
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Вашият логин идентификатор е
DocType: OAuth Client,Skip Authorization,Напред Разрешение
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Стандартното предупреждение за имейл не може да се редактира. За да редактирате, моля, деактивирайте го и го дублирайте"
diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv
index d14da66277..cdb5b7c116 100644
--- a/frappe/translations/bn.csv
+++ b/frappe/translations/bn.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","একটি নতুন টাস্ক, {0}, {1} দ্বারা আপনার জন্য নির্দিষ্ট করা হয়েছে. {2}"
DocType: Email Queue,Email Queue records.,ইমেল সারি রেকর্ড.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,পোস্ট
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,প্রথম পক্ষের ধরন নির্বাচন করুন
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,প্রথম পক্ষের ধরন নির্বাচন করুন
DocType: Address,Punjab,পাঞ্জাব
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,একটি CSV ফাইল আপলোড করে অনেক জিনিস নামান্তর.
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,একটি CSV ফাইল আপলোড করে অনেক জিনিস নামান্তর.
DocType: Workflow State,pause,বিরতি
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,আপনি এই পৃষ্ঠাটি অ্যাক্সেস করার অনুমতি নেই.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,কোন ফলাফল পাওয়া যায়নি '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,{0} ব্যবহারকারী মোছা যাবে না DocType: System Settings,Currency Precision,মুদ্রা যথার্থ @@ -317,21 +318,21 @@ DocType: Communication,Attachment,ক্রোক DocType: Communication,Message ID,বার্তা আইডি DocType: Property Setter,Field Name,ক্ষেত্র নাম apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,গুগল GSuite কনফিগার করা নেই। -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,বা +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,বা apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,মডিউল নাম ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,চালিয়ে DocType: Custom Field,Fieldname,ক্ষেত্র নাম DocType: Workflow State,certificate,শংসাপত্র DocType: User,Tile,টালি apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,যাচাই করা হচ্ছে ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,প্রথম ডাটা কলাম ফাঁকা রাখা আবশ্যক. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,প্রথম ডাটা কলাম ফাঁকা রাখা আবশ্যক. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,সব সংস্করণ প্রদর্শন করা হবে DocType: Workflow State,Print,ছাপা DocType: User,Restrict IP,আইপি সীমাবদ্ধ apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,ড্যাশবোর্ড apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন -DocType: Communication,Timeline Name,সময়রেখা নাম +DocType: Activity Log,Timeline Name,সময়রেখা নাম DocType: Email Account,e.g. smtp.gmail.com,যেমন smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,একটি নতুন নিয়ম যোগ DocType: Contact,Sales Master Manager,সেলস ম্যানেজার মাস্টার @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,মূল ট্যাগ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","আপনার প্রশ্নের সাথে গৃহীত হয়েছে. আমরা খুব শীঘ্রই ফিরে উত্তর দিতে হবে. আপনি কোন অতিরিক্ত তথ্য আছে, এই মেইল উত্তর দয়া করে." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,অনুমতি স্বয়ংক্রিয়ভাবে স্ট্যান্ডার্ড প্রতিবেদন এবং অনুসন্ধান থেকে অনুবাদ করা হয়. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,লগইন টোকেন প্রয়োজন +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,লগইন টোকেন প্রয়োজন DocType: Event,Repeat Till,পর্যন্ত একই পদ্ধতি পুনরাবৃত্তি করুন apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,নতুন apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Gsuite সেটিংস স্ক্রিপ্ট URL- সেট করুন @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,আজকের আপকামিং ইভেন্টস DocType: Email Alert Recipient,Email By Document Field,ডকুমেন্ট ক্ষেত্র দ্বারা ইমেইল DocType: Domain Settings,Domain Settings,ডোমেন সেটিংস -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,ফাইল সাইজ: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,ফাইল সাইজ: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,আপগ্রেড apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},সংযোগ করা যাবে না: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,নিজে একটি শব্দ অনুমান করা সহজ. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,ভগ্নাংশ ইউনিট apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} থেকে {1} থেকে {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,সম্পন্ন হিসাবে চিহ্নিত করুন DocType: Communication,Type,শ্রেণী -DocType: Authentication Log,Subject,বিষয় +DocType: Activity Log,Subject,বিষয় DocType: Web Form,Amount Based On Field,পরিমাণ ক্ষেত্রের উপর ভিত্তি করে apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ব্যবহারকারী শেয়ার জন্য বাধ্যতামূলক DocType: DocField,Hidden,গোপন @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,অসম্পূর্ণ ফরম apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} প্রথমে সেট করা আবশ্যক apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","একটি কয়েকটি শব্দ ব্যবহার করুন, সাধারণ বাক্যাংশ এড়ানো." DocType: Workflow State,plane,সমতল -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","আপনি নতুন রেকর্ড আপলোড করা হয় তাহলে যদি থাকে, "সিরিজ নামকরণ", বাধ্যতামূলক হয়ে যায়." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","আপনি নতুন রেকর্ড আপলোড করা হয় তাহলে যদি থাকে, "সিরিজ নামকরণ", বাধ্যতামূলক হয়ে যায়." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,আজকের সতর্ক বার্তা গ্রহণ করুন apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DOCTYPE শুধুমাত্র অ্যাডমিনিস্ট্রেটর দ্বারা পালটে যাবে apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},পরিবর্তিত মান {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","ব্যবহারকারীর কোনো ভূমিকা আছে কিনা, তাহলে ব্যবহারকারী একটি "সিস্টেম ব্যবহারকারী" হয়ে উঠবে। "সিস্টেম ব্যবহারকারী" ডেস্কটপে অ্যাক্সেস আছে" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,যাচাইয়ের জন্য আপনার ইমেইল চেক করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না DocType: Communication,Bounced,ফেরত DocType: Deleted Document,Deleted Name,মোছা নাম apps/frappe/frappe/config/setup.py +14,System and Website Users,সিস্টেম এবং ওয়েবসাইট ব্যবহারকারীদের @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,আপডেট টানুন DocType: Auto Email Report,No of Rows (Max 500),সারি কোন (সর্বোচ্চ 500) DocType: Language,Language Code,ভাষার কোড apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","আপনার ডাউনলোড নির্মিত হচ্ছে, এই কয়েক মিনিট সময় নিতে পারে ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,ফিল্টার যোগ +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,ফিল্টার যোগ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},এসএমএস নিম্নলিখিত সংখ্যা পাঠানো: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,আপনার রেটিং: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} এবং {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} এবং {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",সর্বদা মুদ্রণ খসড়া নথি জন্য শিরোলেখ "খসড়া" যোগ DocType: Data Migration Run,Current Mapping Start,বর্তমান ম্যাপিং শুরু apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,ইমেইল স্প্যাম হিসাবে চিহ্নিত হয়েছে DocType: About Us Settings,Website Manager,ওয়েবসাইট ম্যানেজার apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,ফাইল আপলোড সংযোগ বিচ্ছিন্ন। অনুগ্রহপূর্বক আবার চেষ্টা করুন. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,আপনার কাছে নির্বাচিত খসড়া বা বাতিল কাগজপত্র -apps/frappe/frappe/model/document.py +1180,Document Queued,ডকুমেন্ট-টি সারিভুক্ত +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,আপনার কাছে নির্বাচিত খসড়া বা বাতিল কাগজপত্র +apps/frappe/frappe/model/document.py +1186,Document Queued,ডকুমেন্ট-টি সারিভুক্ত DocType: GSuite Templates,Destination ID,গন্তব্যস্থান আইডি DocType: Desktop Icon,List,তালিকা -DocType: Communication,Link Name,লিংক নাম -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক +DocType: Activity Log,Link Name,লিংক নাম +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক DocType: System Settings,mm/dd/yyyy,মিমি / ডিডি / YYYY -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,অবৈধ পাসওয়ার্ড: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,অবৈধ পাসওয়ার্ড: DocType: Print Settings,Send document web view link in email,পাঠান ইমেল নথি ওয়েব ভিউতে লিংক apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,নথির জন্য আপনার প্রতিক্রিয়া {0} সফলভাবে সংরক্ষিত হয় -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,পূর্ববর্তী +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,পূর্ববর্তী apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,লিখেছেন: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} সারি {1} এর জন্য DocType: Currency,"Sub-currency. For e.g. ""Cent""",উপ-কারেন্সি. যেমন "সেন্ট" জন্য @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,আপলোড করা ফাইল নির্বাচন করুন DocType: Letter Head,Check this to make this the default letter head in all prints,সব প্রিন্ট এই ডিফল্ট চিঠি মাথা করতে এই পরীক্ষা DocType: Print Format,Server,সার্ভার -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,নিউ Kanban বোর্ড +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,নিউ Kanban বোর্ড DocType: Desktop Icon,Link,লিংক apps/frappe/frappe/utils/file_manager.py +111,No file attached,সংযুক্ত কোন ফাইল DocType: Version,Version,সংস্করণ DocType: User,Fill Screen,পর্দা ভরাট -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","কারণে অনুপস্থিত তথ্য, এই বৃক্ষ প্রতিবেদন প্রদর্শন করতে পারেনি. সম্ভবত, এটা কারণে অনুমতি ফিল্টার আউট হচ্ছে." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ফাইল নির্বাচন +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","কারণে অনুপস্থিত তথ্য, এই বৃক্ষ প্রতিবেদন প্রদর্শন করতে পারেনি. সম্ভবত, এটা কারণে অনুমতি ফিল্টার আউট হচ্ছে." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,আপলোড ব্যর্থ হয়েছে -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","নথি প্রকার ..., যেমন গ্রাহক" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,কন্ডিশন '{0}' অবৈধ DocType: Workflow State,barcode,বারকোড -apps/frappe/frappe/config/setup.py +235,Add your own translations,আপনার নিজস্ব অনুবাদ যোগ করুন +apps/frappe/frappe/config/setup.py +242,Add your own translations,আপনার নিজস্ব অনুবাদ যোগ করুন DocType: Country,Country Name,দেশের নাম DocType: About Us Team Member,About Us Team Member,আমাদের টিম সদস্য সম্পর্কে apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","অনুমতি, প্রতিবেদন, আমদানি, রপ্তানি, মুদ্রণ, ইমেল এবং ব্যবহারকারীর অনুমতি সেট, লিখুন তৈরি করুন, মুছে ফেলুন, জমা, বাতিল, সংশোধন, ভূমিকা এবং পাঠযোগ্য মত অধিকার সেট করে নথি ধরনের (বলা DocTypes) উপর নির্ধারণ করা হয়." DocType: Event,Wednesday,বুধবার -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে DocType: OAuth Client,Token,টোকেন DocType: Property Setter,ID (name) of the entity whose property is to be set,যার সম্পত্তি সত্তা আইডি (নাম) নির্ধারণ করা হয় apps/frappe/frappe/limits.py +84,"To renew, {0}.",নবীকরণের জন্য {0}. @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,অ্যাপ { apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,কোন পূর্বরূপ DocType: Workflow State,exclamation-sign,বিস্ময়বোধক চিহ্ন apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,দেখান অনুমতিসমূহ -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,তারিখের পরিসীমা -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},পাতা {0} এর {1} DocType: About Us Settings,Introduce your company to the website visitor.,ওয়েবসাইট পরিদর্শক আপনার কোম্পানীর পরিচয় করিয়ে. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","এনক্রিপশন কী অবৈধ, অনুগ্রহ করে site_config.json পরীক্ষা" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,এ FaceTime ভিডিও apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 টি মন্তব্য DocType: Email Alert,Days Before,দিন আগে DocType: Workflow State,volume-down,শব্দ কম -apps/frappe/frappe/desk/reportview.py +262,No Tags,কোন ট্যাগ +apps/frappe/frappe/desk/reportview.py +266,No Tags,কোন ট্যাগ DocType: DocType,List View Settings,সেটিংস তালিকা দৃশ্য DocType: Email Account,Send Notification to,বিজ্ঞপ্তি পাঠাতে DocType: DocField,Collapsible,বন্ধ হইতে সক্ষম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,সংরক্ষিত apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,আপনি সাহায্য প্রয়োজন কি? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,নির্বাচন করার জন্য বিকল্প. একটি নতুন লাইন প্রতিটি বিকল্প. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? DocType: Workflow State,music,সঙ্গীত apps/frappe/frappe/www/qrcode.html +3,QR Code,QR কোড apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,সর্বশেষ সংশোধিত তারিখ DocType: Web Page,Settings,সেটিংস apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE উল্লেখ করুন DocType: Print Format,Style Settings,স্টাইল সেটিংস -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,অধিক +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,অধিক DocType: Contact,Sales Manager,বিক্রয় ব্যবস্থাপক -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,পুনঃনামকরণ +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,পুনঃনামকরণ DocType: Print Format,Format Data,বিন্যাসে তথ্য -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,মত +apps/frappe/frappe/utils/bot.py +91,Like,মত DocType: Customize Form Field,Customize Form Field,ফরম ক্ষেত্র কাস্টমাইজ DocType: OAuth Client,Grant Type,গ্রান্ট প্রকার apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,কোনো ব্যবহারকারীর দ্বারা পাঠযোগ্য যা দস্তাবেজ চেক apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,তালিকা অ্যাপ্লিকেশন অনুমতি দেওয়া হয় না DocType: Deleted Document,Hub Sync ID,হাব সিঙ্ক আইডি -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ইমেল ডোমেন এই অ্যাকাউন্টের জন্য কনফিগার করা না থাকে, এক তৈরি করতে চান?" DocType: User,Reset Password Key,পাসওয়ার্ড রিসেট করুন কী DocType: Email Account,Enable Auto Reply,অটো উত্তর সক্রিয় @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,নূন্যতম পাসওয়ার্ড স্কোর DocType: DocType,Fields,ক্ষেত্রসমূহ DocType: System Settings,Your organization name and address for the email footer.,ইমেল পাদচরণ জন্য আপনার প্রতিষ্ঠানের নাম ও ঠিকানা. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,মূল ছক +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,মূল ছক apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 ব্যাকআপ সম্পূর্ণ! apps/frappe/frappe/config/desktop.py +60,Developer,ডেভেলপার apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,নির্মিত @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,শুধু একবার সেট DocType: Email Queue Recipient,Email Queue Recipient,ইমেল সারি প্রাপক DocType: Address,Nagaland,নাগাল্যান্ডের apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,ইউজারনেম {0} আগে থেকেই আছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},আপনার ঠিকানা টেমপ্লেট মধ্যে একটি ত্রুটি আছে {0} DocType: Footer Item,"target = ""_blank""",টার্গেট = "_blank" DocType: Workflow State,hdd,HDD @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,উচ্চ DocType: S3 Backup Settings,Secret Access Key,গোপন অ্যাক্সেস কী apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,পুরুষ -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP সিক্রেট রিসেট করা হয়েছে। পরবর্তী লগইনতে পুনরায় নিবন্ধীকরণের প্রয়োজন হবে। +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP সিক্রেট রিসেট করা হয়েছে। পরবর্তী লগইনতে পুনরায় নিবন্ধীকরণের প্রয়োজন হবে। DocType: Communication,From Full Name,পূর্ণ নাম থেকে apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},আপনি রিপোর্ট করতে এক্সেস আছে না: {0} DocType: User,Send Welcome Email,স্বাগতম ইমেইল পাঠান -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায়নি। দয়া করে সেটআপ> মুদ্রণ এবং ব্রান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,ফিল্টার অপসারণ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,ফিল্টার অপসারণ DocType: Address,Daman and Diu,দমন ও দিউ DocType: Address,Personal,ব্যক্তিগত -apps/frappe/frappe/config/setup.py +111,Bulk Rename,বাল্ক পুনঃনামকরণ +apps/frappe/frappe/config/setup.py +118,Bulk Rename,বাল্ক পুনঃনামকরণ DocType: Email Queue,Show as cc,সিসি হিসেবে দেখান DocType: DocField,Heading,শীর্ষক DocType: Workflow State,resize-vertical,পুনরায় আকার-উল্লম্ব -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. আপলোড DocType: Contact Us Settings,Introductory information for the Contact Us Page,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য পরিচায়ক তথ্য DocType: Print Style,CSS,সিএসএস DocType: Workflow State,thumbs-down,হতাশা @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,বৈশ্বিক অনুসন্ধ DocType: Workflow State,indent-left,ইন্ডেন্ট-বাম apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,এটা এই ফাইলটি মোছার জন্য ঝুঁকিপূর্ণ: {0}. আপনার সিস্টেম ম্যানেজার সাথে যোগাযোগ করুন. DocType: Currency,Currency Name,মুদ্রার নাম -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,কোন ইমেল +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,কোন ইমেল DocType: Report,Javascript,জাভাস্ক্রিপ্ট DocType: File,Content Hash,বিষয়বস্তু হ্যাশ DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,দোকান বিভিন্ন ইনস্টল Apps এর সর্বশেষ সংস্করণ JSON. এটা রিলিজ নোট দেখানোর জন্য ব্যবহৃত হয়. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","স্ট্যান্ডার্ড DOCTYPE ডিফল্ট মুদ্রণ বিন্যাসে থাকতে পারে না, কাস্টমাইজ ফর্মটি ব্যবহার" DocType: Report,Query,প্রশ্ন DocType: DocType,Sort Order,সজ্জাক্রম -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় DocType: Custom Field,Select the label after which you want to insert new field.,"আপনি নতুন ক্ষেত্র সন্নিবেশ করতে চান, যা পরে ট্যাগ নির্বাচন করুন." ,Document Share Report,ডকুমেন্ট শেয়ার প্রতিবেদন DocType: User,Last Login,সর্বশেষ লগইন -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,স্তম্ভ DocType: Custom Field,Adds a custom field to a DocType,একটি DOCTYPE একটি কাস্টম ক্ষেত্র যোগ DocType: File,Is Home Folder,হোম ফোল্ডার apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} একটি বৈধ ইমেইল ঠিকানা নয় -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,মুদ্রণের জন্য অন্তত 1 রেকর্ড নির্বাচন করুন +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,মুদ্রণের জন্য অন্তত 1 রেকর্ড নির্বাচন করুন apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',ব্যবহারকারী '{0}' ইতিমধ্যে ভূমিকা রয়েছে '{1}' DocType: System Settings,Two Factor Authentication method,দুটি ফ্যাক্টর প্রমাণীকরণ পদ্ধতি apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},এদের সাথে শেয়ার {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,সদস্যতা ত্যাগ করুন -DocType: Communication,Reference Name,রেফারেন্স নাম +DocType: Activity Log,Reference Name,রেফারেন্স নাম apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,চ্যাট সাপোর্ট DocType: Error Snapshot,Exception,ব্যতিক্রম -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,কোন ফলাফল পাওয়া যায়নি '
DocType: Email Account,Use IMAP,ব্যবহার আইম্যাপ apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,ফ্র্যাপে সার্ভারের URL করার অনুরোধ করতে অক্ষম +DocType: Activity Log,Activity Log,কার্য বিবরণ DocType: Integration Request,Authorized,অনুমোদিত DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,একা ধরন যুক্ত শুধুমাত্র একটি রেকর্ড কোন টেবিল আছে. মূল্যবোধ tabSingles মধ্যে সংরক্ষণ করা হয় DocType: System Settings,Enable Password Policy,পাসওয়ার্ড নীতি সক্ষম @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","[{: apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},ফিল্ড টাইপ জন্য পরিবর্তন করা যাবে না {0} DocType: Workflow,Rules defining transition of state in the workflow.,কর্মপ্রবাহ মধ্যে রাষ্ট্র রূপান্তর সংজ্ঞা বিধি. DocType: File,Folder,ফোল্ডার +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,CSV এবং এক্সেল ফাইল থেকে আমদানি / রপ্তানি তথ্য। DocType: DocField,Index,সূচক DocType: Email Group,Newsletter Manager,নিউজলেটার ম্যানেজার apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,বিকল্প 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} এ {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} এ {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,অনুরোধ সময় ত্রুটির লগ ইন করুন. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} সফলভাবে ইমেইল গ্রুপে যোগ করা হয়েছে. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,টেমপ্লেটের মধ্যে পূর্বনির্ধারিত যা হেডার সম্পাদনা করবেন না +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,টেমপ্লেটের মধ্যে পূর্বনির্ধারিত যা হেডার সম্পাদনা করবেন না apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},লগইন যাচাই কোড {} DocType: Address,Uttar Pradesh,উত্তর প্রদেশ DocType: Address,Pondicherry,পুদুচেরি -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,ফাইল (গুলি) বেসরকারী বা পাবলিক করুন? +DocType: Data Import,Import Status,আমদানি স্থিতি +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,ফাইল (গুলি) বেসরকারী বা পাবলিক করুন? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},পাঠাতে তফসিলি {0} DocType: Kanban Board Column,Indicator,ইনডিকেটর DocType: DocShare,Everyone,সবাই DocType: Workflow State,backward,অনুন্নত -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" DocType: Email Queue,Add Unsubscribe Link,যোগ আনসাবস্ক্রাইব লিঙ্ক apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,এখনো কোন মন্তব্য নেই. একটি নতুন আলোচনা শুরু করুন. DocType: Workflow State,share,ভাগ apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","আপনার সাবস্ক্রিপশন {0} এ উত্তীর্ণ হয়েছে. পুনর্নবীকরণ জন্য, দয়া করে {1} একটি ইমেইল পাঠান." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,লেনদেনের জন্য সিরিজ সংখ্যায়ন সেট. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,লেনদেনের জন্য সিরিজ সংখ্যায়ন সেট. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,আপনি যে আপনার তৈরি করা কিছু পছন্দ না করতে পারেন apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","সি সি, বিসিসি এবং স্ট্যান্ডার্ড উত্তর" DocType: User,Last IP,সর্বশেষ আইপি @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,ডেটা মা DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,একটি ব্যবহারকারীর জন্য নির্ধারিত ব্যবহারকারীর অনুমতি উপর ভিত্তি করে ফিল্টার রেকর্ড DocType: Note,Notify Users On Every Login,প্রতিটি লগইনে অনুপ্রেরিত আমাকে অবহিত ব্যবহারকারীরা DocType: PayPal Settings,API Password,এপিআই পাসওয়ার্ড -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,পাইথন মডিউল লিখুন বা সংযোজক প্রকার নির্বাচন করুন +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,পাইথন মডিউল লিখুন বা সংযোজক প্রকার নির্বাচন করুন apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,FIELDNAME কাস্টম ক্ষেত্র জন্য নির্ধারণ করে না apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,সর্বশেষ আপডেট করা হয়েছে apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,অনুমোদিত নয়. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,ফাইলটিকে {0} {1} এর জন্য মুছে ফেলা যাবে না যার জন্য আপনার অনুমতি নেই apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,শ্রীমতি DocType: Website Theme,Background Color,পিছনের রঙ -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,ইমেইল পাঠানোর সময় কিছু সমস্যা হয়েছে. অনুগ্রহ করে আবার চেষ্টা করুন. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,ইমেইল পাঠানোর সময় কিছু সমস্যা হয়েছে. অনুগ্রহ করে আবার চেষ্টা করুন. DocType: Portal Settings,Portal Settings,পোর্টাল সেটিংস DocType: Data Migration Mapping,Mapping,ম্যাপিং DocType: Web Page,0 is highest,0 সর্বোচ্চ @@ -667,6 +668,7 @@ DocType: Language,Language Name,ভাষার নাম DocType: Email Group Member,Email Group Member,ইমেল গ্রুপের সদস্য DocType: Email Alert,Value Changed,মান পরিবর্তন apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},সদৃশ নাম {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,পুনরায় চেষ্টা করা DocType: Web Form Field,Web Form Field,ওয়েব ফরম ক্ষেত্র apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,প্রতিবেদন নির্মাতা লুকান ক্ষেত্রের apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML সম্পাদনা করুন @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,দোকান DocType: DocField,Button,বোতাম apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} এখন {1} DOCTYPE জন্য ডিফল্ট মুদ্রণ ফরম্যাট -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,আর্কাইভ কলাম +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,আর্কাইভ কলাম DocType: Email Account,Default Outgoing,ডিফল্ট আউটগোয়িং DocType: Workflow State,play,খেলা apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,নিচে আপনার নিবন্ধীকরণ সম্পূর্ণ করার জন্য লিংকে ক্লিক করুন এবং একটি নতুন পাসওয়ার্ড সেট apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,যোগ করা হয়নি -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,কোনো ইমেল অ্যাকাউন্ট বরাদ্দ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,কোনো ইমেল অ্যাকাউন্ট বরাদ্দ DocType: Contact Us Settings,Contact Us Settings,আমাদের সেটিংস যোগাযোগ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,অনুসন্ধান করা হচ্ছে ... DocType: Workflow State,text-width,টেক্সট-প্রস্থ @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,কমিউনিকেশন চ DocType: Address,Rajasthan,রাজস্থান apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,প্রতিবেদন নির্মাতা রিপোর্ট প্রতিবেদন নির্মাতা দ্বারা সরাসরি পরিচালিত হয়. কিছুই করার নাই. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,আপনার ইমেল ঠিকানা যাচাই করুন -apps/frappe/frappe/model/document.py +1039,none of,কেউ +apps/frappe/frappe/model/document.py +1045,none of,কেউ apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,আমাকে একটি কপি পাঠান DocType: Dropbox Settings,App Secret Key,অ্যাপ সিক্রেট কী DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,ওয়েব সাইট apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,চেক আইটেম ডেস্কটপে প্রদর্শিত হবে -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban বোর্ড {0} অস্তিত্ব নেই. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban বোর্ড {0} অস্তিত্ব নেই. +DocType: Data Import,Data Import,ডেটা আমদানি apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} বর্তমানে এই ডকুমেন্ট দেখছেন DocType: ToDo,Assigned By Full Name,পূর্ণ নাম দ্বারা নিয়োগ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} আপডেট করা হয়েছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} দিন আগে DocType: Email Account,Awaiting Password,প্রতীক্ষমাণ পাসওয়ার্ড DocType: Address,Address Line 1,ঠিকানা লাইন 1 DocType: Custom DocPerm,Role,ভূমিকা apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,সেটিংস... -apps/frappe/frappe/utils/data.py +459,Cent,সেন্ট -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,ইমেল রচনা -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","দেখাবার জন্য যুক্তরাষ্ট্র (যেমন খসড়া অনুমোদিত, বাতিল হয়েছে)." +apps/frappe/frappe/utils/data.py +464,Cent,সেন্ট +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,ইমেল রচনা +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","দেখাবার জন্য যুক্তরাষ্ট্র (যেমন খসড়া অনুমোদিত, বাতিল হয়েছে)." DocType: Print Settings,Allow Print for Draft,খসড়া প্রিন্ট মঞ্জুর করুন apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,সেট পরিমাণ -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন DocType: Contact,Unsubscribed,সদস্যতামুক্তি apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,পৃষ্ঠা এবং প্রতিবেদনের জন্য কাস্টম ভূমিকা সেট apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,নির্ধারণ: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,IMAP অবস্থা প্রতিক্রিয়ায় UIDVALIDITY পাওয়া খুঁজে পাওয়া যাচ্ছে না -,Data Import Tool,ডেটা আমদানি টুল DocType: Address,Dadra and Nagar Haveli,দাদরা ও নগর হাভেলি -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেট আপ করুন> ইমেইল> ইমেল অ্যাকাউন্ট apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,আপলোড ফাইল কয়েক সেকেন্ডের জন্য দয়া করে অপেক্ষা করুন. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,তোমার ছবি সংযুক্ত +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,তোমার ছবি সংযুক্ত apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,সারি মূল্যবোধ পরিবর্তিত DocType: Workflow State,Stop,থামুন DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,আপনি খুলতে চান পাতা লিংক. আপনি এটি একটি গ্রুপ ঊর্ধ্বতন করতে চান তাহলে ফাঁকা ছেড়ে দিন. @@ -747,7 +748,7 @@ DocType: Report,Script Report,স্ক্রিপ্ট প্রতিবে DocType: OAuth Authorization Code,Scopes,সুযোগগুলি DocType: About Us Settings,Company Introduction,কোম্পানি পরিচিতি DocType: DocField,Length,লম্বা -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,পুনরুদ্ধার করুন বা স্থায়ীভাবে একটি নথি মুছে দিন। +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,পুনরুদ্ধার করুন বা স্থায়ীভাবে একটি নথি মুছে দিন। apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite পরীক্ষা সাফল্যের সঙ্গে সম্পাদিত। GSuite ইন্টিগ্রেশন সঠিকভাবে কনফিগার করা DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,অ্যাপ {0} সরানো DocType: Custom DocPerm,Apply User Permissions,ব্যবহারকারীর অনুমতি প্রয়োগ DocType: User,Modules HTML,মডিউল এইচটিএমএল -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয় +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয় DocType: DocType,Other Settings,অন্যান্য সেটিংস্ DocType: Data Migration Connector,Frappe,ফ্র্যাপে apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,অপঠিত হিসাবে চিহ্নিত apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} নির্ধারিত নয় -DocType: Authentication Log,Operation,অপারেশন +DocType: Activity Log,Operation,অপারেশন DocType: Customize Form,Change Label (via Custom Translation),ট্যাগ পরিবর্তন করুন (কাস্টম অনুবাদ মাধ্যমে) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},কোন অনুমতি {0} {1} {2} DocType: Address,Permanent,স্থায়ী apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,দ্রষ্টব্য: অন্য অনুমতি নিয়ম জন্যও প্রযোজ্য হতে পারে apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},অ্যাক্সেস করতে অনুমতিপ্রাপ্ত না {0} সঙ্গে {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","এটি পরীক্ষা করা হলে, বৈধ ডেটা দিয়ে সারিগুলি আমদানি করা হবে এবং অবৈধ সারিগুলি নতুন ফাইলের মধ্যে ডাম্প করা হবে।" apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,আপনার ব্রাউজারে এই দৃশ্য DocType: DocType,Search Fields,অনুসন্ধান ক্ষেত্র DocType: System Settings,OTP Issuer Name,OTP প্রবর্তক নাম @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth এর বিয়ার apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,নির্বাচিত কোন দলীল apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ডাঃ DocType: Event,Event,ঘটনা -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"স্ট্যান্ডার্ড ক্ষেত্রের মুছে ফেলা যায় না. আপনি চান, আপনি তা লুকিয়ে রাখতে পারেন" DocType: Top Bar Item,For top bar,শীর্ষ বারের জন্য apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ব্যাকআপের জন্য সারিবদ্ধ আপনি ডাউনলোড লিঙ্কের সাথে একটি ইমেল পাবেন @@ -789,35 +792,34 @@ DocType: Workflow State,minus,ঋণচিহ্ন DocType: S3 Backup Settings,Bucket,বালতি apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,সার্ভার সমস্যা: আপনার সার্ভার লগ পরীক্ষা বা কারিগরি সহায়তা সাথে যোগাযোগ করুন. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,স্বাগতম ইমেইল পাঠানো -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,প্রথম ব্যবহারের জন্য সিস্টেম প্রস্তুত করা যাক. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,প্রথম ব্যবহারের জন্য সিস্টেম প্রস্তুত করা যাক. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,আলোচিত apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,ইতিমধ্যে নিবন্ধভুক্ত DocType: System Settings,Float Precision,ফ্লোট যথার্থ apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,কেবলমাত্র প্রশাসক সম্পাদনা করতে পারেন -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,ফাইলের নাম +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,ফাইলের নাম DocType: DocType,Editable Grid,সম্পাদনযোগ্য গ্রিড DocType: Property Setter,Property Setter,প্রপার্টি গোয়েন্দা DocType: Web Form,Allow Print,প্রিন্ট করার অনুমতি দিন apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,কোনো অ্যাপ্লিকেশন ইনস্টল করা apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,হিসাবে বাধ্যতামূলক ক্ষেত্র চিহ্ন DocType: Communication,Clicked,ক্লিক -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} DocType: User,Google User ID,গুগল ব্যবহারকারী আইডি apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,পাঠাতে তফসিলি DocType: DocType,Track Seen,ট্র্যাক Seen apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,এই পদ্ধতি শুধুমাত্র একটি মন্তব্য তৈরি করতে ব্যবহার করা যেতে পারে DocType: Kanban Board Column,orange,কমলা -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,কোন {0} পাওয়া -apps/frappe/frappe/config/setup.py +245,Add custom forms.,নিজস্ব ফর্ম যুক্ত করো. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,কোন {0} পাওয়া +apps/frappe/frappe/config/setup.py +252,Add custom forms.,নিজস্ব ফর্ম যুক্ত করো. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} মধ্যে {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,এই দলিল পেশ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,সিস্টেম অনেক পূর্ব নির্ধারিত ভূমিকা প্রদান করে. আপনি তীক্ষ্ণ স্বরূপ অনুমতি সেট করতে নতুন ভূমিকা যোগ করতে পারেন. DocType: Communication,CC,সিসি DocType: Country,Geo,জিও -DocType: Domain Settings,Domains,ডোমেইন +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,ডোমেইন DocType: Blog Category,Blog Category,ব্লগ বিভাগ apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,নিম্নলিখিত শর্ত ব্যর্থ কারণ ম্যাপ করা যাবে না: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,ভূমিকা এইচটিএমএল apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,প্রথম একটি ব্র্যান্ড ইমেজ নির্বাচন করুন. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,সক্রিয় @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,নীল apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,সব কাস্টমাইজেশন সরিয়ে নেওয়া হবে. অনুগ্রহ করে নিশ্চিত করুন. DocType: Page,Page HTML,পৃষ্ঠা এইচটিএমএল -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,আরও নোড শুধুমাত্র 'গ্রুপ' টাইপ নোড অধীনে তৈরি করা যেতে পারে +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,আরও নোড শুধুমাত্র 'গ্রুপ' টাইপ নোড অধীনে তৈরি করা যেতে পারে DocType: SMS Parameter,Header,শিরোলেখ -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},অজানা কলাম: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},অজানা কলাম: {0} DocType: Email Alert Recipient,Email By Role,ইমেল ভূমিকা apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,ভূমিকা {0} সঙ্গে ব্যবহারকারী: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},ইনস্টল অ্যাপ্লিকেশন {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,সিস্টেমের ম DocType: Communication,Label,লেবেল apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","টাস্ক {0}, আপনি {1}, বন্ধ করা হয়েছে নির্ধারিত হয়." DocType: User,Modules Access,মডিউল প্রবেশ -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,এই উইন্ডোটি বন্ধ করুন দয়া করে +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,এই উইন্ডোটি বন্ধ করুন দয়া করে DocType: Print Format,Print Format Type,মুদ্রণ বিন্যাস ধরন DocType: Newsletter,A Lead with this Email Address should exist,এই ইমেইল ঠিকানা দিয়ে একটি লিড এখোনো apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,ওয়েব জন্য ওপেন সোর্স অ্যাপ্লিকেশন DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",একটি "গুগল ওয়েব ফন্ট" নামে যোগ যেমন "ওপেন Sans" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,অনুরোধ সময় শেষ হয়েছে +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,ডোমেন সক্ষম / অক্ষম করুন DocType: Role Permission for Page and Report,Allow Roles,ভূমিকা মঞ্জুর করুন DocType: DocType,Hide Toolbar,টুলবার লুকান DocType: User,Last Active,সক্রিয় সর্বশেষ DocType: Email Account,SMTP Settings for outgoing emails,বহির্গামী ইমেইল জন্য SMTP সেটিংস -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,আমদানি ব্যর্থ apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,আপনার পাসওয়ার্ড আপডেট করা হয়েছে. এখানে আপনার তৈরিকৃত খেলার পাসওয়ার্ড DocType: Email Account,Auto Reply Message,স্বয়ংক্রিয় উত্তর বার্তা DocType: Feedback Trigger,Condition,শর্ত -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} ঘণ্টা আগে -apps/frappe/frappe/utils/data.py +574,1 month ago,1 মাস আগে +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} ঘণ্টা আগে +apps/frappe/frappe/utils/data.py +586,1 month ago,1 মাস আগে DocType: Contact,User ID,ব্যবহারকারী আইডি DocType: Communication,Sent,প্রেরিত DocType: Address,Kerala,কেরল @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,ইয়াহু মেইল apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,আপনার সাবস্ক্রিপশন আগামীকাল এর মেয়াদ শেষ হবে. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,সংরক্ষিত! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} একটি বৈধ হেক্স রঙ নয় apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,ঠাকরূণ apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},আপডেট করা হয়েছে {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,গুরু DocType: DocType,User Cannot Create,ইউজার তৈরি করতে পারবেন না apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,ফোল্ডার {0} অস্তিত্ব নেই -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! DocType: Customize Form,Enter Form Type,ফরম প্রকার লিখুন +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,অনুপস্থিত পরামিতি Kanban বোর্ডের নাম apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,কোন রেকর্ড বাঁধা. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ফিল্ড সরান DocType: User,Send Password Update Notification,পাসওয়ার্ড আপডেট বিজ্ঞপ্তি পাঠান @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,সবুজ DocType: Custom DocPerm,Additional Permissions,অতিরিক্ত অনুমতির DocType: Email Account,Always use Account's Email Address as Sender,সর্বদা প্রেরকের হিসাবে অ্যাকাউন্টের ইমেইল ঠিকানা ব্যবহার apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,মন্তব্য করতে লগ ইন করুন -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,এই রেখার নিচের তথ্য লিখে শুরু +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,এই রেখার নিচের তথ্য লিখে শুরু apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},জন্য পরিবর্তিত মান {0} DocType: Workflow State,retweet,রিট্যুইট apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,কাস্টমাইজ করুন ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,অক্ষম DocType: Workflow State,eye-close,চোখের বন্ধ DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth এর প্রোভাইডার সেটিংস -apps/frappe/frappe/config/setup.py +257,Applications,অ্যাপ্লিকেশন +apps/frappe/frappe/config/setup.py +264,Applications,অ্যাপ্লিকেশন apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,এই সমস্যা প্রতিবেদন DocType: Custom Script,Adds a custom script (client or server) to a DocType,একটি DOCTYPE একটি কাস্টম স্ক্রিপ্ট (ক্লায়েন্ট অথবা সার্ভারের) যুক্ত করে DocType: Address,City/Town,শহর / টাউন @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,আপনার কোম্পান apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,সম্পাদনা সারি DocType: Workflow Action,Workflow Action Master,কর্মপ্রবাহ কর্ম মাস্টার DocType: Custom Field,Field Type,ক্ষেত্র প্রকার -apps/frappe/frappe/utils/data.py +489,only.,কেবল. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP গোপন শুধুমাত্র প্রশাসক দ্বারা পুনরায় সেট করা যাবে। +apps/frappe/frappe/utils/data.py +494,only.,কেবল. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP গোপন শুধুমাত্র প্রশাসক দ্বারা পুনরায় সেট করা যাবে। apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,বছর যে আপনার সাথে সংযুক্ত করা হয় এড়িয়ে চলুন. DocType: GSuite Templates,GSuite Templates,GSuite টেমপ্লেট -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,অধোগামী apps/frappe/frappe/utils/goal.py +109,Goal,লক্ষ্য apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,অবৈধ মেল সার্ভার. ত্রুটিমুক্ত এবং আবার চেষ্টা করুন. DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,চলচ্চিত্র apps/frappe/frappe/model/db_query.py +375,No permission to read {0},কোন অনুমতি পড়তে {0} apps/frappe/frappe/config/desktop.py +8,Tools,সরঞ্জাম apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,সাম্প্রতিক বছরগুলোতে এড়িয়ে চলুন. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,একাধিক রুট নোড অনুমোদিত নয়. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,একাধিক রুট নোড অনুমোদিত নয়. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","সক্রিয় করা হলে, ব্যবহারকারী তারা লগইন অবহিত করা হবে। যদি সক্ষম থাকে, তখন ব্যবহারকারীরা শুধুমাত্র একবার অবহিত করা হবে।" -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,অবৈধ {0} শর্ত +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,অবৈধ {0} শর্ত DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","যদি পরীক্ষিত, ব্যবহারকারীদের নিশ্চিত অ্যাক্সেস ডায়ালগ দেখতে পাবেন না." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,আইডি ক্ষেত্রের প্রতিবেদন ব্যবহার মান সম্পাদনা করার প্রয়োজন বোধ করা হয়. কলাম বাছাইকারি ব্যবহার আইডি ক্ষেত্র নির্বাচন করুন apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,মন্তব্য apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,নিশ্চিত করা apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,সব ভেঙ্গে @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,ব্যবহারকারীর অনুমতি সেট DocType: Email Account,Email Account Name,ইমেইল অ্যাকাউন্ট নাম apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,নির্বাচন নথি ধরনের -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,যখন ড্রপবক্স অ্যাক্সেস টোকেন জেনারেট করার কিছু ভুল হয়েছে। আরো বিস্তারিত জানার জন্য ত্রুটি লগ পরীক্ষা করুন। +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,যখন ড্রপবক্স অ্যাক্সেস টোকেন জেনারেট করার কিছু ভুল হয়েছে। আরো বিস্তারিত জানার জন্য ত্রুটি লগ পরীক্ষা করুন। DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","যোগাযোগ নিউজলেটার, বাড়ে." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","যেমন "সমর্থন", "বিক্রয়", "জেরি ইয়াং"" @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,ফেইসবুক ব্যবহারকা DocType: Workflow State,fast-forward,দ্রুত অগ্রগামী DocType: Communication,Communication,যোগাযোগ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","অর্ডার সেট, ড্র্যাগ নির্বাচন কলাম পরীক্ষা করে দেখুন." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,এই স্থায়ী ক্রিয়া এবং আপনি পূর্বাবস্থা করতে পারবেন না. চালিয়ে? DocType: Event,Every Day,প্রতিদিন DocType: LDAP Settings,Password for Base DN,বেজ ডিএন জন্য পাসওয়ার্ড apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,ছক ফিল্ড -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,কলাম উপর ভিত্তি করে +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,কলাম উপর ভিত্তি করে apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,গুগল GSuite সঙ্গে ইন্টিগ্রেশন সক্ষম চাবি লিখুন DocType: Workflow State,move,পদক্ষেপ -apps/frappe/frappe/model/document.py +1223,Action Failed,অ্যাকশন ব্যর্থ +apps/frappe/frappe/model/document.py +1229,Action Failed,অ্যাকশন ব্যর্থ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,ব্যবহারকারীর জন্য -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,হিসাবরক্ষনের তালিকা +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,হিসাবরক্ষনের তালিকা DocType: Address,Assam,আসাম -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,আপনার সদস্যতাতে আপনার {0} দিন বাকি আছে +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,আপনার সদস্যতাতে আপনার {0} দিন বাকি আছে apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,আউটগোয়িং ইমেল অ্যাকাউন্ট সঠিক নয় apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily অক্ষম করা হয়েছে apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} স্থাপন করা -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,ইমেল ঠিকানা নির্ধারণ করুন +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,ইমেল ঠিকানা নির্ধারণ করুন DocType: System Settings,Date and Number Format,তারিখ এবং সংখ্যার বিন্যাস apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,ম্যাক্স সংযুক্তি আকার {0} মেগাবাইট -apps/frappe/frappe/model/document.py +1038,one of,অন্যতম -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,দয়া করে কপি করতে ফাইল নির্বাচন +apps/frappe/frappe/model/document.py +1044,one of,অন্যতম apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,এক মুহূর্ত চেক করা হচ্ছে apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,দেখান ট্যাগ DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","প্রয়োগ যথাযথ ব্যবহারকারীর অনুমোদন পরীক্ষা করা হয় এবং ব্যবহারকারী অনুমতি একটি ব্যবহারকারীর জন্য একটি DOCTYPE জন্য সংজ্ঞায়িত হয়, তাহলে সব কাগজপত্র যেখানে লিংক মান ফাঁকা, যে ব্যবহারকারী দেখানো হবে না" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,পদক্ষেপ DocType: Workflow State,align-justify,সারিবদ্ধ-ন্যায্যতা DocType: User,Middle Name (Optional),মধ্য নাম (ঐচ্ছিক) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,অননুমোদিত -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,নিম্নলিখিত ক্ষেত্র অনুপস্থিত মানের আছে: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,আপনি কর্ম সম্পন্ন করার জন্য যথেষ্ট অনুমতি নেই +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,নিম্নলিখিত ক্ষেত্র অনুপস্থিত মানের আছে: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,আপনি কর্ম সম্পন্ন করার জন্য যথেষ্ট অনুমতি নেই apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,কোন ফলাফল নেই DocType: System Settings,Security,নিরাপত্তা apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,{0} প্রাপকদের পাঠাতে তফসিলি +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,কাটা apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},থেকে নামকরণ করা {0} থেকে {1} DocType: Currency,**Currency** Master,** ** মুদ্রা মাস্টার DocType: Email Account,No of emails remaining to be synced,অবশিষ্ট ইমেইলের কোন সিঙ্ক করার জন্য -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,আপলোড হচ্ছে +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,আপলোড হচ্ছে apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,নিয়োগ আগে নথি সংরক্ষণ করুন apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,বাগ এবং পরামর্শ পোস্ট করার জন্য এখানে ক্লিক করুন DocType: Website Settings,Address and other legal information you may want to put in the footer.,ঠিকানা এবং অন্যান্য আইনগত তথ্য আপনি পাদচরণ একটি বার্তা দেখাতে চাইবেন. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} মিনিট আগে DocType: Kanban Board Column,lightblue,হালকা নীল apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,একই ক্ষেত্র একাধিকবার প্রবেশ করে -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. কলাম নির্বাচন apps/frappe/frappe/templates/includes/list/filters.html +19,clear,পরিষ্কার apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,প্রতিদিন ঘটনা একই দিনে শেষ হবে. DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,প্রবেশ কর DocType: Web Page,Main Section,প্রধান ধারা DocType: Page,Icon,আইকন apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,5 ও 10 এর মধ্যে মান ফিল্টার -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","ইঙ্গিত: পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","ইঙ্গিত: পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,সেটআপ> ব্যবহারকারী অনুমতি ম্যানেজার apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,পিডিএফ DocType: System Settings,dd/mm/yyyy,ডিডি / MM / YYYY apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite স্ক্রিপ্ট পরীক্ষা @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,কপিরাইট apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,যাওয়া DocType: OAuth Authorization Code,Invalid,অকার্যকর DocType: ToDo,Due Date,নির্দিষ্ট তারিখ -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,কোয়ার্টার দিন +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,কোয়ার্টার দিন DocType: Social Login Keys,Google Client Secret,গুগল ক্লায়েন্ট সিক্রেট DocType: Website Settings,Hide Footer Signup,পাদলেখ সাইনআপ লুকান apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,এই দলিল বাতিল apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,এই সংরক্ষিত ও কলাম এবং ফলাফলের আসতে যেখানে একই ফোল্ডারে একটি পাইথন ফাইলটি লিখতে. DocType: DocType,Sort Field,সাজান মাঠ DocType: Razorpay Settings,Razorpay Settings,Razorpay সেটিংস -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,সম্পাদনা ফিল্টার -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,সম্পাদনা ফিল্টার +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,আরো যোগ করো DocType: System Settings,Session Expiry Mobile,সেশন মেয়াদ উত্তীর্ন মোবাইল apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,এর জন্য অনুসন্ধানের ফলাফল apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,ডাউনলোড করার জন্য নির্বাচন: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,{0} অনুমতি দেওয়া হয় তাহলে DocType: Custom DocPerm,If user is the owner,ব্যবহারকারী মালিক যদি +apps/frappe/frappe/config/integrations.py +88,Maps,মানচিত্র ,Activity,কার্যকলাপ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",সাহায্য: ব্যাংকিং ব্যবস্থায় দেশের অন্য একটি রেকর্ড Link Link URL হিসেবে "# ফরম / নোট / [নাম উল্লেখ্য]" ব্যবহার করার জন্য. (ব্যবহার করবেন না "HTTP: //") DocType: User Permission,Allow,অনুমতি দিন apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,চলুন শুরু করা যাক পুনরাবৃত্তি শব্দ এবং অক্ষর এড়ানো DocType: Communication,Delayed,বিলম্বিত -apps/frappe/frappe/config/setup.py +126,List of backups available for download,ডাউনলোডের জন্য উপলব্ধ ব্যাকআপ তালিকা +apps/frappe/frappe/config/setup.py +133,List of backups available for download,ডাউনলোডের জন্য উপলব্ধ ব্যাকআপ তালিকা apps/frappe/frappe/www/login.html +86,Sign up,নিবন্ধন করুন DocType: Test Runner,Output,আউটপুট DocType: Email Alert,Set Property After Alert,সতর্কতা পর সম্পদ সেট -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,ফরম ক্ষেত্র যুক্ত. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,ফরম ক্ষেত্র যুক্ত. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,কিছু দেখে মনে হচ্ছে এই সাইটের পেপ্যাল কনফিগারেশন সাথে ভুল। DocType: File,rgt,rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,ফাইলের ধরন DocType: Workflow State,leaf,পাতা DocType: Portal Menu Item,Portal Menu Item,পোর্টাল মেনু আইটেম DocType: Contact Us Settings,Email ID,ইমেইল আইডি +DocType: Activity Log,Keep track of all update feeds,সব আপডেট ফিডগুলির নজর রাখুন DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","যদি ব্যবহারকারীর অনুমতি প্রয়োগ প্রতিবেদন DOCTYPE জন্য পরীক্ষা করা হয় কিন্তু কোন ব্যবহারকারীর অনুমতি একটি ব্যবহারকারীর জন্য প্রতিবেদন জন্য নির্দিষ্ট করা, তারপর সব রিপোর্ট ব্যবহারকারীকে দেখানো হয়" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,Protip: যোগ Reference: {{ reference_doctype }} {{ reference_name }}
পাঠাতে নথি রেফারেন্স
apps/frappe/frappe/modules/utils.py +196,App not found,অ্যাপ্লিকেশন পাওয়া যায় না
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},তৈরি করতে পারবেন একটি {0} একটি সন্তানের দলিল বিরুদ্ধে: {1}
@@ -1898,7 +1902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,নিষ্ক্রিয়
DocType: Contact,Accounts Manager,হিসাবরক্ষক ব্যবস্থাপক
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,আপনার অর্থ প্রদান বাতিল করা হয়েছে।
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,নির্বাচন ফাইল টাইপ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,নির্বাচন ফাইল টাইপ
DocType: Help Article,Knowledge Base Editor,নলেজ বেস সম্পাদক
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,পৃষ্ঠা খুঁজে পাওয়া যায়নি
DocType: DocField,Precision,স্পষ্টতা
@@ -1925,12 +1929,12 @@ DocType: Property Setter,Property Type,সম্পত্তির প্রক
DocType: Workflow State,screenshot,স্ক্রিনশট
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,কেবলমাত্র প্রশাসক একটি স্ট্যান্ডার্ড রিপোর্ট সংরক্ষণ করতে পারবেন. নামান্তর এবং সংরক্ষণ করুন.
DocType: System Settings,Background Workers,পটভূমি ওয়ার্কার্স
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,FIELDNAME {0} মেটা বস্তুর সঙ্গে পরস্পরবিরোধী
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,FIELDNAME {0} মেটা বস্তুর সঙ্গে পরস্পরবিরোধী
DocType: Deleted Document,Data,উপাত্ত
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,নথির অবস্থা
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},আপনার তৈরি করা {0} এর {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth এর অনুমোদন কোড
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি
DocType: Social Login Keys,Frappe Client Secret,ফ্র্যাপে ক্লায়েন্ট সিক্রেট
DocType: Deleted Document,Deleted DocType,মোছা DOCTYPE
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,অনুমতি মাত্রা
@@ -1938,11 +1942,11 @@ DocType: Workflow State,Warning,সতর্কতা
DocType: Data Migration Run,Percent Complete,শতাংশ সম্পূর্ণ
DocType: Tag Category,Tag Category,ট্যাগ শ্রেণী
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","একটি গ্রুপ একই নামের সঙ্গে বিদ্যমান কারণ, আইটেম {0} উপেক্ষা!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,সাহায্য
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,সাহায্য
DocType: User,Login Before,লগইন আগে
DocType: Web Page,Insert Style,সন্নিবেশ স্টাইল
-apps/frappe/frappe/config/setup.py +262,Application Installer,আবেদন ইনস্টলার
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,নতুন রিপোর্ট নাম
+apps/frappe/frappe/config/setup.py +269,Application Installer,আবেদন ইনস্টলার
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,নতুন রিপোর্ট নাম
DocType: Workflow State,info-sign,তথ্য-চিহ্ন
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,জন্য {0} একটি তালিকা হতে পারে না মূল্য
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","এই কারেন্সি কিভাবে ফরম্যাট করা উচিত? যদি সেট না থাকে, সিস্টেম ডিফল্ট-গুলি ব্যবহার করবে"
@@ -1955,6 +1959,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,ভূমিকা অনুমতি
DocType: Help Article,Intermediate,অন্তর্বর্তী
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,খসড়া হিসাবে নথি পুনরুদ্ধার বাতিল
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {{2}} {3} {4} এর সাথে লিঙ্কযুক্ত কারণ মুছে ফেলা বা বাতিল করা যাবে না
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,পড়তে পারে
DocType: Custom Role,Response,প্রতিক্রিয়া
DocType: DocField,Geolocation,ভৌগলিক-অবস্থান
@@ -1978,8 +1983,8 @@ DocType: OAuth Client,Default Redirect URI,ডিফল্ট পুনর্চ
DocType: Email Alert,Recipients,প্রাপক
DocType: System Settings,Choose authentication method to be used by all users,সমস্ত ব্যবহারকারীদের দ্বারা ব্যবহার করা প্রমাণীকরণ পদ্ধতি চয়ন করুন
DocType: Workflow State,ok-sign,OK-সাইন
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,মোছা ডকুমেন্টস
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,CSV বিন্যাসটি কেস সংবেদনশীল
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,মোছা ডকুমেন্টস
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,CSV বিন্যাসটি কেস সংবেদনশীল
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,ডেস্কটপ আইকন আগে থেকেই আছে
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,নকল
DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং পাঠান লেটার
@@ -1987,14 +1992,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,আন্দামান ও নিকোবর দ্বীপপুঞ্জ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite ডকুমেন্ট
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,"চেক করা আবশ্যক, যা মান ক্ষেত্র উল্লেখ করুন"
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","মূল" এই সারিতে যোগ করা হবে যা প্যারেন্ট টেবিল উল্লেখ
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","মূল" এই সারিতে যোগ করা হবে যা প্যারেন্ট টেবিল উল্লেখ
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,এই ইমেলটি পাঠাতে পারবেন না আপনি এই দিনের জন্য {0} ইমেলের প্রেরণ সীমা অতিক্রম করেছেন।
DocType: Website Theme,Apply Style,শৈলী প্রয়োগ
DocType: Feedback Request,Feedback Rating,প্রতিক্রিয়া রেটিং
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,সাথে ভাগ
DocType: Help Category,Help Articles,সাহায্য প্রবন্ধ
,Modules Setup,মডিউল সেটআপ
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,শ্রেণী:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,শ্রেণী:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,আপনার অর্থ প্রদান ব্যর্থ হয়েছে।
DocType: Communication,Unshared,ভাগমুক্ত
DocType: Address,Karnataka,কর্ণাটক
@@ -2003,12 +2008,11 @@ DocType: User,Location,অবস্থান
,Permitted Documents For User,ব্যবহারকারী অনুমোদিত ডকুমেন্টস
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",আপনি "শেয়ার" অনুমতি থাকতে হবে
DocType: Communication,Assignment Completed,অ্যাসাইনমেন্ট সম্পন্ন
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},বাল্ক সম্পাদনা {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},বাল্ক সম্পাদনা {0}
DocType: Email Alert Recipient,Email Alert Recipient,ইমেইল এলার্ট প্রাপক
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,সক্রিয় নয়
DocType: About Us Settings,Settings for the About Us Page,আমাদের সম্পর্কে পৃষ্ঠার জন্য সেটিংস
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,ডোরা পেমেন্ট গেটওয়ে সেটিংস
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,ডকুমেন্ট সিলেক্ট প্রকার ডাউনলোড করতে
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,যেমন pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,রেকর্ডের ফিল্টার ক্ষেত্র ব্যবহার
DocType: DocType,View Settings,সেটিংস দেখুন
@@ -2031,6 +2035,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,বা
DocType: Unhandled Email,Unhandled Email,অপরিচালিত ইমেইল
DocType: Event,Monday,সোমবার
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,আর কীবোর্ড নিদর্শন ব্যবহার করুন
+DocType: Data Import,Don't create new records,নতুন রেকর্ড তৈরি করবেন না
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,নেস্টেড সেট ত্রুটি. প্রশাসকের সাথে যোগাযোগ করুন.
DocType: Workflow State,envelope,খাম
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,অপশন 2
@@ -2041,41 +2046,41 @@ DocType: Website Settings,Brand Image,প্রতিকি ছবি
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","উপরের ন্যাভিগেশন বারের মধ্যে, ফুটার ও লোগোর সেটআপ."
DocType: Web Form Field,Max Value,সর্বোচ্চ মূল্য
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3}
DocType: Contact,All,সব
DocType: Email Queue,Recipient,প্রাপক
DocType: Communication,Has Attachment,সংযুক্তি আছে
DocType: Address,Sales User,সেলস ব্যবহারকারী
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,ড্র্যাগ এবং ড্রপ টুল নির্মাণ ও মুদ্রণ বিন্যাস কাস্টমাইজ.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,ড্র্যাগ এবং ড্রপ টুল নির্মাণ ও মুদ্রণ বিন্যাস কাস্টমাইজ.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,বিস্তৃত করা
DocType: Address,Sikkim,সিকিম
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,সেট
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,এই প্রশ্নের সাথে শৈলী বিরত হয়
DocType: Email Alert,Trigger Method,ট্রিগার পদ্ধতি
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},অপারেটর এক হতে হবে {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},অপারেটর এক হতে হবে {0}
DocType: Dropbox Settings,Dropbox Access Token,ড্রপবক্স অ্যাক্সেস টোকেন
DocType: Workflow State,align-right,সারিবদ্ধ-ডান
DocType: Auto Email Report,Email To,ইমেইল
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,ফোল্ডার {0} ফাঁকা নয়
DocType: Page,Roles,ভূমিকা
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},ত্রুটি: VALUE নিখোঁজ {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,সেশন মেয়াদ উত্তীর্ন
DocType: Workflow State,ban-circle,নিষেধাজ্ঞা-বৃত্ত
DocType: Email Flag Queue,Unread,অপঠিত
DocType: Bulk Update,Desk,ডেস্ক
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),ফিল্টার একটি tuple অথবা তালিকার (ক তালিকায়) হবে
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),ফিল্টার একটি tuple অথবা তালিকার (ক তালিকায়) হবে
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,একটি নির্বাচন ক্যোয়ারী লিখুন. উল্লেখ্য ফলাফলের (সব তথ্য এক বারেই পাঠানো হয়) পেজড না হয়.
DocType: Email Account,Attachment Limit (MB),সংযুক্তি সীমা (মেগাবাইট)
DocType: Address,Arunachal Pradesh,অরুনাচল প্রদেশ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,সেটআপ অটো ইমেইল
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,সেটআপ অটো ইমেইল
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + নিচের
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,এই শীর্ষ -10 সাধারণ পাসওয়ার্ড.
DocType: User,User Defaults,ব্যবহারকারী ডিফল্ট
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,নতুন তৈরি
DocType: Workflow State,chevron-down,শেভ্রন-ডাউন
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),পাঠানো না ইমেইল {0} (প্রতিবন্ধী / আন-সাবস্ক্রাইব)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),পাঠানো না ইমেইল {0} (প্রতিবন্ধী / আন-সাবস্ক্রাইব)
DocType: Async Task,Traceback,ট্রেসব্যাক
DocType: Currency,Smallest Currency Fraction Value,ক্ষুদ্রতম একক ভগ্নাংশ মূল্য
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ধার্য
@@ -2095,7 +2100,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,মাইগ্রেশন আইডি ক্ষেত্র
DocType: Communication,Comment Type,মন্তব্য লিখুন
DocType: OAuth Client,OAuth Client,OAUTH ক্লায়েন্ট
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,ব্যবহারকারী
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,ব্যবহারকারী
DocType: Communication,Timeline field Name,সময়রেখা ক্ষেত্র নাম
DocType: Address,Odisha,উড়িষ্যায়
DocType: Report,Report Type,প্রতিবেদনের প্রকার
@@ -2105,7 +2110,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","ফেসবুক, গুগল, গিটহাব মাধ্যমে লগ ইন করতে পারেন কী লিখতে."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},জন্য ফাইল ফরম্যাট পড়তে অক্ষম {0}
DocType: Auto Email Report,Filter Data,ফিল্টার ডেটা
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,একটি ট্যাগ যুক্ত
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","নামের সেটিং কিছু ত্রুটি ছিল, প্রশাসকের সাথে যোগাযোগ করুন"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ইনকামিং ইমেইল একাউন্ট সঠিক নয়
@@ -2128,7 +2132,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ই
DocType: Website Theme,Link Color,লিংক রঙ
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,ব্যবহারকারী {0} অক্ষম করা যাবে না
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","প্রিয় সিস্টেম ম্যানেজার,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,তোমার দেশ
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,তোমার দেশ
DocType: Event,Sunday,রবিবার
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,গ্রিড ভিউ
DocType: Address Template,Template,টেমপ্লেট
@@ -2153,7 +2157,7 @@ DocType: DocField,Table,টেবিল
DocType: File,File Size,ফাইলের আকার
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,আপনি এই ফর্মটি আবার জমা দিলে লগইন করতে হবে
DocType: User,Background Image,পটভূমি চিত্র
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় মন্ডল ও মুদ্রা নির্বাচন"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় মন্ডল ও মুদ্রা নির্বাচন"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,মধ্যে
DocType: Async Task,Queued,সারিবদ্ধ
@@ -2167,12 +2171,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,অ্যাপ্লিকেশন অ্যাক্সেস কী
DocType: OAuth Bearer Token,Access Token,অ্যাক্সেস টোকেন
DocType: About Us Settings,Org History,অর্গ ইতিহাস
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,ব্যাকআপ ফাইলের আকার:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,ব্যাকআপ ফাইলের আকার:
DocType: Workflow,Workflow Name,কর্মপ্রবাহ নাম
DocType: DocShare,Notify by Email,ইমেইল দ্বারা সূচিত
DocType: DocField,In Standard Filter,স্ট্যান্ডার্ড ফিল্টার
DocType: Web Form,Allow Edit,সম্পাদনা মঞ্জুরি
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,লেই
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,লেই
DocType: Webhook,Doc Events,ডক ইভেন্টস
DocType: Auto Email Report,Based on Permissions For User,ব্যবহারকারীদের জন্য অনুমতি উপর ভিত্তি করে
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},বাতিল হয়েছে ডকুমেন্ট অবস্থা পরিবর্তন করা যাবে না. স্থানান্তরণ সারিতে {0}
@@ -2185,10 +2189,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ক্ষেত্র '{0}' কাস্টম ফিল্ড উল্লেখিত পর ঢোকান '{1}', লেবেল সঙ্গে '{2}', অস্তিত্ব নেই"
DocType: Workflow State,signal,সংকেত
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,সংযুক্তি আছে
DocType: DocType,Show Print First,দেখান Print প্রথম
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + পোষ্ট করতে লিখুন
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},একটি নতুন {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,নতুন ইমেল অ্যাকাউন্ট
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,নতুন ইমেল অ্যাকাউন্ট
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,ডকুমেন্ট পুনঃস্থাপিত
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,ভাষা নির্বাচন কর...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},আপনি ক্ষেত্রের জন্য 'বিকল্প' সেট করতে পারবেন না {0}
@@ -2209,13 +2214,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,আবর্জনা সরান
DocType: Web Form,Web Form Fields,ওয়েব ফরম ক্ষেত্র
DocType: Website Theme,Top Bar Text Color,শীর্ষ বার পাঠের রঙ
+DocType: Data Import,Amended From,সংশোধিত
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},সতর্কতা: অক্ষম এটি {0} এর সাথে সম্পর্কিত কোন টেবিলে {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,এই দস্তাবেজটি বর্তমানে সঞ্চালনের জন্য সারিবদ্ধ হয়. অনুগ্রহপূর্বক আবার চেষ্টা করুন
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,এই দস্তাবেজটি বর্তমানে সঞ্চালনের জন্য সারিবদ্ধ হয়. অনুগ্রহপূর্বক আবার চেষ্টা করুন
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,ফাইল '{0}' পাওয়া যায়নি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,বিভাগটি অপসারণ
DocType: User,Change Password,পাসওয়ার্ড পরিবর্তন করুন
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},অবৈধ ইমেল: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,হ্যালো!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,হ্যালো!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,ইভেন্ট শেষে শুরুর পরে হবে
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,এটি অন্যান্য সকল ডিভাইস থেকে {0} লগ আউট করবে
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},আপনি যদি একটি রিপোর্ট পেতে অনুমতি নেই: {0}
@@ -2224,26 +2230,27 @@ DocType: DocField,Allow Bulk Edit,বাল্ক সম্পাদনা ক
DocType: Blog Post,Blog Post,ব্লগ পোস্ট
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,উন্নত অনুসন্ধান
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,আপনি নিউজলেটার দেখতে অনুমতি নেই।
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","শ্রেনী 0 ডকুমেন্ট স্তর অনুমতিগুলি, \ মাঠ পর্যায় অনুমতির জন্য উচ্চ মাত্রার জন্য।"
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,ক্রমানুসার
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,তথ্য আমদানি প্রক্রিয়া চলছে হিসাবে ফর্ম সংরক্ষণ করা যাবে না।
DocType: Workflow,States,যুক্তরাষ্ট্র
DocType: Email Alert,Attach Print,প্রিন্ট সংযুক্ত
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},প্রস্তাবিত ইউজারনেম: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,দিন
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,দিন
,Modules,মডিউল
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,ডেস্কটপ আইকন সেট করুন
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,পেমেন্ট সাফল্য
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,কোন {0} মেইল
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,ফাইলগুলি আপলোড হচ্ছে ত্রুটি
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,কোন {0} মেইল
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,ফাইলগুলি আপলোড হচ্ছে ত্রুটি
DocType: OAuth Bearer Token,Revoked,প্রত্যাহার করা হয়েছে
DocType: Web Page,Sidebar and Comments,সাইডবার এবং মন্তব্যসমূহ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","আপনি একটি নথি পরে তা বাতিল এবং সংরক্ষণ সংশোধন হলে, এটা পুরানো সংখ্যা একটি সংস্করণ যে একটি নতুন নম্বর পেতে হবে."
DocType: Stripe Settings,Publishable Key,প্রকাশযোগ্য কী
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,আমদানি শুরু করুন
DocType: Workflow State,circle-arrow-left,বৃত্ত-তীর-বাম
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis ক্যাশে সার্ভার চলমান না. অ্যাডমিনিস্ট্রেটর / কারিগরি সহায়তা সাথে যোগাযোগ করুন
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,পার্টির নাম
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,পার্টির নাম
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,একটি নতুন রেকর্ড করতে
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,খোঁজ
DocType: Currency,Fraction,ভগ্নাংশ
@@ -2268,8 +2275,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,জানানোর পান
DocType: Contact,Image,ভাবমূর্তি
DocType: Workflow State,remove-sign,অপসারণ-সাইন
+DocType: Domain Settings,Domains HTML,ডোমেইন এইচটিএমএল
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,অনুসন্ধান করতে অনুসন্ধান বাক্সে কিছু লিখুন
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,"ফর্ম জন্য workflows, নির্ধারণ করুন."
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,"ফর্ম জন্য workflows, নির্ধারণ করুন."
DocType: Address,Other,অন্যান্য
DocType: S3 Backup Settings,Access Key ID,অ্যাক্সেস কী আইডি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,নতুন বিন্যাস শুরু
@@ -2282,6 +2290,7 @@ DocType: Customize Form Field,Is Custom Field,কাস্টম ক্ষেত
DocType: Workflow,"If checked, all other workflows become inactive.","চেক করা থাকলে, সব অন্যান্য workflows নিষ্ক্রিয় হয়ে."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[ট্যাগ]: [ক্ষেত্র প্রকার] / [বিকল্প]: [প্রস্থ]
DocType: Workflow State,folder-close,ফোল্ডারের-বন্ধ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,প্রতিবেদন:
DocType: Print Settings,Print taxes with zero amount,শূন্য পরিমাণ সঙ্গে করের প্রিন্ট করুন
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} এর নাম বদলানো যাবে না
DocType: Custom Script,Custom Script,কাস্টম স্ক্রিপ্ট
@@ -2293,32 +2302,35 @@ DocType: Email Flag Queue,Action,কর্ম
DocType: GSuite Settings,Script URL,স্ক্রিপ্ট URL-
apps/frappe/frappe/www/update-password.html +111,Please enter the password,পাসওয়ার্ড লিখুন
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,বাতিল নথি প্রিন্ট করতে পারবেন না
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,আপনি কলাম তৈরি করার অনুমতি দেওয়া হয় না
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,তথ্য:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,আপনি কলাম তৈরি করার অনুমতি দেওয়া হয় না
+DocType: Data Import,If you don't want to create any new records while updating the older records.,পুরোনো রেকর্ড আপডেট করার সময় আপনি যদি কোনও নতুন রেকর্ড তৈরি করতে না চান।
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,তথ্য:
DocType: Custom Field,Permission Level,অনুমতি শ্রেনী
DocType: User,Send Notifications for Transactions I Follow,আমি অনুসরণ লেনদেন জন্য বিজ্ঞপ্তি পাঠাতে
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না"
+DocType: Google Maps,Client Key,ক্লায়েন্ট কী
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,আপনি সংযুক্তি মুছে ফেলতে চান আপনি কি নিশ্চিত?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না {1} সঙ্গে সংযুক্ত করা হয় {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,তোমাকে ধন্যবাদ
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,রক্ষা
DocType: Print Settings,Print Style Preview,স্টাইল মুদ্রণের পূর্বরূপ
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,আপনি এই ওয়েব ফরম ডকুমেন্ট আপডেট করার অনুমতি দেওয়া হয় না
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,ইমেইল
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,ইমেইল
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,প্রথম ডকুমেন্ট টাইপ নির্বাচন করুন
DocType: About Us Settings,About Us Settings,আমাদের সেটিংস সম্পর্কে
DocType: Website Settings,Website Theme,ওয়েবসাইট থিম
DocType: DocField,In List View,তালিকা দেখুন
DocType: Email Account,Use TLS,ব্যবহারের জন্য TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,অবৈধ লগইন অথবা পাসওয়ার্ড
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,ফর্ম কাস্টম জাভাস্ক্রিপ্ট করো.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,SR কোন
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,ডাউনলোড টেমপ্লেট
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,ফর্ম কাস্টম জাভাস্ক্রিপ্ট করো.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,SR কোন
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না দয়া করে সেটআপ থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন> ইমেল> ইমেল অ্যাকাউন্ট
,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম
DocType: Data Migration Run,Pull Insert,ঢোকান সন্নিবেশ
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,সংযুক্তি পরিষ্কার
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,আবশ্যিক:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,আবশ্যিক:
,User Permissions Manager,ব্যবহারকারীর অনুমতি ম্যানেজার
DocType: Property Setter,New value to be set,নতুন মান সেট করা
DocType: Email Alert,Days Before or After,দিন আগে বা পরে
@@ -2328,7 +2340,7 @@ DocType: Website Settings,HTML Header & Robots,এইচটিএমএল শ
DocType: User Permission,User Permission,ব্যবহারকারীর অনুমতি
apps/frappe/frappe/config/website.py +32,Blog,ব্লগ
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,দ্বারা LDAP ইনস্টল করা হয়নি
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,তথ্য দিয়ে ডাউনলোড
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,তথ্য দিয়ে ডাউনলোড
DocType: Workflow State,hand-right,হাত-ডান
DocType: Website Settings,Subdomain,সাবডোমেন
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,OAuth এর প্রোভাইডার জন্য সেটিংস
@@ -2344,21 +2356,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,অনুগ্রহ করে একটি রেটিং নির্বাচন
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,OTP সিক্রেট রিসেট করুন
DocType: Email Account,Notify if unreplied for (in mins),(মিনিট) জন্য unreplied যদি অবহিত
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,২ দিন আগে
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,২ দিন আগে
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ব্লগ পোস্ট শ্রেণীবিভক্ত.
DocType: Workflow State,Time,সময়
DocType: DocField,Attach,জোড়া
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,প্রতিক্রিয়া অনুরোধ পাঠান শুধুমাত্র যদি অন্তত এক যোগাযোগ নথির জন্য পাওয়া যায়.
DocType: Custom Role,Permission Rules,অনুমতি বিধি
DocType: GSuite Settings,GSuite Settings,GSuite সেটিং
DocType: Address,Links,লিংক
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,দস্তাবেজ প্রকার নির্বাচন করুন।
apps/frappe/frappe/model/base_document.py +396,Value missing for,মূল্য জন্য অনুপস্থিত
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,শিশু করো
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না.
DocType: GSuite Templates,Template Name,টেম্পলেট নাম
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ডকুমেন্টের নতুন ধরনের
DocType: Custom DocPerm,Read,পড়া
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেট আপ করুন> ইমেইল> ইমেল অ্যাকাউন্ট
DocType: Address,Chhattisgarh,ছত্তিশগড়ে
DocType: Role Permission for Page and Report,Role Permission for Page and Report,পেজ এবং প্রতিবেদনের জন্য ভূমিকা অনুমতি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,সারিবদ্ধ মূল্য
@@ -2366,18 +2380,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,পুরনো প
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},দ্বারা পোস্ট {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","বিন্যাস কলামে, ক্যোয়ারী কলাম লেবেল দিতে."
DocType: Has Domain,Has Domain,ডোমেন হয়েছে
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,লুকান
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,লুকান
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,একটি একাউন্ট আছে না? নিবন্ধন করুন
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,আইডি ক্ষেত্রটি সরাতে পারে না
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না
DocType: Address,Bihar,বিহার
-DocType: Communication,Link DocType,লিংক DOCTYPE
+DocType: Activity Log,Link DocType,লিংক DOCTYPE
DocType: Social Login Keys,Social Login Keys,সামাজিক লগইন কি
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,সব কাস্টমাইজেশন সরাবেন?
DocType: Website Slideshow,Slideshow Name,ছবি নাম
DocType: Address,Andhra Pradesh,অন্ধ্র প্রদেশ
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,বাতিল হচ্ছে
DocType: DocType,Allow Rename,পুনঃনামকরণ মঞ্জুরি
-DocType: Authentication Log,Full Name,পুরো নাম
+DocType: Activity Log,Full Name,পুরো নাম
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,শিশু টেবিল অন্যান্য DocTypes একটি গ্রিড হিসাবে দেখানো হয়.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,আপনি যে পৃষ্ঠাটি খুঁজছেন অনুপস্থিত. এটা এ কারণে যে এটি সরানো হয় বা সেখানে লিংক একটি টাইপো হয় হতে পারে.
apps/frappe/frappe/www/404.html +25,Error Code: {0},ত্রুটি কোড: {0}
@@ -2407,18 +2422,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!",আমরা আপনাকে ফেরত পেতে পারেন \ যাতে আপনার ইমেইল এবং পাঠান উভয় লিখুন. ধন্যবাদ!
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,বহির্গামী ইমেইল সার্ভারের সাথে সংযোগ করা যায়নি
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,আমাদের আপডেট সাবস্ক্রাইব আপনার আগ্রহের জন্য আপনাকে ধন্যবাদ
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,কাস্টম কলাম
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,কাস্টম কলাম
DocType: Workflow State,resize-full,পুনরায় আকার-পূর্ণ
DocType: Workflow State,off,বন্ধ
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,গালাগাল প্রতিবেদন {0} নিষ্ক্রিয় করা হয়
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,নতুন রেকর্ড ঢোকাতে জন্য প্রস্তাবিত.
-DocType: Async Task,Core,মূল
+DocType: Activity Log,Core,মূল
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,অনুমতি সেট
DocType: DocField,Set non-standard precision for a Float or Currency field,একটি ভাসা বা মুদ্রা ক্ষেত্রের জন্য সেট অ মান স্পষ্টতা
DocType: Email Account,Ignore attachments over this size,এই আকারের উপর সংযুক্তি Ignore
DocType: Address,Preferred Billing Address,পছন্দের বিলিং ঠিকানা
apps/frappe/frappe/config/integrations.py +68,External Documents,এক্সটার্নাল ডকুমেন্টস
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} বছর (গুলি) আগে
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,অনেকগুলি এক অনুরোধে লিখেছেন. ছোট অনুরোধ পাঠান
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,মান পরিবর্তিত
DocType: Workflow State,arrow-up,তীর-আপ
@@ -2426,10 +2439,9 @@ DocType: OAuth Bearer Token,Expires In,মেয়াদ শেষ
DocType: DocField,Allow on Submit,জমা দিন মঞ্জুরি দিন
DocType: DocField,HTML,এইচটিএমএল
DocType: Error Snapshot,Exception Type,ব্যতিক্রম ধরণ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,কলাম চয়ন
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,কলাম চয়ন
DocType: Web Page,Add code as <script>,<Script> হিসাবে কোড যোগ
DocType: Webhook,Headers,শিরোলেখ
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,নির্বাচন ধরন
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,অ্যাপ্লিকেশন অ্যাক্সেস কী এবং অ্যাপ সিক্রেট কী জন্য মান লিখুন দয়া করে
DocType: Web Form,Accept Payment,পেমেন্ট গ্রহণ করুন
apps/frappe/frappe/config/core.py +62,A log of request errors,অনুরোধ ত্রুটি লগ
@@ -2437,7 +2449,7 @@ DocType: Report,Letter Head,চিঠি মাথা
DocType: DocType,Quick Entry,দ্রুত এন্ট্রি
DocType: Web Form,Button Label,বোতাম ট্যাগ
DocType: Website Theme,UPPERCASE,য়ের বড়হাতের অক্ষর ছোটহাতের
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} নির্বাচিত আইটেম
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} নির্বাচিত আইটেম
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,সাসপেন্ড পাঠানো
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,পার্শ্বদন্ডে থেকে ড্র্যাগ উপাদান যোগ করার জন্য. আবর্জনা থেকে তাদের টানুন.
DocType: Workflow State,resize-small,পুনরায় আকার-ছোট
@@ -2463,21 +2475,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},রপ্
DocType: Workflow State,Edit,সম্পাদন করা
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,অনুমতি সেটআপ> ভূমিকা অনুমতি ম্যানেজার মাধ্যমে পরিচালিত হতে পারে
DocType: Contact Us Settings,Pincode,পিনকোড
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,কোন খালি কলাম ফাইলে আছে দয়া করে নিশ্চিত করুন.
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,কোন খালি কলাম ফাইলে আছে দয়া করে নিশ্চিত করুন.
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,আপনার প্রোফাইল একটি ইমেইল ঠিকানা আছে কিনা তা নিশ্চিত করুন
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,আপনি এই ফর্মটি আবার এ অসংরক্ষিত পরিবর্তন রয়েছে. আপনি অবিরত করার পূর্বে সংরক্ষণ করুন.
DocType: Address,Telangana,তেলেঙ্গানা
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট
DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক শ্রেণী
DocType: User,User Image,ব্যবহারকারী চিত্র
apps/frappe/frappe/email/queue.py +336,Emails are muted,ইমেইল নিঃশব্দ
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + আপ
DocType: Website Theme,Heading Style,শিরোনাম শৈলী
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,এই নামের একটি নতুন প্রকল্প তৈরি করা হবে
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,1 সপ্তাহ আগে
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,এই নামের একটি নতুন প্রকল্প তৈরি করা হবে
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,1 সপ্তাহ আগে
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,আপনি এই অ্যাপ্লিকেশন ইনস্টল করা যাবে না
DocType: Communication,Error,ভুল
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,ইমেল পাঠাবেন না.
+DocType: Data Import,Ignore encoding errors,এনকোডিং ত্রুটিগুলি উপেক্ষা করুন
DocType: DocField,Column Break,কলাম বিরতি
DocType: Event,Thursday,বৃহস্পতিবার
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,আপনি এই ফাইলটি অ্যাক্সেস করতে অনুমতি নেই
@@ -2504,7 +2516,6 @@ DocType: Webhook,Webhook Request,ওয়েবহক অনুরোধ
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,প্রকাশক
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ব্যর্থ: {0} থেকে {1}: {2}
DocType: Data Migration Mapping,Mapping Type,ম্যাপিং প্রকার
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,আবশ্যিক নির্বাচন
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ব্রাউজ করুন
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","প্রতীক, সংখ্যা, বা বড় হাতের অক্ষর জন্য কোন প্রয়োজন নেই."
DocType: DocField,Currency,মুদ্রা
@@ -2514,10 +2525,11 @@ DocType: Async Task,Running,চলমান
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,পাসওয়ার্ড রিসেট করুন
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,অনুগ্রহ করে বেশি {0} গ্রাহক যোগ করার জন্য আপগ্রেড
DocType: Workflow State,hand-left,হাত-বাম
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না
+DocType: Data Import,If you are updating/overwriting already created records.,আপনি যদি ইতিমধ্যে তৈরি রেকর্ডগুলি আপলোড / ওভাররাইট করছেন
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না
DocType: Email Account,Use SSL,ব্যবহারের SSL- র
DocType: Workflow State,play-circle,খেলার-বৃত্ত
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",অবৈধ "নির্ভর_অন" এক্সপ্রেশন
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",অবৈধ "নির্ভর_অন" এক্সপ্রেশন
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,সম্পাদনা করুন প্রিন্ট বিন্যাস নির্বাচন
DocType: Address,Shipping,পরিবহন
DocType: Workflow State,circle-arrow-down,বৃত্ত-তীর-ডাউন
@@ -2529,25 +2541,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,তীর-ডান
DocType: Workflow State,Workflow state represents the current state of a document.,কর্মপ্রবাহ রাষ্ট্র একটি নথির বর্তমান রাষ্ট্র প্রতিনিধিত্ব করে.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,টোকেন অনুপস্থিত
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,দ্রষ্টব্য: পরিবর্তন পৃষ্ঠার নাম এই পৃষ্ঠাটিতে পূর্ববর্তী URL ভঙ্গ করবে।
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,দ্রষ্টব্য: পরিবর্তন পৃষ্ঠার নাম এই পৃষ্ঠাটিতে পূর্ববর্তী URL ভঙ্গ করবে।
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},সরানো হয়েছে {0}
DocType: SMS Settings,SMS Settings,এসএমএস সেটিংস
DocType: Company History,Highlight,লক্ষণীয় করা
DocType: OAuth Provider Settings,Force,বল
DocType: DocField,Fold,ভাঁজ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,ঊর্ধ্বগামী
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,স্ট্যান্ডার্ড মুদ্রণ বিন্যাস আপডেট করা যাবে না
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,হারানো
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,অনুগ্রহ করে নির্দিষ্ট করুন
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,অনুগ্রহ করে নির্দিষ্ট করুন
DocType: Communication,Bot,বট
DocType: Help Article,Help Article,সহায়তা নিবন্ধ
DocType: Page,Page Name,পৃষ্ঠার নাম
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,সাহায্য: মাঠ প্রোপার্টি
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,আমদানি করা হচ্ছে ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,আনজিপ
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},সারিতে ভুল মান {0}: {1} {2} হতে হবে {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},সারিতে ভুল মান {0}: {1} {2} হতে হবে {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},লগইন ডকুমেন্ট খসড়া ফিরে রূপান্তরিত করা যাবে না. স্থানান্তরণ সারিতে {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},মুছে ফেলা হচ্ছে {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},মুছে ফেলা হচ্ছে {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,সম্পাদনা করুন অথবা একটি নতুন বিন্যাস শুরু করার একটি বিদ্যমান বিন্যাস নির্বাচন করুন.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},নির্মিত কাস্টম ফিল্ড {0} মধ্যে {1}
DocType: System Settings,Time Zone,সময় অঞ্চল
@@ -2563,16 +2573,19 @@ DocType: Workflow State,Home,বাড়ি
DocType: OAuth Provider Settings,Auto,অটো
DocType: System Settings,User can login using Email id or User Name,ব্যবহারকারী ইমেল আইডি বা ব্যবহারকারী নাম ব্যবহার করে লগইন করতে পারেন
DocType: Workflow State,question-sign,প্রশ্ন-চিহ্ন
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},{0} আগে কলাম ঢোকান
DocType: Email Account,Add Signature,সাক্ষর যুক্ত
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,এই কথোপকথনটি ছেড়ে গেছে
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,সেট করা হয়নি
,Background Jobs,পটভূমি জবস
DocType: ToDo,ToDo,করতে
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,সেটআপ> ব্যবহারকারী
DocType: DocField,No Copy,কোন কপি
DocType: Workflow State,qrcode,QRCode
+DocType: Data Import,Submit after importing,আমদানি করার পরে জমা দিন
apps/frappe/frappe/www/login.html +31,Login with LDAP,দ্বারা LDAP দিয়ে লগইন করুন
DocType: Web Form,Breadcrumbs,Breadcrumbs
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,মালিক যদি
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,মালিক যদি
DocType: Data Migration Mapping,Push,ধাক্কা
DocType: OAuth Authorization Code,Expiration time,মেয়াদ অতিক্রান্ত হওয়ার সময়
DocType: Web Page,Website Sidebar,ওয়েবসাইট সাইডবার
@@ -2588,6 +2601,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,মুদ্রণ সেটিংস
DocType: Page,Yes,হাঁ
DocType: DocType,Max Attachments,সর্বোচ্চ সংযুক্তি
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,ক্লায়েন্ট কী প্রয়োজন
DocType: Calendar View,End Date Field,শেষ তারিখ ক্ষেত্র
DocType: Desktop Icon,Page,পৃষ্ঠা
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},খুঁজে পাওয়া যায়নি {0} মধ্যে {1}
@@ -2598,18 +2612,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},মূ
DocType: Feedback Request,Is Manual,ম্যানুয়াল
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","স্টাইল বাটন রঙ প্রতিনিধিত্ব: সাফল্য - সবুজ, বিপদ - লাল, বিপরীত - কালো, প্রাথমিক - ডার্ক ব্লু, তথ্য - যে হাল্কা নীল, সতর্কবাণী - কমলা"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,কোন প্রতিবেদন লোডেড. / [প্রতিবেদন নাম] একটি রিপোর্ট চালানোর ক্যোয়ারী-প্রতিবেদন ব্যবহার করুন.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,সারি স্থিতি
DocType: Workflow Transition,Workflow Transition,কর্মপ্রবাহ ট্র্যানজিশন
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} মাস আগে
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,দ্বারা নির্মিত
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,ড্রপবক্স সেটআপ
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,ড্রপবক্স সেটআপ
DocType: Workflow State,resize-horizontal,পুনরায় আকার-অনুভূমিক
DocType: Note,Content,বিষয়বস্তু
DocType: Data Migration Run,Push Insert,সন্নিবেশ ঢোকান
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,গ্রুপ নোড
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,গ্রুপ নোড
DocType: Communication,Notification,প্রজ্ঞাপন
DocType: DocType,Document,দলিল
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},ইতিমধ্যে ব্যবহৃত সিরিজ {0} {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,অসমর্থিত ফাইল ফর্ম্যাট
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,অসমর্থিত ফাইল ফর্ম্যাট
DocType: DocField,Code,কোড
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","সব সম্ভব কর্মপ্রবাহ যুক্তরাষ্ট্র ও কর্মপ্রবাহ ভূমিকা. Docstatus বিকল্প: 0 "সংরক্ষিত", হয় 1 "জমা" হয় এবং 2 "বাতিল" হয়"
DocType: Website Theme,Footer Text Color,পাদচরণ রং
@@ -2617,6 +2632,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,শে
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","তারা নথি অ্যাক্সেস এর জন্য প্রাথমিক হয় অর্থাত্ স্তর 0 এ অনুমতি, নথি স্তর অনুমতি আছে."
DocType: Email Alert,Print Format,মুদ্রণ বিন্যাস
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,অবৈধ পেমেন্ট গেটওয়ে পরিচয়পত্র
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,এই টেমপ্লেট ফাইলটি শুধুমাত্র কিছু সারিগুলির সাথে তৈরি করা হয়েছে যা কিছু ত্রুটি আছে। আপনি এই ফাইলটি সংশোধন এবং আমদানি করার জন্য ব্যবহার করা উচিত।
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,নথি ধরনের এবং ভূমিকা অনুমতি সেট
apps/frappe/frappe/model/meta.py +159,No Label,কোন ট্যাগ
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,আপডেট করা হচ্ছে ...
@@ -2641,15 +2657,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,উত
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),ডেস্ক অন্তর্ভুক্ত নিবন্ধসমূহ (জায়গা ধারক)
DocType: DocField,Collapsible Depends On,বন্ধ হইতে উপর নির্ভর
DocType: Print Style,Print Style Name,প্রিন্ট স্টাইল নাম
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায়নি। দয়া করে সেটআপ> মুদ্রণ এবং ব্রান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন।
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,দ্বারা
DocType: Print Settings,Allow page break inside tables,টেবিল ভিতরে পৃষ্ঠা বিরতি মঞ্জুর করুন
DocType: Email Account,SMTP Server,SMTP সার্ভার
DocType: Print Format,Print Format Help,মুদ্রণ বিন্যাস সাহায্য
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,টেমপ্লেট আপডেট করুন এবং সংযোজনের আগে ডাউনলোড করা বিন্যাসে সংরক্ষণ করুন।
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,দলের সাথে
DocType: DocType,Beta,বেটা
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},পুনরুদ্ধার {0} যেমন {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","আপনি আপডেট করা হয়, "ওভাররাইট" নির্বাচন করুন অন্য ভাষার বিদ্যমান সারি মুছে ফেলা হবে না."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","আপনি আপডেট করা হয়, "ওভাররাইট" নির্বাচন করুন অন্য ভাষার বিদ্যমান সারি মুছে ফেলা হবে না."
DocType: Event,Every Month,প্রতি মাসে
DocType: Letter Head,Letter Head in HTML,HTML এ চিঠি মাথা
DocType: Web Form,Web Form,ওয়েব ফরম
@@ -2659,15 +2675,15 @@ DocType: Print Settings,Allow Print for Cancelled,বাতিলকৃত জ
DocType: Communication,Integrations can use this field to set email delivery status,ঐক্যবদ্ধতার ইমেইল বিতরণ অবস্থা সেট এই ক্ষেত্র ব্যবহার করতে পারেন
DocType: Web Form,Web Page Link Text,ওয়েব লিংক পাতা শিরোনাম
DocType: Page,System Page,সিস্টেম পৃষ্ঠা
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","ইত্যাদি ডিফল্ট বিন্যাস, পৃষ্ঠার মাপ, মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ"
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","ইত্যাদি ডিফল্ট বিন্যাস, পৃষ্ঠার মাপ, মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ"
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,প্রস্থান
DocType: Website Settings,Include Search in Top Bar,অন্তর্ভুক্ত করুন উপরের বারে অনুসন্ধান
DocType: GSuite Settings,Allow GSuite access,GSuite অ্যাক্সেস মঞ্জুর
DocType: DocType,DESC,DESC
DocType: DocType,Naming,নামকরণ
DocType: Event,Every Year,প্রত্যেক বছর
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,সবগুলো নির্বাচন করা
-apps/frappe/frappe/config/setup.py +233,Custom Translations,কাস্টম অনুবাদগুলো
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,সবগুলো নির্বাচন করা
+apps/frappe/frappe/config/setup.py +240,Custom Translations,কাস্টম অনুবাদগুলো
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,উন্নতি
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ভূমিকা দ্বারা
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,নিখোঁজ ক্ষেত্রসমূহ
@@ -2679,14 +2695,13 @@ DocType: File,Thumbnail URL,থাম্বনেল URL টি
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,কাস্টম প্রতিবেদন
DocType: Website Script,Website Script,ওয়েবসাইট স্ক্রিপ্ট
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,আপনি নিজের প্রকাশ Google Apps স্ক্রিপ্ট ওয়েবঅ্যাপ্লিকেশনটি ব্যবহার না করেন তাহলে আপনাকে ডিফল্ট https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ব্যবহার করতে পারেন
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,ছাপানো লেনদেনের জন্য কাস্টমাইজড এইচটিএমএল টেমপ্লেট.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,ছাপানো লেনদেনের জন্য কাস্টমাইজড এইচটিএমএল টেমপ্লেট.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,ঝোঁক
DocType: Workflow,Is Active,সক্রিয়
-apps/frappe/frappe/desk/form/utils.py +92,No further records,আর কোনও রেকর্ড
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,সেটআপ> ব্যবহারকারী অনুমতি ম্যানেজার
+apps/frappe/frappe/desk/form/utils.py +103,No further records,আর কোনও রেকর্ড
DocType: DocField,Long Text,দীর্ঘ টেক্সট
DocType: Workflow State,Primary,প্রাথমিক
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},উপরে সারি পরিবর্তন করবেন না দয়া করে {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},উপরে সারি পরিবর্তন করবেন না দয়া করে {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),ফর্ম পূরণ করার পরে এই URL এ যান (শুধুমাত্র অতিথি ব্যবহারকারীদের জন্য)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,অধিক তথ্য
@@ -2698,7 +2713,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,ঘণ্টা
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,ইমেল সতর্কতা ত্রুটি
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,সাথে এই দস্তাবেজ ভাগ
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,এটা শিশুদের আছে {0} {1} পাতার একটি নোড হতে পারে না
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,এটা শিশুদের আছে {0} {1} পাতার একটি নোড হতে পারে না
DocType: Communication,Info,তথ্য
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,সংযুক্তি যোগ
DocType: Data Migration Mapping,Sync,সুসংগত
@@ -2738,7 +2753,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,পেমেন্ট গেটওয়ে
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","ব্যবহারকারীর অনুমতি প্রয়োগ পরীক্ষা, শুধুমাত্র নির্দিষ্ট রেকর্ডের জন্য একটি ভূমিকা acess দিতে. ব্যবহারকারীর অনুমতি নির্দিষ্ট রেকর্ডে যেমন ভূমিকা ব্যবহারকারীদের সীমা ব্যবহার করা হয়."
DocType: Portal Settings,Hide Standard Menu,স্ট্যান্ডার্ড মেনু লুকান
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,যুক্ত করুন / ইমেল ডোমেন পরিচালনা করুন.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,যুক্ত করুন / ইমেল ডোমেন পরিচালনা করুন.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},জমা দেওয়ার আগে বাতিল করতে পারেন না. দেখুন ট্র্যানজিশন {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,মুদ্রণ বিন্যাস {0} নিষ্ক্রিয় করা হয়
DocType: Email Alert,Send days before or after the reference date,আগে বা রেফারেন্স তারিখ পরে দিন পাঠান
@@ -2747,7 +2762,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,মূল্
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,যাচাই করার জন্য এখানে ক্লিক করুন
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,মত আন্দাজের বদল '@' পরিবর্তে 'একটি' খুব সাহায্য না.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,আমার দ্বারা নির্ধারিত হয়
-apps/frappe/frappe/utils/data.py +480,Zero,শূন্য
+apps/frappe/frappe/utils/data.py +485,Zero,শূন্য
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,না বিকাশকারী মোডে! Site_config.json সেট অথবা 'কাস্টম' DOCTYPE করতে.
DocType: Workflow State,globe,পৃথিবী
DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
@@ -2767,11 +2782,12 @@ DocType: Module Def,Module Name,মডিউল নাম
DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE আবেদন মধ্যে একটি টেবিল / ফরম হয়.
DocType: Email Account,GMail,জিমেইল
DocType: Address,Party GSTIN,পার্টির GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} প্রতিবেদন
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} প্রতিবেদন
DocType: SMS Settings,Use POST,পোস্ট ব্যবহার করুন
DocType: Communication,SMS,খুদেবার্তা
DocType: DocType,Web View,ওয়েব দর্শন
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,সতর্কীকরণ: এটি মুদ্রণ বিন্যাস পুরানো শৈলী এবং API- র মাধ্যমে নির্মাণ করা যাবে না.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,সমগ্র
DocType: DocField,Print Width,প্রিন্ট করুন প্রস্থ
,Setup Wizard,সেটআপ উইজার্ড
DocType: Address,GST State Number,GST রাষ্ট্রের সংখ্যা
@@ -2797,26 +2813,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,এসএমএস সেটিংস আপডেট করুন
DocType: Event,Event Type,ইভেন্টের ধরণ
DocType: User,Last Known Versions,শেষ জানা সংস্করণ
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,ইমেইল একাউন্ট পরিচালনা / যুক্ত করো.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,ইমেইল একাউন্ট পরিচালনা / যুক্ত করো.
DocType: Newsletter,Published,প্রকাশিত
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,তোমার ই - মেইলের জন্য ধন্যবাদ
DocType: DocField,Small Text,ছোট লেখা
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,সমান
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে
DocType: About Us Settings,Team Members Heading,শীর্ষক দলের সদস্যদের
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,অবৈধ CSV বিন্যাসে
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,সেট ব্যাক-আপ সংখ্যা
DocType: DocField,Do not allow user to change after set the first time,প্রথমবার ব্যবহারকারী পর সেট পরিবর্তন করার অনুমতি দেয় না
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,বেসরকারী বা সরকারী?
-apps/frappe/frappe/utils/data.py +578,1 year ago,1 বছর আগে
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,বেসরকারী বা সরকারী?
+apps/frappe/frappe/utils/data.py +590,1 year ago,1 বছর আগে
DocType: Contact,Contact,যোগাযোগ
DocType: User,Third Party Authentication,থার্ড পার্টি প্রমাণীকরণ
DocType: Website Settings,Banner is above the Top Menu Bar.,ব্যানার উপরের মেনু বার উপরে.
DocType: Razorpay Settings,API Secret,এপিআই সিক্রেট
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,রপ্তানি প্রতিবেদন:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} অস্তিত্ব নেই
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,রপ্তানি প্রতিবেদন:
DocType: Data Migration Run,Push Update,আপডেট করুন
DocType: Email Account,Port,বন্দর
DocType: Print Format,Arial,আড়িয়াল
@@ -2833,15 +2848,15 @@ DocType: Dropbox Settings,Dropbox Settings,ড্রপবক্স সেটি
DocType: About Us Settings,More content for the bottom of the page.,পৃষ্ঠার নীচের অংশে আরো কন্টেন্ট জন্য.
DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE যা এই কর্মপ্রবাহ প্রযোজ্য.
DocType: Feedback Trigger,Enabled,সক্রিয়
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,সেটআপ সম্পূর্ণ করতে ব্যর্থ হয়েছে
DocType: Tag Category,Category Name,নামের তালিকা
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,আমদানি সদস্যবৃন্দ
DocType: Print Settings,PDF Settings,পিডিএফ সেটিংস
DocType: Kanban Board Column,Column Name,কলামের নাম
DocType: Language,Based On,উপর ভিত্তি করে
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,আপনি সব সেট!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ডিফল্ট করা
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,চেক ফ্র্যাপে সার্ভারের URL
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য
DocType: Communication,Email Account,ইমেইল একাউন্ট
DocType: Workflow State,Download,ডাউনলোড
DocType: Blog Post,Blog Intro,মুখ্য পৃষ্ঠা Privacy Policy ব্লগ
@@ -2857,7 +2872,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},অবৈধ সীমা {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,একটি নথি টাইপ তালিকা
DocType: Event,Ref Type,সুত্র ধরন
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","আপনি নতুন রেকর্ড আপলোড হয়, "নাম" (আইডি) কলাম ফাঁকা রাখুন."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","আপনি নতুন রেকর্ড আপলোড হয়, "নাম" (আইডি) কলাম ফাঁকা রাখুন."
DocType: Data Migration Run,Current Mapping Delete Start,বর্তমান ম্যাপিং মুছুন শুরু করুন
apps/frappe/frappe/config/core.py +47,Errors in Background Events,পৃষ্ঠভূমি ঘটনাবলী ত্রুটি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,কলাম কোন
@@ -2869,22 +2884,22 @@ DocType: Website Settings,Website Theme Image,ওয়েবসাইট বি
DocType: Workflow State,road,রাস্তা
DocType: LDAP Settings,Organizational Unit,প্রাতিষ্ঠানিক একক অংশ
DocType: User,Timezone,সময় অঞ্চল
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},লোড করা যায়নি: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},লোড করা যায়নি: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,ব্যাকআপ
DocType: DocField,Read Only,শুধুমাত্র পঠনযোগ্য
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,নতুন নিউজলেটার
DocType: Print Settings,Send Print as PDF,পিডিএফ হিসাবে প্রিন্ট পাঠান
DocType: Web Form,Amount,পরিমাণ
DocType: Workflow Transition,Allowed,প্রেজেন্টেশন
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},জন্য ফাইল ফরম্যাট লিখতে ব্যর্থ হয়েছে {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,ডিফল্ট সেটিংসে পুনরুদ্ধার করতে চান?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,অকার্যকর হোম পেজ
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,অবৈধ লগইন করুন. আবার চেষ্টা কর.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,অবৈধ লগইন করুন. আবার চেষ্টা কর.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1}
DocType: Auto Email Report,Send only if there is any data,শুধুমাত্র পাঠান যদি সেখানে কোন তথ্য নেই
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,রিসেট ফিল্টার
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},অ্যাসাইনমেন্ট দ্বারা বন্ধ {0}
DocType: Integration Request,Remote,দূরবর্তী
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,গণনা করা
@@ -2895,7 +2910,6 @@ DocType: Error Snapshot,Locals,অঁচলবাসী
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},মাধ্যমে আদানপ্রদান {0} উপর {1} {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} একটি মন্তব্যে উল্লেখ {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,যেমন (55 + + 434) / 4 বা = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না দয়া করে সেটআপ থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন> ইমেল> ইমেল অ্যাকাউন্ট
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} প্রয়োজন
DocType: Integration Request,Integration Type,ইন্টিগ্রেশন ধরণ
DocType: Newsletter,Send Attachements,Attachements পাঠান
@@ -2905,16 +2919,15 @@ DocType: DocField,Perm Level,স্থায়ী ঢেউ তোলা শ্
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,আজকের ক্যালেন্ডার ঘটনাগুলি
DocType: Web Page,Web Page,ওয়েব পেজ
DocType: Blog Category,Blogger,ব্লগার
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,ত্রুটির সঙ্গে সারি এড়িয়ে যান
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,তালিকা দেখুন
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,তালিকা দেখুন
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0}
DocType: Workflow,Don't Override Status,স্থিতি ওভাররাইড না
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,একটি রেটিং দিতে দয়া করে.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} প্রতিক্রিয়া অনুরোধ
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,অনুসন্ধানের শর্ত
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,প্রথম ব্যবহারকারী: আপনি
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,নির্বাচন কলাম
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,প্রথম ব্যবহারকারী: আপনি
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,নির্বাচন কলাম
DocType: Translation,Source Text,উত্স লেখা
apps/frappe/frappe/www/login.py +65,Missing parameters for login,লগইন জন্য অনুপস্থিত পরামিতি
DocType: Workflow State,folder-open,ফোল্ডারের-খোলা
@@ -2926,18 +2939,17 @@ DocType: Page,No,না
DocType: Property Setter,Set Value,সেট মান
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,আকারে ক্ষেত্র লুকান
DocType: Webhook,Webhook Data,ওয়েবহুক ডেটা
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,অবৈধ অ্যাক্সেস টোকেন. অনুগ্রহপূর্বক আবার চেষ্টা করুন
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,অবৈধ অ্যাক্সেস টোকেন. অনুগ্রহপূর্বক আবার চেষ্টা করুন
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","অ্যাপ্লিকেশনটি একটি নতুন সংস্করণে আপডেট করা হয়েছে, এই পৃষ্ঠাটি রিফ্রেশ দয়া"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,আবার পাঠান
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,ঐচ্ছিক: এই অভিব্যক্তি সত্য হলে সতর্কতা পাঠানো হবে
DocType: Data Migration Plan,Plan Name,পরিকল্পনা নাম
DocType: Print Settings,Print with letterhead,লেটারহেড সাথে মুদ্রণ
DocType: Unhandled Email,Raw Email,কাঁচা ইমেইল
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,নিয়োগ জন্য নির্বাচন রেকর্ড
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,আমদানি হচ্ছে
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,নিয়োগ জন্য নির্বাচন রেকর্ড
DocType: ToDo,Assigned By,দ্বারা নির্ধারিত হয়
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,আপনি ক্ষেত্রের উপর মাত্রা সেট কাস্টমাইজ ফর্ম ব্যবহার করতে পারেন.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,আপনার অঞ্চল নির্বাচন করুন
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,আপনার অঞ্চল নির্বাচন করুন
DocType: Custom DocPerm,Level,শ্রেনী
DocType: Custom DocPerm,Report,রিপোর্ট
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,পরিমাণ 0 অনেক বেশী হতে হবে.
@@ -2956,7 +2968,7 @@ DocType: Website Theme,Background,পটভূমি
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","ব্যবহারকারীর অনুমতি প্রয়োগ করতে ব্যবহৃত DocTypes এর JSON তালিকা. যদি খালি, সব লিঙ্ক DocTypes ব্যবহারকারীর অনুমতি প্রয়োগ করতে ব্যবহৃত হবে."
DocType: Report,Ref DocType,সুত্র DOCTYPE
apps/frappe/frappe/www/feedback.py +42,Please add a rating,একটি রেটিং যোগ করুন
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,পুরো পাতা
DocType: DocType,Is Child Table,শিশু টেবিল হয়
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} কে অবশ্যই {1} এর মাঝে কোন একটি হতে হবে
@@ -2968,7 +2980,7 @@ DocType: Workflow State,chevron-left,শেভ্রন-বাম
DocType: Communication,Sending,পাঠানো
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,এই আইপি ঠিকানা থেকে অনুমতি না
DocType: Website Slideshow,This goes above the slideshow.,এই স্লাইডশো উপরে যায়.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,অ্যাপ্লিকেশন ইনস্টল করুন.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,অ্যাপ্লিকেশন ইনস্টল করুন.
DocType: Contact,Last Name,নামের শেষাংশ
DocType: Event,Private,ব্যক্তিগত
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,আজকের জন্য কোন সতর্কতা
@@ -2985,19 +2997,19 @@ DocType: Event,Send an email reminder in the morning,সকালে একট
DocType: Blog Post,Published On,প্রকাশিত
DocType: Contact,Gender,লিঙ্গ
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,আবশ্যিক তথ্য অনুপস্থিত:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,চেক অনুরোধ URL টি
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,শুধু 200 টিপে এক অনুরোধ অনুমতিপ্রাপ্ত
DocType: Footer Item,URL,URL টি
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,যাচাইকরণ স্ক্রীনে ফিরে যান এবং আপনার প্রমাণীকরণ অ্যাপ্লিকেশন দ্বারা প্রদর্শিত কোডটি লিখুন
DocType: ToDo,Reference Type,রেফারেন্স ধরন
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,নতুন সংযোগ তৈরি করতে বিকাশকারী মোড সক্ষম করুন
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,নতুন সংযোগ তৈরি করতে বিকাশকারী মোড সক্ষম করুন
DocType: Event,Repeat On,একই পদ্ধতি পুনরাবৃত্তি করুন
DocType: SMS Parameter,SMS Parameter,এসএমএস পরামিতি
DocType: Communication,Marked As Spam,স্প্যাম হিসাবে চিহ্নিত
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},ফাইলের URL সঙ্গে কিছু সমস্যা আছে: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,বৃক্ষ
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,আপনি এই রিপোর্ট প্রিন্ট করতে অনুমতি দেওয়া হয় না
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,আপনি এই রিপোর্ট প্রিন্ট করতে অনুমতি দেওয়া হয় না
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,ব্যবহারকারীর অনুমতি
DocType: Workflow State,warning-sign,সতর্কীকরণ চিহ্ন
DocType: Workflow State,User,ব্যবহারকারী
@@ -3029,64 +3041,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,ডিফল্ট
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} যোগ করা হয়েছে
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',জন্য অনুসন্ধান করুন '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,দয়া করে রিপোর্ট প্রথম সংরক্ষণ
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,দয়া করে রিপোর্ট প্রথম সংরক্ষণ
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} গ্রাহকদের যোগ করা হয়েছে
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,না
DocType: Workflow State,star,তারকা
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,মান কমা দ্বারা পৃথকীকৃত
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,মান কমা দ্বারা পৃথকীকৃত
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},জন্য আপনার মতামত শেয়ার করুন {0}
apps/frappe/frappe/config/website.py +13,Content web page.,বিষয়বস্তু ওয়েবপৃষ্ঠাটি.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,একটি নতুন ভূমিকা করো
DocType: Deleted Document,Deleted Document,মোছা ডকুমেন্ট
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,ওহো! কিছু ভুল হয়েছে
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,ওহো! কিছু ভুল হয়েছে
DocType: Help Article,Category,শ্রেণী
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,জাভাস্ক্রিপ্ট ক্লায়েন্ট সাইড স্ক্রিপ্ট এক্সটেনশন
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,LDAP dependancies এবং পাইথন ইনস্টল করার নির্দেশিকা
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,ব্লগ পরিচিতি
DocType: Address,Office,অফিস
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,এই Kanban বোর্ড ব্যক্তিগত হবে
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,এই Kanban বোর্ড ব্যক্তিগত হবে
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,স্ট্যান্ডার্ড প্রতিবেদন
DocType: User,Email Settings,ইমেইল সেটিংস
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,অবিরত আপনার পাসওয়ার্ড দিন
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,একটি বৈধ দ্বারা LDAP ব্যবহারকারী
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} কোনো বৈধ অবস্থা না
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। পেপ্যাল মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয়
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয়
DocType: Workflow State,ok-circle,OK-বৃত্ত
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',আপনি জিজ্ঞাসা 'গ্রাহকদের মধ্যে কমলা এটি' দ্বারা জিনিষ খুঁজে পেতে পারেন
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,দুঃখিত! ব্যবহারকারী তাদের নিজের রেকর্ড করতে সম্পূর্ণ সুযোগ থাকা উচিত.
,Usage Info,ইনফো ব্যবহার
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,অবৈধ টোকেন
DocType: Email Account,Email Server,ইমেইল সার্ভার
-DocType: DocShare,Document Type,নথিপত্র ধরণ
+DocType: Data Import,Document Type,নথিপত্র ধরণ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,ট্যাগ বাধ্যতামূলক
DocType: PayPal Settings,API Username,এপিআই ব্যবহারকারীর নাম
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,অর্ধদিবস
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,অর্ধদিবস
DocType: Communication,Communication Type,কমিউনিকেশন প্রকার
DocType: DocField,Unique,অনন্য
-DocType: Data Migration Run,Partial Success,আংশিক সাফল্য
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,আংশিক সাফল্য
DocType: Email Account,Service,সেবা
DocType: File,File Name,ফাইল নাম
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),এটি করা হয়নি {0} জন্য {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),এটি করা হয়নি {0} জন্য {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","ওহো, আপনি কি জানেন যে অনুমতি দেওয়া হয় না"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,পরবর্তী
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,পরবর্তী
apps/frappe/frappe/handler.py +92,You have been successfully logged out,আপনি সফলভাবে লগ আউট করা হয়েছে
DocType: Calendar View,Calendar View,ক্যালেন্ডার দেখুন
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,সম্পাদনা বিন্যাস
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,সম্পূর্ণ নিবন্ধন
DocType: GSuite Settings,Enable,সক্ষম করা
+DocType: Google Maps,Home Address,বাসার ঠিকানা
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),নিউ {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,শীর্ষ বার রঙ এবং টেক্সট কালার একই. তারা পাঠযোগ্য হতে ভাল বৈসাদৃশ্য আছে করা উচিত.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),আপনি শুধুমাত্র এক বারেই 5000 রেকর্ড অবধি আপলোড করতে পারেন. (কিছু কিছু ক্ষেত্রে কম হতে পারে)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),আপনি শুধুমাত্র এক বারেই 5000 রেকর্ড অবধি আপলোড করতে পারেন. (কিছু কিছু ক্ষেত্রে কম হতে পারে)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},জন্য অপর্যাপ্ত অনুমতি {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),গালাগাল প্রতিবেদন সংরক্ষিত হয় নি (ত্রুটি ছিল)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),গালাগাল প্রতিবেদন সংরক্ষিত হয় নি (ত্রুটি ছিল)
DocType: Print Settings,Print Style,মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,কোনো রেকর্ড লিঙ্ক করা
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,কোনো রেকর্ড লিঙ্ক করা
DocType: Custom DocPerm,Import,আমদানি
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,সারি {0}: মান ক্ষেত্রের জন্য জমা মঞ্জুরি সচল করার অনুমতি নেই
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,আমদানি / রপ্তানি ডেটা
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,আমদানি / রপ্তানি ডেটা
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,স্ট্যান্ডার্ড ভূমিকা পালটে যাবে না
DocType: Communication,To and CC,থেকে এবং সিসি
DocType: SMS Settings,Static Parameters,স্ট্যাটিক পরামিতি
@@ -3107,18 +3120,17 @@ DocType: Web Page,Header and Description,শিরোনাম এবং বর
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,প্রয়োজন উভয় লগইন এবং পাসওয়ার্ড
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,সর্বশেষ নথি পেতে রিফ্রেশ করুন.
DocType: User,Security Settings,নিরাপত্তা বিন্যাস
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,কলাম যুক্ত
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,কলাম যুক্ত
,Desktop,ডেস্কটপ
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},রপ্তানি প্রতিবেদন: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},রপ্তানি প্রতিবেদন: {0}
DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,এই ফর্মটি একটি ওয়েব পেজ আছে তাহলে টেক্সট ওয়েব পৃষ্ঠা থেকে লিঙ্ক জন্য প্রদর্শন করা হবে. লিংক রুট স্বয়ংক্রিয়ভাবে page_name` এবং `` parent_website_route` উপর ভিত্তি করে তৈরি করা হবে
DocType: Feedback Request,Feedback Trigger,প্রতিক্রিয়া ট্রিগার
DocType: S3 Backup Settings,Backup Limit,ব্যাকআপ সীমা
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,প্রথম {0} সেট করুন
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,প্রথম {0} সেট করুন
DocType: Unhandled Email,Message-id,বার্তা আইডিটি
DocType: Patch Log,Patch,তালি
-DocType: Async Task,Failed,ব্যর্থ
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,কোন তথ্য পাওয়া
+DocType: Activity Log,Failed,ব্যর্থ
DocType: Web Form,Allow Comments,মন্তব্য করার অনুমতি দিন
DocType: User,Background Style,ব্যাকগ্রাউন্ড শৈলী
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,সীমাবদ্ধ IP ঠিকানা থেকে লগইন ব্যবহারকারীদের জন্য দুটি ফ্যাক্টর Auth বাইপাস
@@ -3127,7 +3139,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},মার্জ {0} মধ্যে {1}
DocType: System Settings,mm-dd-yyyy,মিমি-DD-YYYY
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,নতুন সংযোগ
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} লগ
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} লগ
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,আপনার লগইন আইডি হল
DocType: OAuth Client,Skip Authorization,কর অনুমোদন
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","স্ট্যান্ডার্ড ইমেল সতর্কতা সম্পাদনা করতে পারবেন না সম্পাদনা করতে, দয়া করে এটি অক্ষম করুন এবং এটি অনুলিপি করুন"
diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv
index bb88e8eb7f..dccccd8d49 100644
--- a/frappe/translations/bs.csv
+++ b/frappe/translations/bs.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, je dodijeljen od {1}. {2}"
DocType: Email Queue,Email Queue records.,E-mail Queue Records.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Pošalji
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Molimo prvo odaberite Party Tip
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Molimo prvo odaberite Party Tip
DocType: Address,Punjab,Punjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Preimenovanje mnoge stavke upload . Csv datoteku .
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Preimenovanje mnoge stavke upload . Csv datoteku .
DocType: Workflow State,pause,Pauza
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Nemate pravo da pristupite ovoj stranici.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Nema pronađenih rezultata za '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Vaše informacije su dostavljeni apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati DocType: System Settings,Currency Precision,Valuta Precision @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Vezanost DocType: Communication,Message ID,poruka ID DocType: Property Setter,Field Name,Naziv polja apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nije konfiguriran. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ili +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,ili apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Naziv modula ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Nastaviti DocType: Custom Field,Fieldname,"Podataka, Naziv Polja" DocType: Workflow State,certificate,certifikat DocType: User,Tile,Pločica apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Provjera ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Prvi stupac podataka mora biti prazan. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Prvi stupac podataka mora biti prazan. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Prikaži sve verzije DocType: Workflow State,Print,Stampaj DocType: User,Restrict IP,Zabraniti IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,komandna tabla apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Traži ili upišite komandu -DocType: Communication,Timeline Name,Timeline ime +DocType: Activity Log,Timeline Name,Timeline ime DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Sales Manager Master @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,P DocType: Top Bar Item,Parent Label,Roditelj Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaš upit je dobio. Odgovorit ćemo brzo vratiti. Ako imate bilo kakve dodatne informacije, molimo Vas da odgovorite na ovaj e-mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Dozvole automatski se prevode na standardnih izvješća i pretraživanja . -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Potreban je token token +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} je obavezno polje +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Potreban je token token DocType: Event,Repeat Till,Ponovite Do apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Novi apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Molimo podesite skripta URL na Gsuite Postavke @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Buduća događanja za danas DocType: Email Alert Recipient,Email By Document Field,E-mail dokumentom Field DocType: Domain Settings,Domain Settings,Domain Postavke -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Veličina datoteke: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Veličina datoteke: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,nadogradnja apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Ne može povezati: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Riječ sama po sebi je lako pogoditi. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Frakcije Jedinice apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} od {1} na {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Označi kao Gotovo DocType: Communication,Type,Vrsta -DocType: Authentication Log,Subject,Predmet +DocType: Activity Log,Subject,Predmet DocType: Web Form,Amount Based On Field,Iznos po osnovu Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Korisnik je obavezna za Share DocType: DocField,Hidden,skriven @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Dozvolite Nepotpune Obrasci apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} mora biti postavljen prvi apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Koristite nekoliko riječi, izbjeći uobičajene fraze." DocType: Workflow State,plane,avion -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako upload nove rekorde, ""Imenovanje Serija"" postaje obavezna, ako je prisutan." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako upload nove rekorde, ""Imenovanje Serija"" postaje obavezna, ako je prisutan." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Dobij upozorenja za Danas apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,Vrstu dokumenta moze preimenovati samo Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},promijenjenih vrijednosti od {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Ako korisnik ima bilo koju potvrdu uloge, korisnik postaje "Korisnik sistema". "Korisnik sistema" ima pristup desktopu" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Molimo provjerite svoj e-mail za verifikaciju -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca DocType: Communication,Bounced,Odbijeno DocType: Deleted Document,Deleted Name,Deleted ime apps/frappe/frappe/config/setup.py +14,System and Website Users,Korisnici sustava i web stranice @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Povuci ažuriranje DocType: Auto Email Report,No of Rows (Max 500),Ne redaka (Max 500) DocType: Language,Language Code,Jezik Kod apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Vaš preuzimanje se gradi, to može potrajati nekoliko trenutaka ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Dodaj Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Dodaj Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS poslati na sljedeće brojeve: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Vaša ocjena: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} {1} i +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} {1} i DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Uvek dodajte "Nacrt" Heading za štampanje nacrta dokumenata DocType: Data Migration Run,Current Mapping Start,Početak trenutnog mapiranja apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,E-mail je označena kao spam DocType: About Us Settings,Website Manager,Web Manager apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Datoteka je prekinuta. Molimo pokušajte ponovo. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Ste odabrali Nacrt ili Otkazano dokumenata -apps/frappe/frappe/model/document.py +1180,Document Queued,dokument redu za slanje +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Ste odabrali Nacrt ili Otkazano dokumenata +apps/frappe/frappe/model/document.py +1186,Document Queued,dokument redu za slanje DocType: GSuite Templates,Destination ID,Destinacija ID DocType: Desktop Icon,List,popis -DocType: Communication,Link Name,link ime -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu +DocType: Activity Log,Link Name,link ime +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu DocType: System Settings,mm/dd/yyyy,dd / mm / gggg -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Nevažeći Lozinka: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Nevažeći Lozinka: DocType: Print Settings,Send document web view link in email,Pošalji dokument web pogled link u e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše povratne informacije za dokument {0} je uspješno sačuvan -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,prijašnji +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,prijašnji apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} redova za {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Za npr. "centi" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Odaberite dodate datoteke DocType: Letter Head,Check this to make this the default letter head in all prints,Provjerite to napraviti ovu glavu zadani slovo u svim otisaka DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Novi Kanban odbora +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Novi Kanban odbora DocType: Desktop Icon,Link,Poveznica apps/frappe/frappe/utils/file_manager.py +111,No file attached,No file u prilogu DocType: Version,Version,verzija DocType: User,Fill Screen,Ispunite zaslon -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","U nemogućnosti da se ovaj izvještaj drvo, zbog podataka koji nedostaju. Najvjerojatnije, to se filtrira zbog dozvole." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Odaberite File +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","U nemogućnosti da se ovaj izvještaj drvo, zbog podataka koji nedostaju. Najvjerojatnije, to se filtrira zbog dozvole." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Upload nije uspio -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Edit preko Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Edit preko Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Vrsta dokumenta ..., npr kupca" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Uvjet '{0}' je nevažeća DocType: Workflow State,barcode,barkod -apps/frappe/frappe/config/setup.py +235,Add your own translations,Dodajte svoj prevodi +apps/frappe/frappe/config/setup.py +242,Add your own translations,Dodajte svoj prevodi DocType: Country,Country Name,Država Ime DocType: About Us Team Member,About Us Team Member,"""O nama"" član tima" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Dozvole su postavljene na uloge i vrsta dokumenata (zove DocTypes ) postavljanjem prava kao što su čitanje , pisanje, stvaranje, brisanje, Slanje , Odustani , Izmijeniti , izvješće , uvoz , izvoz , ispis , e-mail i postaviti dozvole korisnicima ." DocType: Event,Wednesday,Srijeda -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja DocType: OAuth Client,Token,žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ime) subjekta čiji je objekt se postaviti apps/frappe/frappe/limits.py +84,"To renew, {0}.","Da biste obnovili, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} već inst apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Nema pregleda DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Pokaži Dozvole -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datum Range -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} od {1} DocType: About Us Settings,Introduce your company to the website visitor.,Uvesti svoju tvrtku za web stranice posjetitelja. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","Enkripcija ključ je nevažeća, Molimo provjerite site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 komentar DocType: Email Alert,Days Before,Dana prije DocType: Workflow State,volume-down,glasnoće prema dolje -apps/frappe/frappe/desk/reportview.py +262,No Tags,No Tags +apps/frappe/frappe/desk/reportview.py +266,No Tags,No Tags DocType: DocType,List View Settings,Liste Postavke DocType: Email Account,Send Notification to,Pošalji Obavještenje DocType: DocField,Collapsible,Sklopivi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Sačuvane apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Šta ti je potrebna pomoć? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcije za odabrane. Svaka opcija na novoj liniji. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Trajno Odustani {0} ? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Trajno Odustani {0} ? DocType: Workflow State,music,muzika apps/frappe/frappe/www/qrcode.html +3,QR Code,QR Code apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Poslednji izmijenjeni datum DocType: Web Page,Settings,Podešavanja apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Navedite vrstu dokumenata DocType: Print Format,Style Settings,Stil Postavke -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Više +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Više DocType: Contact,Sales Manager,Sales Manager -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,preimenovati +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,preimenovati DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Kao +apps/frappe/frappe/utils/bot.py +91,Like,Kao DocType: Customize Form Field,Customize Form Field,Prilagodba polja obrasca DocType: OAuth Client,Grant Type,Grant Tip apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Provjerite koji dokumenti su čitljivi od strane Korisnika apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Broj aplikacija nije dozvoljeno DocType: Deleted Document,Hub Sync ID,Hub Sync ID -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,koristiti% kao zamjenski +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,koristiti% kao zamjenski apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domena nije konfigurirana za ovaj nalog, Napravi jedan?" DocType: User,Reset Password Key,Reset Password ključ DocType: Email Account,Enable Auto Reply,Enable Auto Odgovor @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimalna Password Score DocType: DocType,Fields,Polja DocType: System Settings,Your organization name and address for the email footer.,Vaše ime i adresu organizacije za e-footer. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Parent Tabela +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Parent Tabela apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup complete! apps/frappe/frappe/config/desktop.py +60,Developer,Razvijač apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Objavio @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Postaviti samo jednom DocType: Email Queue Recipient,Email Queue Recipient,E-mail Queue Primalac DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Korisničko {0} već postoji -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Postoji greška u vašem Adresa Template {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Visok DocType: S3 Backup Settings,Secret Access Key,Tajni ključ za pristup apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Muški -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret je resetovan. Ponovna registracija će biti potrebna prilikom sledećeg prijavljivanja. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret je resetovan. Ponovna registracija će biti potrebna prilikom sledećeg prijavljivanja. DocType: Communication,From Full Name,Od Ime i prezime apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Nemate pristup Izvjestaju: {0} DocType: User,Send Welcome Email,Pošalji Dobrodošli Email -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen osnovni obrazac naslova. Molimo vas da kreirate novu od Setup> Printing and Branding> Template Template. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Ukloni filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Ukloni filter DocType: Address,Daman and Diu,Daman and Diu DocType: Address,Personal,Osobno -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Bulk Rename +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Prikaži kao cc DocType: DocField,Heading,Naslov DocType: Workflow State,resize-vertical,resize-vertikalna -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Upload DocType: Contact Us Settings,Introductory information for the Contact Us Page,Uvodni podaci za stranicu Kontaktirajte nas DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,palac dolje @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,U Global Search DocType: Workflow State,indent-left,alineje-lijevo apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,To je rizično izbrisati ovu datoteku: {0}. Molimo vas da se obratite System Manager. DocType: Currency,Currency Name,Valuta Ime -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,No Email +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,No Email DocType: Report,Javascript,Javascript DocType: File,Content Hash,Sadržaj Ljestve DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Pohranjuje JSON prošle poznate verzije različitih instaliranih aplikacija. To se koristi za prikaz bilješke puštanje na slobodu. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Standard DocType ne mogu imati zadani format za ispis, koristite Customize obrazac" DocType: Report,Query,Upit DocType: DocType,Sort Order,Poredak sortiranja -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Odaberite oznaku nakon što želite umetnuti novo polje. ,Document Share Report,Izvještaj o dijeljenu dokumenata DocType: User,Last Login,Zadnja prijava -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeno polje u vrstu dokumenta DocType: File,Is Home Folder,Je dom Folder apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nije valjana e-mail adresa -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Odaberite atleast 1 zapis za štampanje +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Odaberite atleast 1 zapis za štampanje apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Korisnik '{0}' već ima ulogu '{1}' DocType: System Settings,Two Factor Authentication method,Dva faktorska autentikacijska metoda apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Podijeljeno sa {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,unsubscribe -DocType: Communication,Reference Name,Referenca Ime +DocType: Activity Log,Reference Name,Referenca Ime apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Chat Support DocType: Error Snapshot,Exception,Izuzetak -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Nema pronađenih rezultata za '
DocType: Email Account,Use IMAP,Koristite IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,U nemogućnosti da se zahtjev Frappe Server URL +DocType: Activity Log,Activity Log,Dnevnik aktivnosti DocType: Integration Request,Authorized,ovlašćen DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Pojedinačne vrste imaju samo jedan zapis nema tablice povezane . Vrijednosti su pohranjeni u tabSingles DocType: System Settings,Enable Password Policy,Omogućite Password Policy @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","List apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Vrsta terena se ne može mijenjati za {0} DocType: Workflow,Rules defining transition of state in the workflow.,Pravila definiraju prijelaz stanja u tijek rada. DocType: File,Folder,Fascikla +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Uvozi / izvozi podatke iz CSV i Excel datoteka. DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Menadžer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcija 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} do {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} do {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Prijavite greške prilikom zahtjeva. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} je uspješno dodan na mail Grupe. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,Nemojte uređivati zaglavlja koji su unapred postavljeni u predložak +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,Nemojte uređivati zaglavlja koji su unapred postavljeni u predložak apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Prijava Verifikacioni kod iz {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Napravite datoteku (e) privatno ili javno? +DocType: Data Import,Import Status,Status uvoza +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Napravite datoteku (e) privatno ili javno? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Planirano za slanje na {0} DocType: Kanban Board Column,Indicator,pokazatelj DocType: DocShare,Everyone,Svi DocType: Workflow State,backward,Nazad -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj link za odjavu apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Još nema komentara. Započnite novu raspravu. DocType: Workflow State,share,udio apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Vaša pretplata istekla na {0}. Da biste obnovili, molimo pošaljite email na {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Postavite broje niz za transakcije . +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Postavite broje niz za transakcije . apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,Ne možeš kao nešto što ste napravili apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC & Standard Reply" DocType: User,Last IP,Posljednja IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filtriranje zapisa na temelju dozvole korisnicima definiranim za korisnika DocType: Note,Notify Users On Every Login,Obavijesti Korisnici On Every Prijava DocType: PayPal Settings,API Password,API lozinke -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Unesite python modul ili izaberite tip konektora +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Unesite python modul ili izaberite tip konektora apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,"Podataka, Naziv Polja nije postavljen za Custom Field" apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Datum posljednje aktualizacije apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nije dopušteno. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Ne možete izbrisati datoteku pošto pripada {0} {1} za koju nemate dozvole apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,G-đa DocType: Website Theme,Background Color,Boja pozadine -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . DocType: Portal Settings,Portal Settings,portal Postavke DocType: Data Migration Mapping,Mapping,Mapiranje DocType: Web Page,0 is highest,0 je najviši @@ -667,6 +668,7 @@ DocType: Language,Language Name,Jezik DocType: Email Group Member,Email Group Member,Podijelite Grupa članova DocType: Email Alert,Value Changed,Vrijednost promijenila apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Dupli naziv {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Pokušajte ponovo DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Sakrij polju u Report Builder apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Edit HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Prodavnica DocType: DocField,Button,Dugme apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} je sada zadani format za ispis za {1} doctype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Arhivirani Kolumne +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Arhivirani Kolumne DocType: Email Account,Default Outgoing,Uobičajeno Odlazni DocType: Workflow State,play,igrati apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Kliknite na link ispod da završite registraciju i postaviti novu lozinku apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Nije dodano -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Ne-mail Accounts Assigned +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Ne-mail Accounts Assigned DocType: Contact Us Settings,Contact Us Settings,Kontaktirajte nas Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Tražim ... DocType: Workflow State,text-width,tekst širine @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Provjerite Komunikacija DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Molimo Vas da provjerite e-mail adresa -apps/frappe/frappe/model/document.py +1039,none of,nitko od +apps/frappe/frappe/model/document.py +1045,none of,nitko od apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Pošalji kopiju meni DocType: Dropbox Settings,App Secret Key,App tajni ključ DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web stranice apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Označene stavke će biti prikazan na radnoj površini -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji. +DocType: Data Import,Data Import,Uvoz podataka apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} trenutno gledate ovaj dokument DocType: ToDo,Assigned By Full Name,Dodijeljen od strane Ime i prezime apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ažurirana -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dana DocType: Email Account,Awaiting Password,čeka lozinke DocType: Address,Address Line 1,Adresa - linija 1 DocType: Custom DocPerm,Role,Uloga apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Postavke ... -apps/frappe/frappe/utils/data.py +459,Cent,Cent -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Sastavi-mail -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." +apps/frappe/frappe/utils/data.py +464,Cent,Cent +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,Sastavi-mail +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." DocType: Print Settings,Allow Print for Draft,Dozvolite Ispis za Nacrt apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Set Količina -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Dostavi taj dokument da potvrdi +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Dostavi taj dokument da potvrdi DocType: Contact,Unsubscribed,Pretplatu apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Postaviti prilagođene uloge za stranicu i izvještaj apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Ocjena: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Ne možete pronaći UIDVALIDITY odgovor status IMAP -,Data Import Tool,Alat za uvoz podataka DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Molimo da podesite podrazumevani nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Upload datoteke pričekajte nekoliko sekundi. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Priložite svoju sliku +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Priložite svoju sliku apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Promena vrednosti DocType: Workflow State,Stop,zaustaviti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da to grupu roditelja. @@ -747,7 +748,7 @@ DocType: Report,Script Report,Skripta Prijavi DocType: OAuth Authorization Code,Scopes,Scopes DocType: About Us Settings,Company Introduction,Tvrtka Uvod DocType: DocField,Length,Dužina -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Vraćanje ili trajno brisanje dokumenta. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Vraćanje ili trajno brisanje dokumenta. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite test izvršen sa uspjehom. GSuite integracija ispravno konfiguriran DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} uklonjen DocType: Custom DocPerm,Apply User Permissions,Primjeni dozvole korisnika DocType: User,Modules HTML,Moduli HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Nedostaje vrijednosti potrebne +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Nedostaje vrijednosti potrebne DocType: DocType,Other Settings,Ostale postavke DocType: Data Migration Connector,Frappe,frape apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Označi kao nepročitano apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} nije postavljena -DocType: Authentication Log,Operation,Operacija +DocType: Activity Log,Operation,Operacija DocType: Customize Form,Change Label (via Custom Translation),Promijeni Label (preko Custom Translation) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Nema dozvolu za {0} {1} {2} DocType: Address,Permanent,trajan apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Napomena: Ostala pravila dozvole također može primijeniti apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Nije dopušteno pristup {0} sa {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Ako je ovo potvrđeno, redovi sa važećim podacima će biti uvezeni i nevažeći redovi će biti deponovani u novu datoteku koja će vam kasnije biti uvezena." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Pogledaj ovaj u pregledniku DocType: DocType,Search Fields,Polja za pretragu DocType: System Settings,OTP Issuer Name,Ime izdavača OTP @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nosilac Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,No dokument odabranih apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Doktor DocType: Event,Event,Događaj -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","Na {0}, {1} napisao:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","Na {0}, {1} napisao:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete sakriti ako želite DocType: Top Bar Item,For top bar,Na gornjoj traci apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Na vrhu za rezervnu kopiju. Dobićete e-mail sa linkom za preuzimanje @@ -789,35 +792,34 @@ DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,Žlica apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Pogreška poslužitelja : Provjerite svoje logove poslužitelja ili kontaktirajte tehničku podršku. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,E-mail dobrodošlice -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Idemo pripremiti sustav za prve upotrebe. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Idemo pripremiti sustav za prve upotrebe. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Istaknuto apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Već registracije DocType: System Settings,Float Precision,Float Precision apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Samo administrator može uređivati -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Ime dokumenta +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Ime dokumenta DocType: DocType,Editable Grid,Editable Grid DocType: Property Setter,Property Setter,Nekretnine seter DocType: Web Form,Allow Print,Dozvolite Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No Apps Instalirani apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Označite polje kao obavezni DocType: Communication,Clicked,Kliknuli -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} DocType: User,Google User ID,Google korisnički ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Zakazan za slanje DocType: DocType,Track Seen,Seen Track apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Ova metoda se može koristiti samo za stvaranje komentar DocType: Kanban Board Column,orange,narandža -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Nije našao {0} -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Dodaj prilagođenu formu. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Nije našao {0} +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Dodaj prilagođenu formu. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} u {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,dostavio ovaj dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sustav nudi brojne unaprijed definirane uloge . Možete dodavati nove uloge postaviti finije dozvole. DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,Domena +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Domena DocType: Blog Category,Blog Category,Blog kategorija apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Ne mogu mapirati jer sljedeći uvjet ne uspije: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Uloge HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Odaberite najprije imidž. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktivan @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Plava boja apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,"Sve prilagođavanja će biti uklonjena. Molimo, potvrdite unos." DocType: Page,Page HTML,HTML stranica -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" DocType: SMS Parameter,Header,Zaglavlje -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nepoznato Stupac : {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Nepoznato Stupac : {0} DocType: Email Alert Recipient,Email By Role,E-poštom Uloga apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Korisnici s ulogom {0} : apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Instaliranje aplikacija {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Predstavlja korisnika u sistemu. DocType: Communication,Label,Oznaka apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Zadatak {0}, koje ste dodijelili {1}, je zatvoren." DocType: User,Modules Access,Moduli Access -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Molimo vas da zatvorite ovaj prozor +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Molimo vas da zatvorite ovaj prozor DocType: Print Format,Print Format Type,Ispis formatu DocType: Newsletter,A Lead with this Email Address should exist,Elektrode sa ovim e-mail adresa treba da postoji apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source Prijave za Web DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Dodaj ime "Google Web Font" npr "Open Sans" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Upit isteklo +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Omogući / onemogući domene DocType: Role Permission for Page and Report,Allow Roles,Dozvolite Uloge DocType: DocType,Hide Toolbar,Sakrij alatnu traku DocType: User,Last Active,Zadnji put DocType: Email Account,SMTP Settings for outgoing emails,SMTP postavke za odlazne e-pošte -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Uvoz nije uspjelo apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Vaša lozinka je ažurirana. Ovdje je svoju novu lozinku DocType: Email Account,Auto Reply Message,Auto poruka odgovora DocType: Feedback Trigger,Condition,Stanje -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} sata -apps/frappe/frappe/utils/data.py +574,1 month ago,prije 1 mjesec +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} sata +apps/frappe/frappe/utils/data.py +586,1 month ago,prije 1 mjesec DocType: Contact,User ID,Korisnički ID DocType: Communication,Sent,Poslano DocType: Address,Kerala,Kerala @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Vaša pretplata ističe sutra. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Sačuvane! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} nije ispravna heksa boja apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gospođa apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ažurirano {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Majstor DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Folder {0} ne postoji -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,pristup Dropbox je odobren! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,pristup Dropbox je odobren! DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Nedostatak parametra Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nema zapisa tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,uklonite Field DocType: User,Send Password Update Notification,Pošalji lozinku Update Notification @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Zelenilo DocType: Custom DocPerm,Additional Permissions,Dodatne dozvole DocType: Email Account,Always use Account's Email Address as Sender,Uvijek koristite račun e-mail adresa kao Sender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Prijava na komentar -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Start unosa podataka ispod ove linije +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Start unosa podataka ispod ove linije apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},promijenjenih vrijednosti za {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Prilagodi ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Ugašeno DocType: Workflow State,eye-close,oka u blizini DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Postavke -apps/frappe/frappe/config/setup.py +257,Applications,Prijave +apps/frappe/frappe/config/setup.py +264,Applications,Prijave apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Prijavite ovaj problem DocType: Custom Script,Adds a custom script (client or server) to a DocType,Dodaje prilagođenu skriptu (klijent ili server) u vrstu dokumenta DocType: Address,City/Town,Grad / Mjesto @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Is Your Company Adresa apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Uređivanje Row DocType: Workflow Action,Workflow Action Master,Workflow Akcija Master DocType: Custom Field,Field Type,Vrsta polja -apps/frappe/frappe/utils/data.py +489,only.,samo. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,Administrator može resetovati samo OTP tajnu. +apps/frappe/frappe/utils/data.py +494,only.,samo. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,Administrator može resetovati samo OTP tajnu. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,Izbjegavajte godina koji su povezani sa vama. DocType: GSuite Templates,GSuite Templates,GSuite Templates -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Silazni apps/frappe/frappe/utils/goal.py +109,Goal,Cilj apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,Nevažeći mail server. Ispravi i pokušaj ponovno. DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},No dozvolu za čitanje {0} apps/frappe/frappe/config/desktop.py +8,Tools,Alati apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Izbjegavajte posljednjih nekoliko godina. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Više korijen čvorovi nisu dopušteni . +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Više korijen čvorovi nisu dopušteni . DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ako je omogućeno, korisnici će biti obaviješteni svaki put kada se prijavite. Ako nije omogućen, korisnici će biti obaviješteni samo jednom." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Nevažeće {0} stanje +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Nevažeće {0} stanje DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Ako je označeno, korisnici neće vidjeti dijalog potvrdu pristupa." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID polja je potrebno za uređivanje vrijednosti pomoću Report. Molimo odaberite polje ID pomoću Column Picker apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Komentari apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Potvrditi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Skupi sve @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Postavi korisnička dopuštenja DocType: Email Account,Email Account Name,Naziv Email naloga apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Odaberite Vrste dokumenata -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto nije bilo u redu dok stvarajući Dropbox pristup token. Molimo Vas da provjerite dnevnik grešaka za više detalja. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto nije bilo u redu dok stvarajući Dropbox pristup token. Molimo Vas da provjerite dnevnik grešaka za više detalja. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Newsletter za kontakte, potencijalne kupce." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","npr ""Podrška "","" prodaje "","" Jerry Yang """ @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook User ID DocType: Workflow State,fast-forward,brzo naprijed DocType: Communication,Communication,Komunikacija apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Provjerite kolone za odabir, povucite postaviti red." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Ovo je trajna akciju i ne možete poništiti. Nastaviti? DocType: Event,Every Day,Svaki dan DocType: LDAP Settings,Password for Base DN,Lozinku za Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabela Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Kolone na osnovu +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Kolone na osnovu apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Enter kako bi se omogućilo integraciju sa Google GSuite DocType: Workflow State,move,Potez -apps/frappe/frappe/model/document.py +1223,Action Failed,Akcija nije uspjela +apps/frappe/frappe/model/document.py +1229,Action Failed,Akcija nije uspjela apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,za korisnika -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Šifarnik konta +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Šifarnik konta DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,U pretplati imate još {0} dana +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,U pretplati imate još {0} dana apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Odlazne e-pošte računa nije ispravan apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily invaliditetom apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Instalirana -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Molimo podesite e-mail adresa +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Molimo podesite e-mail adresa DocType: System Settings,Date and Number Format,Datum i oblik brojeva apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Maksimalna veličina priloga je {0} MB -apps/frappe/frappe/model/document.py +1038,one of,Jedan od -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Molimo odaberite datoteku za kopiranje +apps/frappe/frappe/model/document.py +1044,one of,Jedan od apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Prikazi tagove DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ako Nanesite Strogi korisnika Dozvola se provjerava i korisnika dozvola je definisana za DocType za korisnika, onda svi dokumenti u kojima je prazna vrijednost linka, neće biti prikazana na to User" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Akcije DocType: Workflow State,align-justify,poravnanje-jednako DocType: User,Middle Name (Optional),Krsno ime (opcionalno) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Ne Dozvoljena -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Nakon polja imaju nedostajućih vrijednosti: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,Nemate dovoljno dozvole za završetak akcije +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Nakon polja imaju nedostajućih vrijednosti: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,Nemate dovoljno dozvole za završetak akcije apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,nema Rezultati DocType: System Settings,Security,Sigurnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Planirano za slanje na {0} primaoca +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Cut apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},preimenovan iz {0} do {1} DocType: Currency,**Currency** Master,** Valuta ** Master DocType: Email Account,No of emails remaining to be synced,Ne e-mailova preostalih da se sinhronizuju -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,otpremanje +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,otpremanje apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Sačuvajte dokument zadatak apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Kliknite ovde da biste objavili greške i sugestije DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adresa i druge pravne informacije koje možda želite staviti u podnožje. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} minuta DocType: Kanban Board Column,lightblue,svijetlo plavo apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Isto polje unosi se više puta -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Izaberite Kolone apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasan apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Svaki dan događaja treba završiti na isti dan. DocType: Communication,User Tags,Korisnicki tagovi @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Prijavi se DocType: Web Page,Main Section,Glavni Odjeljak DocType: Page,Icon,ikona apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,filtrirati vrijednosti između 5 i 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Hint: Uključiti simboli, brojevi i slova u lozinku" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Hint: Uključiti simboli, brojevi i slova u lozinku" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Podešavanje> Menadžer dozvola korisnika apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / gggg apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite test skripta @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Autorsko pravo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,ići DocType: OAuth Authorization Code,Invalid,nevažeći DocType: ToDo,Due Date,Datum dospijeća -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,prvi dan u tromjesečju +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,prvi dan u tromjesečju DocType: Social Login Keys,Google Client Secret,Google - tajna klijenta DocType: Website Settings,Hide Footer Signup,Sakrij Footer Prijavite apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,otkazan ovaj dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Napišite Python datoteku u istu mapu gdje je spremljena i povratka stupcu i rezultat. DocType: DocType,Sort Field,Sortiraj polje DocType: Razorpay Settings,Razorpay Settings,Razorpay Postavke -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Dodaj još DocType: System Settings,Session Expiry Mobile,Session Istek Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Rezultati pretrage za apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Odaberete preuzimanje: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Ako {0} je dozvoljeno DocType: Custom DocPerm,If user is the owner,Ukoliko korisnik je vlasnik +apps/frappe/frappe/config/integrations.py +88,Maps,Mape ,Activity,Aktivnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pomoć: Za povezivanje na drugi zapis u sistemu, koristite ""# Forma / Napomena / [Napomena ime]"" kao URL veze. (Ne koristite ""http://"")" DocType: User Permission,Allow,Dopustiti apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Da izbjeći ponovio riječi i slova DocType: Communication,Delayed,Odgođen -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Popis backup dostupan za preuzimanje +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Popis backup dostupan za preuzimanje apps/frappe/frappe/www/login.html +86,Sign up,Prijaviti se DocType: Test Runner,Output,izlaz DocType: Email Alert,Set Property After Alert,Set imovine nakon Alert -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Dodaj polja na obrasce. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Dodaj polja na obrasce. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu sa PayPal konfiguraciji ovog sajta. DocType: File,rgt,RGT DocType: Email Account,Sendgrid,SendGrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Tip datoteke DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: Contact Us Settings,Email ID,E-mail ID +DocType: Activity Log,Keep track of all update feeds,Pratite sve feedove ažuriranja DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ako Nanesite korisnika Dozvole se pregledava za Izvještaj DocType ali ne korisnika Dozvole su definirane za Izvještaj za korisnika, onda svi Izvještaji su prikazani na to User" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }}
za slanje referentni dokument
apps/frappe/frappe/modules/utils.py +196,App not found,App nije pronađena
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Ne možete kreirati {0} prema djetetu dokument: {1}
@@ -1899,7 +1903,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Pasiva
DocType: Contact,Accounts Manager,Računi Manager
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Vaša uplata je otkazan.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Select File Type
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Select File Type
DocType: Help Article,Knowledge Base Editor,Baza znanja Editor
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stranica nije pronađena
DocType: DocField,Precision,Preciznost
@@ -1926,12 +1930,12 @@ DocType: Property Setter,Property Type,Vrsta nekretnine
DocType: Workflow State,screenshot,slika ekrana
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Samo administrator može uštedjeti standardne izvješće. Molimo preimenovati i spasiti.
DocType: System Settings,Background Workers,Pozadina Radnici
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,FIELDNAME {0} u sukobu sa meta objekta
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,FIELDNAME {0} u sukobu sa meta objekta
DocType: Deleted Document,Data,Podaci
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument Status
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Napravili ste {0} od {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth kod autorizacije
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Nije dopušteno uvoziti
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Nije dopušteno uvoziti
DocType: Social Login Keys,Frappe Client Secret,Frappe Klijent Secret
DocType: Deleted Document,Deleted DocType,Deleted DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Razine dozvola
@@ -1939,11 +1943,11 @@ DocType: Workflow State,Warning,Upozorenje
DocType: Data Migration Run,Percent Complete,Percent Complete
DocType: Tag Category,Tag Category,Tag Kategorija
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Ignoriranje Stavka {0} , jer jegrupa postoji s istim imenom !"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Pomoć
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Pomoć
DocType: User,Login Before,Prijavite Prije
DocType: Web Page,Insert Style,Umetnite stil
-apps/frappe/frappe/config/setup.py +262,Application Installer,Application Installer
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Izvještaj ime
+apps/frappe/frappe/config/setup.py +269,Application Installer,Application Installer
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Izvještaj ime
DocType: Workflow State,info-sign,info-znak
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Vrijednost za {0} ne može biti lista
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava"
@@ -1956,6 +1960,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Prava pristupa
DocType: Help Article,Intermediate,srednji
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Otkazan dokument je obnovljen kao Nacrt
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Ne može se izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Može čitati
DocType: Custom Role,Response,Odgovor
DocType: DocField,Geolocation,Geolokacija
@@ -1979,8 +1984,8 @@ DocType: OAuth Client,Default Redirect URI,Uobičajeno Redirect URI
DocType: Email Alert,Recipients,Primatelji
DocType: System Settings,Choose authentication method to be used by all users,Izaberite metod autentifikacije koji će koristiti svi korisnici
DocType: Workflow State,ok-sign,ok-prijava
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,izbrisan Dokumenti
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,CSV format je osjetljiv na slovo
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,izbrisan Dokumenti
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,CSV format je osjetljiv na slovo
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Desktop Ikona već postoji
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikat
DocType: Newsletter,Create and Send Newsletters,Kreiranje i slanje newsletter
@@ -1988,14 +1993,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Andaman i Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Navedite što vrijednost polja moraju biti provjereni
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Parent"" označava parent tabelu u kojoj se red mora dodati"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Parent"" označava parent tabelu u kojoj se red mora dodati"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Ne možete poslati ovu e-poruku. Prelazili ste ograničenje slanja e-poruka {0} za ovaj dan.
DocType: Website Theme,Apply Style,Primijeni stil
DocType: Feedback Request,Feedback Rating,povratne informacije Rejting
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Podijeljeno sa
DocType: Help Category,Help Articles,Članci pomoći
,Modules Setup,Podešavanja modula
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Tip:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Tip:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Vaša uplata nije uspjela.
DocType: Communication,Unshared,nedjeljiv
DocType: Address,Karnataka,Karnataka
@@ -2004,12 +2009,11 @@ DocType: User,Location,Lokacija
,Permitted Documents For User,Dopuštene Dokumenti za korisničke
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Morate imati ""Share"" dozvolu"
DocType: Communication,Assignment Completed,Dodjela Završena
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Bulk Edit {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Bulk Edit {0}
DocType: Email Alert Recipient,Email Alert Recipient,E-mail obavijest za primatelja
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ne aktivna
DocType: About Us Settings,Settings for the About Us Page,Postavke za O nama Page
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Traka postavke payment gateway
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Odaberite Vrsta dokumenta u Preuzimanje
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Koristite polje za filtriranje zapisa
DocType: DocType,View Settings,Postavke prikaza
@@ -2032,6 +2036,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Ne mož
DocType: Unhandled Email,Unhandled Email,Unhandled mail
DocType: Event,Monday,Ponedjeljak
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Iskoristite više obrazaca tastature
+DocType: Data Import,Don't create new records,Ne kreirajte nove zapise
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Došlo je do pogreške u postavkama. Molimo Vas da kontaktirate administratora.
DocType: Workflow State,envelope,omotnica
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opcija 2
@@ -2042,41 +2047,41 @@ DocType: Website Settings,Brand Image,imidž brenda
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavljanje gornjoj navigacijskoj traci, podnožje i logo."
DocType: Web Form Field,Max Value,Max vrijednost
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3}
DocType: Contact,All,Sve
DocType: Email Queue,Recipient,Primalac
DocType: Communication,Has Attachment,ima Prilog
DocType: Address,Sales User,Sales korisnika
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Povucite i alatni za izgradnju i prilagodili Print formati.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Povucite i alatni za izgradnju i prilagodili Print formati.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,proširiti
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Set
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Ovaj stil upit je prekinuta
DocType: Email Alert,Trigger Method,Trigger Način
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Operator mora biti jedan od {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Operator mora biti jedan od {0}
DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token
DocType: Workflow State,align-right,poravnanje-desno
DocType: Auto Email Report,Email To,E-mail Da
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Folder {0} nije prazna
DocType: Page,Roles,Uloge
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Greška: Vrijednost nedostaje za {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Polje {0} se ne može odabrati .
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Polje {0} se ne može odabrati .
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Sjednica isteka
DocType: Workflow State,ban-circle,zabrana-krug
DocType: Email Flag Queue,Unread,nepročitanu
DocType: Bulk Update,Desk,Pisaći sto
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Filter mora biti tuple ili lista (na listi)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Filter mora biti tuple ili lista (na listi)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napišite SELECT upita. Napomena rezultat nije zvao (svi podaci se šalju u jednom potezu).
DocType: Email Account,Attachment Limit (MB),Prilog Limit (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Setup Auto-mail
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Setup Auto-mail
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Ovo je top-10 zajedničkih lozinku.
DocType: User,User Defaults,Profil Zadano
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Stvori novo
DocType: Workflow State,chevron-down,Chevron-dolje
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),E-mail ne šalju {0} (odjavljeni / invaliditetom)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),E-mail ne šalju {0} (odjavljeni / invaliditetom)
DocType: Async Task,Traceback,Traceback
DocType: Currency,Smallest Currency Fraction Value,Najmanja Valuta Frakcija Vrijednost
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Dodijeliti
@@ -2096,7 +2101,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Polje ID migracije
DocType: Communication,Comment Type,Komentar Type
DocType: OAuth Client,OAuth Client,OAuth Klijent
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Korisnici
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Korisnici
DocType: Communication,Timeline field Name,Timeline polje Ime
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Tip izvjestaja
@@ -2106,7 +2111,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Unesite tipke omogućiti prijavu putem Facebook , Google, GitHub ."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Nije moguće čitati format za {0}
DocType: Auto Email Report,Filter Data,filter podataka
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodavanje tag
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Molimo priložite datoteku prva.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dolazne e-pošte računa nije ispravan
@@ -2129,7 +2133,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Po
DocType: Website Theme,Link Color,Link Color
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Korisnik {0} se ne može isključiti
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Dragi System Manager,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Tvoja država
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Tvoja država
DocType: Event,Sunday,Nedjelja
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,U Grid View
DocType: Address Template,Template,Predložak
@@ -2154,7 +2158,7 @@ DocType: DocField,Table,Stol
DocType: File,File Size,Veličina
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Morate prijaviti da podnesu ovaj obrazac
DocType: User,Background Image,Pozadinska slika
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valuta"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valuta"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,između
DocType: Async Task,Queued,Na čekanju
@@ -2168,12 +2172,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,Access Token
DocType: About Us Settings,Org History,org Povijest
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Veličina ekrana:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Veličina ekrana:
DocType: Workflow,Workflow Name,Workflow ime
DocType: DocShare,Notify by Email,Obavijesti putem e-pošte
DocType: DocField,In Standard Filter,U Standard Filter
DocType: Web Form,Allow Edit,Dopustite Edit
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Pasta
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Pasta
DocType: Webhook,Doc Events,Doc Events
DocType: Auto Email Report,Based on Permissions For User,Na osnovu Dozvole za korisnika
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Ne mogu promijeniti stanje Otkazan dokumentu .
@@ -2186,10 +2190,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Uključuju simbole, brojeve i slova u lozinku"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Ubacite Nakon polje '{0}' navedenih u Custom Field '{1}', s etiketom '{2}', ne postoji"
DocType: Workflow State,signal,signal
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Ima priloge
DocType: DocType,Show Print First,Pokaži Ispis Prvo
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter da biste odgovorili
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Napravite nove {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Novi e-pošte
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Novi e-pošte
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Obnovljena dokument
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Izaberite jezik ...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Ne možete postaviti 'Opcije' za polje {0}
@@ -2210,13 +2215,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Move u smeće
DocType: Web Form,Web Form Fields,Web Form Fields
DocType: Website Theme,Top Bar Text Color,Top Bar Boja teksta
+DocType: Data Import,Amended From,Izmijenjena Od
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Upozorenje: Nije moguće pronaći {0} na bilo sto u vezi sa {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno na čekanju za izvršenje. Molimo pokušajte ponovo
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno na čekanju za izvršenje. Molimo pokušajte ponovo
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Datoteka '{0}' nije pronađena
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Uklonite točki
DocType: User,Change Password,Promjena lozinke
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Nevažeći email: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Zdravo!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Zdravo!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Kraj događaj mora biti nakon početka
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Ovo će se odjaviti {0} sa svih drugih uređaja
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Nemate dozvolu da dobijete izvještaj na: {0}
@@ -2225,26 +2231,27 @@ DocType: DocField,Allow Bulk Edit,Dozvolite Bulk Uredi
DocType: Blog Post,Blog Post,Blog članak
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Napredna pretraga
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Niste dozvoljeni da pogledate bilten.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Nivo 0 je za dozvole nivou dokumenta, \ višim nivoima za dozvole na terenu."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Sortiraj po
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,Ne možete sačuvati formular jer je u toku sa uvozom podataka.
DocType: Workflow,States,Države
DocType: Email Alert,Attach Print,Priložiti Print
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Predložena ime: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,dan
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,dan
,Modules,Moduli
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Set Desktop Icons
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,plaćanje Uspjeh
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Ne {0} mail
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Greška u upload fajlova
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Ne {0} mail
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Greška u upload fajlova
DocType: OAuth Bearer Token,Revoked,Ukinuto
DocType: Web Page,Sidebar and Comments,Sidebar i Komentari
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kada Izmijeniti dokument nakon Odustani i spasiti ga , on će dobiti novi broj koji jeverzija starog broja ."
DocType: Stripe Settings,Publishable Key,objaviti Key
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Započnite uvoz
DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis cache poslužitelj nije pokrenut. Molimo kontaktirajte Administrator / Tech podršku
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party ime
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Party ime
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Napravite novi zapis
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pretraživanje
DocType: Currency,Fraction,Frakcija
@@ -2269,8 +2276,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Kreiraj proizvode
DocType: Contact,Image,Slika
DocType: Workflow State,remove-sign,uklanjanje-potpisati
+DocType: Domain Settings,Domains HTML,Domene HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Tip nešto u polje za pretragu za pretragu
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Definirajte radne procese za oblike.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Definirajte radne procese za oblike.
DocType: Address,Other,Drugi
DocType: S3 Backup Settings,Access Key ID,Access Key ID
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Start novi format
@@ -2283,6 +2291,7 @@ DocType: Customize Form Field,Is Custom Field,Je Custom Field
DocType: Workflow,"If checked, all other workflows become inactive.","Ako je označeno, svi ostali tijekovi postaju neaktivne."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Labela]: [vrsta polja] / [Opcije]: [Širina]
DocType: Workflow State,folder-close,mapa-blizu
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Izveštaj:
DocType: Print Settings,Print taxes with zero amount,Odštampajte poreze sa nultim iznosom
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} ne smije biti preimenovan
DocType: Custom Script,Custom Script,Prilagođena skripta
@@ -2294,32 +2303,35 @@ DocType: Email Flag Queue,Action,Akcija
DocType: GSuite Settings,Script URL,skripta URL
apps/frappe/frappe/www/update-password.html +111,Please enter the password,Molimo vas da unesete lozinku
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Nije dozvoljeno da se ispis otkazan dokumentima
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Nije vam dozvoljeno da se stvori kolona
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Info:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Nije vam dozvoljeno da se stvori kolona
+DocType: Data Import,If you don't want to create any new records while updating the older records.,Ako ne želite da kreirate nove zapise tokom ažuriranja starijih zapisa.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info:
DocType: Custom Field,Permission Level,Dopuštenje Razina
DocType: User,Send Notifications for Transactions I Follow,Slanje obavijesti za transakcije pratim
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja"
+DocType: Google Maps,Client Key,Client Key
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati prilog?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne možete izbrisati ili otkazati jer {0} {1} je povezan s {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Hvala
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Snimanje
DocType: Print Settings,Print Style Preview,Prikaz stila ispisa
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Vi ne smijete ažurirati ovu Web Form Dokument
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,Emails
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Emails
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Molimo odaberite Document Type prvi
DocType: About Us Settings,About Us Settings,"""O nama"" podešavanja"
DocType: Website Settings,Website Theme,Website Theme
DocType: DocField,In List View,U prikazu popisa
DocType: Email Account,Use TLS,Koristi TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neispravno korisničko ime ili lozinka
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Dodaj sopstveni JavaScript na obrasce.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Sr No
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Preuzmite predložak
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Dodaj sopstveni JavaScript na obrasce.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Sr No
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nalog nije podešen. Molimo vas da kreirate novi nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog
,Role Permissions Manager,Menadzer prava pristupa
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog Format
DocType: Data Migration Run,Pull Insert,Povucite umetak
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,jasno Prilog
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Obavezno:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Obavezno:
,User Permissions Manager,Upravljanje pravima pristupa
DocType: Property Setter,New value to be set,Nova vrijednost treba postaviti
DocType: Email Alert,Days Before or After,Dana prije ili poslije
@@ -2329,7 +2341,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Header i roboti
DocType: User Permission,User Permission,Korisnička ovlast
apps/frappe/frappe/config/website.py +32,Blog,Blog
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP nije instaliran
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Preuzimanje s podacima
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Preuzimanje s podacima
DocType: Workflow State,hand-right,ruka-desna
DocType: Website Settings,Subdomain,Poddomena
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Postavke za OAuth Provider
@@ -2345,21 +2357,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Molimo odaberite ocjenu
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Resetuj OTP Secret
DocType: Email Account,Notify if unreplied for (in mins),Obavijesti ako Unreplied za (u min)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,Prije 2 dana
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,Prije 2 dana
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu.
DocType: Workflow State,Time,Vrijeme
DocType: DocField,Attach,Priložiti
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Pošalji povratne informacije Zahtjev samo ako postoji barem jedan komunikacija je na raspolaganju za taj dokument.
DocType: Custom Role,Permission Rules,Dopuštenje Pravila
DocType: GSuite Settings,GSuite Settings,GSuite Postavke
DocType: Address,Links,Linkovi
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Izaberite tip dokumenta.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Vrijednost nestao
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Dodaj podređenu stavku
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati.
DocType: GSuite Templates,Template Name,template Name
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,novi tip dokumenta
DocType: Custom DocPerm,Read,Čitati
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Molimo da podesite podrazumevani nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Dozvola za Page i Izvještaj
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost
@@ -2367,18 +2381,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Old Password
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Postova od {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Za formatiranje stupaca, daju natpise stupaca u upitu."
DocType: Has Domain,Has Domain,ima Domain
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Sakrij
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Sakrij
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Nemate korisnički račun? Prijaviti se
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,Nije moguće ukloniti ID polje
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,link DocType
+DocType: Activity Log,Link DocType,link DocType
DocType: Social Login Keys,Social Login Keys,Društvena Prijava Keys
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Uklonite sve prilagodbe ?
DocType: Website Slideshow,Slideshow Name,SLIKA Naziv
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Otkazivanje
DocType: DocType,Allow Rename,Dopusti preimenovanje
-DocType: Authentication Log,Full Name,Ime i prezime
+DocType: Activity Log,Full Name,Ime i prezime
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Dijete Tablice su prikazane kao Grid u drugim DocTypes.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Stranica koju tražite je nestala. Ovo bi moglo biti zato što se preselio ili postoji greška u linku.
apps/frappe/frappe/www/404.html +25,Error Code: {0},Kod greške: {0}
@@ -2409,18 +2424,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
mogu se javiti. Hvala!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Ne mogu se spojiti na odlasku e-mail poslužitelju
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Hvala Vam na Vašem interesu za pretplatu na naš ažuriranja
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Custom Kolona
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Custom Kolona
DocType: Workflow State,resize-full,resize-pun
DocType: Workflow State,off,Isključen
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Izvještaj {0} je onemogućen
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Preporučuje se za umetanje nove rekorde.
-DocType: Async Task,Core,Srž
+DocType: Activity Log,Core,Srž
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,set Dozvole
DocType: DocField,Set non-standard precision for a Float or Currency field,Set nestandardne preciznosti za Float ili valuta polja
DocType: Email Account,Ignore attachments over this size,Zanemari priloge preko ove veličine
DocType: Address,Preferred Billing Address,Željena adresa za naplatu
apps/frappe/frappe/config/integrations.py +68,External Documents,vanjski dokumenti
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} godinu dana
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu . Molimo poslali manje zahtjeve
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Promena vrednosti
DocType: Workflow State,arrow-up,Strelica prema gore
@@ -2428,10 +2441,9 @@ DocType: OAuth Bearer Token,Expires In,ističe u
DocType: DocField,Allow on Submit,Dopusti pri potvrdi
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Izuzetak Tip
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Odaberi kolone
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Odaberi kolone
DocType: Web Page,Add code as <script>,Dodaj kod kao
DocType: Webhook,Headers,Headers
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Odaberite tip
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,Unesite vrijednosti za App pristup Key i App tajni ključ
DocType: Web Form,Accept Payment,Prihvati plaćanja
apps/frappe/frappe/config/core.py +62,A log of request errors,Evidenciju zahtjeva grešaka
@@ -2439,7 +2451,7 @@ DocType: Report,Letter Head,Zaglavlje
DocType: DocType,Quick Entry,Brzo uvođenje
DocType: Web Form,Button Label,Button Label
DocType: Website Theme,UPPERCASE,UPPERCASE
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} stavkama koje su izabrane
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} stavkama koje su izabrane
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,obustaviti Slanje
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Drag elemenata iz sidebar dodati. Povucite ih u smeće.
DocType: Workflow State,resize-small,resize-mala
@@ -2465,21 +2477,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Prilagodb
DocType: Workflow State,Edit,Uredi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Dozvole se može upravljati putem Setup & gt; Uloga Dozvole Manager
DocType: Contact Us Settings,Pincode,Poštanski broj
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,Molimo provjerite da nema praznih stupaca u datoteci.
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,Molimo provjerite da nema praznih stupaca u datoteci.
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,Pobrinite se da vaš profil ima e-mail adresu
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,Vi niste spremili promjene u ovom obliku .
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija
DocType: User,User Image,Upute slike
apps/frappe/frappe/email/queue.py +336,Emails are muted,E-mailovi su prigušeni
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Heading Style
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,će se stvoriti novi projekt s ovim imenom
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,prije 1 sedmica
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,će se stvoriti novi projekt s ovim imenom
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,prije 1 sedmica
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Vi ne možete instalirati ovu aplikaciju
DocType: Communication,Error,Pogreška
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Ne slanje e-pošte.
+DocType: Data Import,Ignore encoding errors,Ignorišite greške kodiranja
DocType: DocField,Column Break,Kolona Break
DocType: Event,Thursday,Četvrtak
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Ne morate dozvolu za pristup ovom datoteku
@@ -2506,7 +2518,6 @@ DocType: Webhook,Webhook Request,Zahtev za webhook
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Izdavač
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Neuspjesno:{0} na:{1} : {2}
DocType: Data Migration Mapping,Mapping Type,Tip mapiranja
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Odaberite Obavezno
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Izaberi
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Nema potrebe za simbole, cifre, ili velika slova."
DocType: DocField,Currency,Valuta
@@ -2516,10 +2527,11 @@ DocType: Async Task,Running,Running
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Reset Password
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Molimo nadogradite da dodate više od {0} pretplatnika
DocType: Workflow State,hand-left,ruka-lijeva
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena
+DocType: Data Import,If you are updating/overwriting already created records.,Ako ažurirate / prepisujete već kreirane zapise.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena
DocType: Email Account,Use SSL,Koristite SSL
DocType: Workflow State,play-circle,play-krug
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",Nevažeći izraz "depends_on"
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",Nevažeći izraz "depends_on"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Odaberite Format Edit
DocType: Address,Shipping,Transport
DocType: Workflow State,circle-arrow-down,krug sa strelicom prema dolje
@@ -2531,25 +2543,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,Strelica desno
DocType: Workflow State,Workflow state represents the current state of a document.,Workflow države predstavlja trenutno stanje dokument.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token nedostaje
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Napomena: Promjena Page ime će slomiti prethodne URL na ovu stranicu.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,Napomena: Promjena Page ime će slomiti prethodne URL na ovu stranicu.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Uklonjena {0}
DocType: SMS Settings,SMS Settings,Podešavanja SMS-a
DocType: Company History,Highlight,Istaknuto
DocType: OAuth Provider Settings,Force,sila
DocType: DocField,Fold,Saviti
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Uzlazni
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standardni format ispisa ne može biti obnovljeno
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Nedostajati
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,Navedite
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,Navedite
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Pomoć član
DocType: Page,Page Name,Ime stranice
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Pomoć: Field Properties
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Uvoz ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,otvoriti rajsfešlus
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Netočna vrijednost u redu {0} : {1} mora biti {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Netočna vrijednost u redu {0} : {1} mora biti {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Postavio Dokument se ne može pretvoriti natrag u nacrtu .
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Brisanje {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Brisanje {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Odaberite postojeći format za uređivanje ili započeti novi format.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Napravljeno Custom Field {0} u {1}
DocType: System Settings,Time Zone,Time Zone
@@ -2565,16 +2575,19 @@ DocType: Workflow State,Home,dom
DocType: OAuth Provider Settings,Auto,auto
DocType: System Settings,User can login using Email id or User Name,Korisnik se može prijaviti koristeći E-mail id ili Korisničko ime
DocType: Workflow State,question-sign,pitanje-prijava
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Ubaci kolonu pre {0}
DocType: Email Account,Add Signature,Dodaj Potpis
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Ostavio ovaj razgovor
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Zar nije postavljen
,Background Jobs,Pozadina Jobs
DocType: ToDo,ToDo,To do
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Podešavanja> Korisnik
DocType: DocField,No Copy,Ne Kopirajte
DocType: Workflow State,qrcode,qrcode
+DocType: Data Import,Submit after importing,Pošaljite nakon uvoza
apps/frappe/frappe/www/login.html +31,Login with LDAP,Prijavite se LDAP
DocType: Web Form,Breadcrumbs,Breadcrumbs
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Ako Vlasnik
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Ako Vlasnik
DocType: Data Migration Mapping,Push,Guranje
DocType: OAuth Authorization Code,Expiration time,vrijeme isteka
DocType: Web Page,Website Sidebar,Sajt Sidebar
@@ -2590,6 +2603,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Postavke ispisa
DocType: Page,Yes,Da
DocType: DocType,Max Attachments,Max priloga
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klijentski ključ je potreban
DocType: Calendar View,End Date Field,Kraj Datum Polja
DocType: Desktop Icon,Page,Stranica
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},nisu mogli naći {0} u {1}
@@ -2600,18 +2614,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},Vrijed
DocType: Feedback Request,Is Manual,je ručna
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil predstavlja boju gumba: Uspjeh - zelena, opasnosti - Crvena, Inverzni - crna, Primarni - tamnoplava, info - svjetlo plava, upozorenje - Orange"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ne Izvješće Loaded. Molimo koristite upita izvješće / [Prijavi Ime] pokrenuti izvješće.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Status rata
DocType: Workflow Transition,Workflow Transition,Tijek tranzicije
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,prije {0} mjeseci
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Kreirao
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Dropbox Setup
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Dropbox Setup
DocType: Workflow State,resize-horizontal,resize-horizontalna
DocType: Note,Content,Sadržaj
DocType: Data Migration Run,Push Insert,Push Insert
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Group Node
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Group Node
DocType: Communication,Notification,obavijest
DocType: DocType,Document,Dokument
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Serija {0} već koristi u {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Nepodržani format datoteke
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Nepodržani format datoteke
DocType: DocField,Code,Šifra
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Sve je moguće Workflow države i uloge rada. Docstatus opcije: 0 je "spremljene", 1 je "dostavljen" i 2 je "Otkazano""
DocType: Website Theme,Footer Text Color,Footer Boja teksta
@@ -2619,6 +2634,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Zadnja i
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Dozvole su na nivou 0 dozvole Dokument Level, odnosno oni su primarni za pristup dokumentu."
DocType: Email Alert,Print Format,Format ispisa
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Nevažeći payment gateway vjerodajnice
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ovo je šablon datoteka generisana samo sa redovima koji imaju neku grešku. Trebali biste koristiti ovu datoteku za korekciju i uvoz.
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Postaviti dozvole vrsta dokumenata i uloge
apps/frappe/frappe/model/meta.py +159,No Label,No Label
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Ažuriranje ...
@@ -2643,15 +2659,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,Odgovor
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Strane u Desk (nosioci mjesto)
DocType: DocField,Collapsible Depends On,Sklopivi Ovisi On
DocType: Print Style,Print Style Name,Ime stila za štampu
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen osnovni obrazac naslova. Molimo vas da kreirate novu od Setup> Printing and Branding> Template Template.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,od strane
DocType: Print Settings,Allow page break inside tables,Dozvolite prijelom stranice unutar tablice
DocType: Email Account,SMTP Server,SMTP Server
DocType: Print Format,Print Format Help,Print Format Pomoć
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Ažurirati predložak i sačuvati u preuzetim formatu pre postavljanja.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,s Groups
DocType: DocType,Beta,beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},obnovljena {0} kao {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ako ažurirate, molimo odaberite ""Prepiši"" drugi postojeće redove neće biti izbrisani."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ako ažurirate, molimo odaberite ""Prepiši"" drugi postojeće redove neće biti izbrisani."
DocType: Event,Every Month,Svaki mjesec
DocType: Letter Head,Letter Head in HTML,Zaglavlje HTML
DocType: Web Form,Web Form,Web Form
@@ -2661,15 +2677,15 @@ DocType: Print Settings,Allow Print for Cancelled,Dozvolite Ispis za Otkazano
DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo polje da biste postavili status slanje e
DocType: Web Form,Web Page Link Text,Web Page Link Text
DocType: Page,System Page,sistem Page
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Postavite zadani format, veličina stranice, print stil itd."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Postavite zadani format, veličina stranice, print stil itd."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ITD
DocType: Website Settings,Include Search in Top Bar,Uključiti Traži u Top Bar
DocType: GSuite Settings,Allow GSuite access,Dozvoli GSuite pristup
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Imenovanje
DocType: Event,Every Year,Svaki Godina
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Odaberite sve
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Custom Prijevodi
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Odaberite sve
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Custom Prijevodi
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,napredak
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,prema ulozi
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,Polja koja nedostaju
@@ -2681,14 +2697,13 @@ DocType: File,Thumbnail URL,Thumbnail URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Prilagođeni izvjestaji
DocType: Website Script,Website Script,Web Skripta
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Ako ne koristite vlastitu objaviti Google Apps Script webapp možete koristiti zadani https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Prilagođene HTML Obrasci za ispis transakcija.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Prilagođene HTML Obrasci za ispis transakcija.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,orijentacija
DocType: Workflow,Is Active,Je aktivan
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Nema daljnjih zapisi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Podešavanje> Menadžer dozvola korisnika
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Nema daljnjih zapisi
DocType: DocField,Long Text,Dugo Tekst
DocType: Workflow State,Primary,Osnovni
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},"Molim vas, nemojte mijenjati retke iznad {0}"
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},"Molim vas, nemojte mijenjati retke iznad {0}"
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Idite na ovaj URL nakon popunjavanja obrasca (samo za korisnike gostiju)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,Više informacija
@@ -2700,7 +2715,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,zvono
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Greška u e-mail upozorenja
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dijele ovaj dokument
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,"{0} {1} Ne može biti čvor nultog stupnja , kad ima djecu"
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,"{0} {1} Ne može biti čvor nultog stupnja , kad ima djecu"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Dodaj Prilog
DocType: Data Migration Mapping,Sync,Sync
@@ -2751,7 +2766,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Payment Gateway
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Da bi acess na ulogu samo za posebne evidencije, provjerite Primjena korisnika Dozvole. Korisnik Dozvole se koriste za ograničavanje korisnicima kao ulogu na određene evidencije."
DocType: Portal Settings,Hide Standard Menu,Hide Standard Menu
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Dodaj / Upravljanje mail domena.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Dodaj / Upravljanje mail domena.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Ne može otkazati prije slanja.
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} je onemogućen
DocType: Email Alert,Send days before or after the reference date,Pošalji dana prije ili nakon referentnog datuma
@@ -2760,7 +2775,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Vrijednost
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Kliknite ovdje za provjeru
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Predvidljivo zamjene kao što su "@" umjesto "a" ne pomažu puno.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Dodijelio drugima
-apps/frappe/frappe/utils/data.py +480,Zero,nula
+apps/frappe/frappe/utils/data.py +485,Zero,nula
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne u Developer Mode! U site_config.json ili napraviti 'Custom' DOCTYPE.
DocType: Workflow State,globe,globus
DocType: System Settings,dd.mm.yyyy,dd.mm.gggg
@@ -2780,11 +2795,12 @@ DocType: Module Def,Module Name,Naziv modula
DocType: DocType,DocType is a Table / Form in the application.,Vrsta dokumenta je Tabela / obrazac u aplikaciji.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Izvještaj
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Izvještaj
DocType: SMS Settings,Use POST,Koristite POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,Web View
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Upozorenje: Ovaj format ispisa u starom stilu i ne može biti generiran preko API-ja.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Ukupan rezultat
DocType: DocField,Print Width,Širina ispisa
,Setup Wizard,Čarobnjak za postavljanje
DocType: Address,GST State Number,PDV država Broj
@@ -2810,26 +2826,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Obnovite SMS Settings
DocType: Event,Event Type,Vrsta događaja
DocType: User,Last Known Versions,Posljednje poznate verzije
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Dodaj / Upravljanje Email Accounts.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Dodaj / Upravljanje Email Accounts.
DocType: Newsletter,Published,Objavljen
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Hvala vam na e-mail
DocType: DocField,Small Text,Mali Tekst
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,jednak
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml'
DocType: About Us Settings,Team Members Heading,Članovi tima Naslov
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Invalid CSV format
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Broj Backup
DocType: DocField,Do not allow user to change after set the first time,Ne dopustiti korisniku izmjene nakon što je upisao prvi put
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Privatni ili javni?
-apps/frappe/frappe/utils/data.py +578,1 year ago,prije 1 godina
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privatni ili javni?
+apps/frappe/frappe/utils/data.py +590,1 year ago,prije 1 godina
DocType: Contact,Contact,Kontakt
DocType: User,Third Party Authentication,Autentičnosti treće strane
DocType: Website Settings,Banner is above the Top Menu Bar.,Baner je iznad gornjeg menija.
DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Izvoz Izvještaj:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} ne postoji
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Izvoz Izvještaj:
DocType: Data Migration Run,Push Update,Push Update
DocType: Email Account,Port,luka
DocType: Print Format,Arial,Arial
@@ -2846,15 +2861,15 @@ DocType: Dropbox Settings,Dropbox Settings,Dropbox Postavke
DocType: About Us Settings,More content for the bottom of the page.,Više sadržaja za podnožje stranice.
DocType: Workflow,DocType on which this Workflow is applicable.,Vrsta dokumenta na koje se primjenjuje ovaj radni proces.
DocType: Feedback Trigger,Enabled,Omogućeno
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Nije uspelo da završi podešavanje
DocType: Tag Category,Category Name,Naziv kategorije
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Uvoz Pretplatnici
DocType: Print Settings,PDF Settings,PDF postavke
DocType: Kanban Board Column,Column Name,Kolona Ime
DocType: Language,Based On,Na osnovu
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Svi ste postavljeni!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Make Uobičajeno
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Provjerite Frappe Server URL
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane
DocType: Communication,Email Account,Email nalog
DocType: Workflow State,Download,Preuzimanje
DocType: Blog Post,Blog Intro,Blog intro
@@ -2870,7 +2885,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Nevažeći limit {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis vrstu dokumenta
DocType: Event,Ref Type,Ref. Tip
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako upload nove rekorde, napustiti ""ime"" (ID) kolonu prazan."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako upload nove rekorde, napustiti ""ime"" (ID) kolonu prazan."
DocType: Data Migration Run,Current Mapping Delete Start,Trenutni mapiranje Izbriši Start
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Greške u pozadini Događanja
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Broj Kolumne
@@ -2882,22 +2897,22 @@ DocType: Website Settings,Website Theme Image,Website Theme Slika
DocType: Workflow State,road,cesta
DocType: LDAP Settings,Organizational Unit,organizacione jedinice
DocType: User,Timezone,Timezone
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Nije moguće opterećenje : {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},Nije moguće opterećenje : {0}
apps/frappe/frappe/config/integrations.py +28,Backup,rezerva
DocType: DocField,Read Only,Read Only
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Novi Newsletter
DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF
DocType: Web Form,Amount,Iznos
DocType: Workflow Transition,Allowed,Dopušteno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Ne može pisati format za {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Vraćanje na standardne postavke?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nevažeća naslovnica
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Neuspješno logovanje. Pokušaj ponovo.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Neuspješno logovanje. Pokušaj ponovo.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1}
DocType: Auto Email Report,Send only if there is any data,Pošalji samo ako postoji bilo koji podatak
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset Filteri
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija na nivou 0 mora biti postavljena prije vecih nivoa autorizacije
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija na nivou 0 mora biti postavljena prije vecih nivoa autorizacije
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zadatak zatvorio / la {0}
DocType: Integration Request,Remote,daljinski
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj
@@ -2908,7 +2923,6 @@ DocType: Error Snapshot,Locals,Mještani
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Komunicirali preko {0} na {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} vas je spomenuo komentaru {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nalog nije podešen. Molimo vas da kreirate novi nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} je potrebno
DocType: Integration Request,Integration Type,integracija Tip
DocType: Newsletter,Send Attachements,Pošalji Attachements
@@ -2918,16 +2932,15 @@ DocType: DocField,Perm Level,Perm Level
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Događanja u današnjem kalendaru
DocType: Web Page,Web Page,Web stranica
DocType: Blog Category,Blogger,Bloger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Preskočite redove sa greškama.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Prikaz liste
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Prikaz liste
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Datum mora biti u formatu: {0}
DocType: Workflow,Don't Override Status,Ne zamenjuju Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Molim Vas, dajte ocjenu."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Upit
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,pojam za pretragu
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,Prvo Korisnik : Vi
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Select Columns
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,Prvo Korisnik : Vi
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Select Columns
DocType: Translation,Source Text,izvorni tekst
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Nedostaje parametri za prijavu
DocType: Workflow State,folder-open,mapa otvoriti
@@ -2939,18 +2952,17 @@ DocType: Page,No,Ne
DocType: Property Setter,Set Value,Postavite vrijednost
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Sakrij polju u obliku
DocType: Webhook,Webhook Data,Webhook Data
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Ilegalni Access Token. Molimo pokušajte ponovo
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Ilegalni Access Token. Molimo pokušajte ponovo
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Aplikacija je ažurirana na novu verziju, molimo vas da osvježite ovu stranicu"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Ponovo pošalji
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opcionalno: upozorenje će biti poslana ako ovaj izraz je istina
DocType: Data Migration Plan,Plan Name,Ime plana
DocType: Print Settings,Print with letterhead,Ispis sa zaglavljem
DocType: Unhandled Email,Raw Email,Raw-mail
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Izaberite Records za dodjelu
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Uvoz
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Izaberite Records za dodjelu
DocType: ToDo,Assigned By,Dodijeljen od strane
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Možete koristiti Prilagodi obrazac za postavljanje razine na poljima .
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Izaberite svoj region
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Izaberite svoj region
DocType: Custom DocPerm,Level,Nivo
DocType: Custom DocPerm,Report,Izvjestaj
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0.
@@ -2969,7 +2981,7 @@ DocType: Website Theme,Background,Pozadina
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lista DocTypes koristi za primjenu korisnika Dozvole. Ako prazan, svi povezani DocTypes će se koristiti da se prijave korisnika Dozvole."
DocType: Report,Ref DocType,Ref. DOCTYPE
apps/frappe/frappe/www/feedback.py +42,Please add a rating,Molimo dodajte ocjenu
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Full Page
DocType: DocType,Is Child Table,Je Dijete Tablica
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} mora biti jedan od {1}
@@ -2981,7 +2993,7 @@ DocType: Workflow State,chevron-left,Chevron-lijevo
DocType: Communication,Sending,Slanje
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Nije dopušteno s ove IP adrese
DocType: Website Slideshow,This goes above the slideshow.,To ide iznad slideshow.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Instaliranje programa .
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Instaliranje programa .
DocType: Contact,Last Name,Prezime
DocType: Event,Private,Privatan
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Nema upozorenja za danas
@@ -2998,19 +3010,19 @@ DocType: Event,Send an email reminder in the morning,Pošaljite email podsjetnik
DocType: Blog Post,Published On,Objavljeno Dana
DocType: Contact,Gender,Rod
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obavezna nedostaju informacije:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Proverite URL adresu za potraživanje
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Samo 200 umetke dozvoljeno u jednom zahtjevu
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,Vratite se na ekran Verifikacija i unesite šifru koju prikazuje vaša aplikacija za potvrdu identiteta
DocType: ToDo,Reference Type,Referentna Tip
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,Molimo omogućite režim za razvoj kako biste kreirali novu vezu
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,Molimo omogućite režim za razvoj kako biste kreirali novu vezu
DocType: Event,Repeat On,Ponovite Na
DocType: SMS Parameter,SMS Parameter,SMS parametar
DocType: Communication,Marked As Spam,Označene kao neželjene
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Postoji neki problem sa URL datoteku: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,drvo
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,Nije vam dozvoljeno da štampate ovu izvještaj
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,Nije vam dozvoljeno da štampate ovu izvještaj
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Korisničke ovlasti
DocType: Workflow State,warning-sign,Znak upozorenja
DocType: Workflow State,User,Korisnik
@@ -3042,64 +3054,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Podrazumjevano
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} je dodao
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Pretraži stranice za '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Molimo da najprije spasiti izvještaj
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,Molimo da najprije spasiti izvještaj
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} pretplatnika dodano
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne nalazi se u
DocType: Workflow State,star,zvijezda
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,Vrijednosti razdvojene zarezom
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,Vrijednosti razdvojene zarezom
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Molimo vas da podijelite svoje povratne informacije za {0}
apps/frappe/frappe/config/website.py +13,Content web page.,Sadržaj web stranice.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj novu ulogu
DocType: Deleted Document,Deleted Document,Deleted Document
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Ups! Nešto je pošlo po zlu
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Ups! Nešto je pošlo po zlu
DocType: Help Article,Category,Kategorija
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Strani klijenta skriptu ekstenzije u Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Smjernice za instaliranje LDAP dependancies i Python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Blog uvod
DocType: Address,Office,Ured
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Ovo Kanban Odbor će biti privatni
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Ovo Kanban Odbor će biti privatni
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardni Izvještaji
DocType: User,Email Settings,Postavke e-pošte
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,Molimo vas da unesete lozinku kako Nastavi
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nije važeći LDAP korisnik
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nije validan uslov
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',Odaberite drugi način plaćanja. PayPal ne podržava transakcije u valuti '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Polje za pretragu {0} nije važeća
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Polje za pretragu {0} nije važeća
DocType: Workflow State,ok-circle,ok-krug
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Možete naći stvari tražeći 'Pronađite narančaste kupce'
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Žao mi je! Korisnik treba imati potpuni pristup na svoje rekord.
,Usage Info,Uporaba Info
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Invalid Token
DocType: Email Account,Email Server,E-mail Server
-DocType: DocShare,Document Type,Tip dokumenta
+DocType: Data Import,Document Type,Tip dokumenta
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Oznaka je obvezna
DocType: PayPal Settings,API Username,API Korisničko
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Pola dana
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Pola dana
DocType: Communication,Communication Type,Vrsta komunikacije
DocType: DocField,Unique,Jedinstven
-DocType: Data Migration Run,Partial Success,Delimičan uspjeh
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Delimičan uspjeh
DocType: Email Account,Service,Usluga
DocType: File,File Name,Naziv datoteke
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} )
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} )
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Ups, nije vam dozvoljeno da zna da"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Sljedeći
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Sljedeći
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Uspješno ste se odjavili
DocType: Calendar View,Calendar View,Pregled kalendara
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edit Format
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Kompletna Registracija
DocType: GSuite Settings,Enable,omogućiti
+DocType: Google Maps,Home Address,Kućna adresa
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Novi {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar u boji i teksta u boji su isti. Njih treba imati dobar kontrast da bude čitljiv.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Možete poslati samo upto 5000 unosa u jednom pokretu. (Mogu biti manje u nekim slučajevima)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Možete poslati samo upto 5000 unosa u jednom pokretu. (Mogu biti manje u nekim slučajevima)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Nedovoljna Dozvola za {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Izvješće nije spašen (bilo pogrešaka)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Izvješće nije spašen (bilo pogrešaka)
DocType: Print Settings,Print Style,Ispis Style
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nije povezano sa svaki trag
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nije povezano sa svaki trag
DocType: Custom DocPerm,Import,Uvoz
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Nije dozvoljeno da se omogući Dozvoli na Postavi za standardne polja
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Uvoz / izvoz podataka
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Uvoz / izvoz podataka
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardne uloge ne mogu se preimenovati
DocType: Communication,To and CC,Da i CC
DocType: SMS Settings,Static Parameters,Statički parametri
@@ -3121,18 +3134,17 @@ DocType: Web Page,Header and Description,Zaglavlja i opis
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Potrebni su i korisničko ime i pristupna lozinka
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,Osvježite se dobiti najnovije dokument.
DocType: User,Security Settings,Podešavanja sigurnosti
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Dodaj kolonu
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Dodaj kolonu
,Desktop,Radna površina
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Izvoz Izvještaj: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Izvoz Izvještaj: {0}
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst koji će biti prikazani na Link na web stranicu ako se ovaj oblik ima web stranice. Link ruta će biti automatski na osnovu `` page_name` i parent_website_route`
DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger
DocType: S3 Backup Settings,Backup Limit,Ograničenje rezervne kopije
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,Molimo postavite {0} Prvi
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,Molimo postavite {0} Prvi
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Zakrpa
-DocType: Async Task,Failed,Nije uspio
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Nema pronađenih podataka
+DocType: Activity Log,Failed,Nije uspio
DocType: Web Form,Allow Comments,Dopustite Komentari
DocType: User,Background Style,Pozadinski stil
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,Bypass Two Factor Auth za korisnike koji se prijavljuju iz ograničene IP adrese
@@ -3141,7 +3153,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},spojio {0} u {1}
DocType: System Settings,mm-dd-yyyy,dd-mm-yyyy
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Nova veza
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} prijavljeni
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} prijavljeni
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Vaša login id je
DocType: OAuth Client,Skip Authorization,Idi Authorization
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Ne možete uređivati standardnu e-poštu. Da biste uredili, molim vas onemogućite ovo i duplirajte ga"
diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv
index 5449782f21..219791973e 100644
--- a/frappe/translations/ca.csv
+++ b/frappe/translations/ca.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Una nova tasca, {0}, s'ha assignat a vostè per {1}. {2}"
DocType: Email Queue,Email Queue records.,Registres de cua de correu electrònic.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Post
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Seleccioneu Partit Tipus primer
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Seleccioneu Partit Tipus primer
DocType: Address,Punjab,Panjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Canviar el nom de molts articles mitjançant la pujada d'un arxiu .csv.
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Canviar el nom de molts articles mitjançant la pujada d'un arxiu .csv.
DocType: Workflow State,pause,pausa
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,No està autoritzat a accedir a aquesta pàgina.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,No s'han trobat resultats per a '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,La seva informació s'ha enviat apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,L'usuari {0} no es pot eliminar DocType: System Settings,Currency Precision,precisió de divises @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Accessori DocType: Communication,Message ID,ID de missatge DocType: Property Setter,Field Name,Nom del camp apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite no està configurat. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,o +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,o apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nom del mòdul ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuar DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,certificat DocType: User,Tile,Rajola apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Verificant ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,La Primera columna de dades ha d'estar en blanc. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,La Primera columna de dades ha d'estar en blanc. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostra totes les versions DocType: Workflow State,Print,Impressió DocType: User,Restrict IP,Restringir IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,panell apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,No es poden enviar missatges de correu electrònic en aquest moment apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Busca o escriu una ordre -DocType: Communication,Timeline Name,Nom de la línia de temps +DocType: Activity Log,Timeline Name,Nom de la línia de temps DocType: Email Account,e.g. smtp.gmail.com,per exemple smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Afegir una nova regla DocType: Contact,Sales Master Manager,Gerent de vendes @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,C DocType: Top Bar Item,Parent Label,Etiqueta de Pares apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","La seva petició ha estat rebuda. Li contestarem en breu. Si vostè té alguna informació addicional, si us plau respongui a aquest correu." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Els permisos es tradueixen automàticament als informes estàndard i recerques. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,S'ha requerit el token d'inici de sessió +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} és un camp obligatori +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,S'ha requerit el token d'inici de sessió DocType: Event,Repeat Till,Repeteix Fins apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Nou apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Si us plau, establir l'adreça URL de l'escriptura en Configuració GSuite" @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Pròxims esdeveniments per avui DocType: Email Alert Recipient,Email By Document Field,Email per camp del document DocType: Domain Settings,Domain Settings,Configuració del domini -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Mida dels fitxers: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Mida dels fitxers: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,modernització apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},No es pot connectar: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Una paraula de per si és fàcil d'endevinar. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Fraction Units apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} de {1} a {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Marqueu com a fet DocType: Communication,Type,Tipus -DocType: Authentication Log,Subject,Subjecte +DocType: Activity Log,Subject,Subjecte DocType: Web Form,Amount Based On Field,Quantitat basada en el Camp apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,L'usuari és obligatori per Compartir DocType: DocField,Hidden,Ocult @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Permetre formes incompletes apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} s'ha d'establir primer apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Utilitzar algunes paraules, evitar frases comuns." DocType: Workflow State,plane,avió -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Siestàs carregant nous registres, ""Naming Series"" és obligatori, si està present." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Siestàs carregant nous registres, ""Naming Series"" és obligatori, si està present." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Rep alertes Avui apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DOCTYPE només es pot canviar el nom per Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},canvi de valor de {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Si l'usuari té alguna funció verificada, l'usuari es converteix en un "Usuari del sistema". "Usuari del sistema" té accés a l'escriptori" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,"Si us plau, consultar el seu correu electrònic per a la verificació" -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari DocType: Communication,Bounced,Rebotats DocType: Deleted Document,Deleted Name,nom esborrat apps/frappe/frappe/config/setup.py +14,System and Website Users,Usuaris de sistema i lloc web @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Treu l'actualització DocType: Auto Email Report,No of Rows (Max 500),No de files (màx 500) DocType: Language,Language Code,Codi d'idioma apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","La seva descàrrega s'està construint, això pot trigar uns instants ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Afegeix un filtre +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Afegeix un filtre apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS enviat als telèfons: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,El teu vot: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} i {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} i {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sempre afegiu "Projecte de" Rumb a projectes d'impressió de documents DocType: Data Migration Run,Current Mapping Start,Comença el mapa actual apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,El correu electrònic ha estat marcat com a correu brossa DocType: About Us Settings,Website Manager,Gestor de la Pàgina web apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,S'ha desconnectat la càrrega d'arxius. Siusplau torna-ho a provar. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Vostè Projecte seleccionat o documents cancel·lats -apps/frappe/frappe/model/document.py +1180,Document Queued,document en cua +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Vostè Projecte seleccionat o documents cancel·lats +apps/frappe/frappe/model/document.py +1186,Document Queued,document en cua DocType: GSuite Templates,Destination ID,ID de destinació DocType: Desktop Icon,List,Llista -DocType: Communication,Link Name,Nom de l'enllaç -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat +DocType: Activity Log,Link Name,Nom de l'enllaç +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Contrasenya invàlida: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Contrasenya invàlida: DocType: Print Settings,Send document web view link in email,Enviar document internacionalització del link a l'email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,La seva opinió de document {0} es guarda correctament -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Anterior +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Anterior apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} files de {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Parts de moneda. Per exemple ""Cèntims""" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Seleccioneu el fitxer pujat DocType: Letter Head,Check this to make this the default letter head in all prints,Marqueu això per fer aquest cap de la carta per defecte en totes les impressions DocType: Print Format,Server,Servidor -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Junta nou Kanban +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Junta nou Kanban DocType: Desktop Icon,Link,Enllaç apps/frappe/frappe/utils/file_manager.py +111,No file attached,No hi ha cap arxiu adjunt DocType: Version,Version,Versió DocType: User,Fill Screen,Omplir pantalla -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No es pot mostrar aquest informe d'arbre, a causa de dades que insuficients El més probable és que queden filtrats pels permisos." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleccioneu Arxiu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No es pot mostrar aquest informe d'arbre, a causa de dades que insuficients El més probable és que queden filtrats pels permisos." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,S'ha produït un error en carregar -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Edita a través Pujar +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Edita a través Pujar apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipus de document ..., per exemple, al client" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La condició '{0}' no és vàlida DocType: Workflow State,barcode,Barcode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Afegir les seves pròpies traduccions +apps/frappe/frappe/config/setup.py +242,Add your own translations,Afegir les seves pròpies traduccions DocType: Country,Country Name,Nom del país DocType: About Us Team Member,About Us Team Member,Sobre nosaltres Membre de l'Equip apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." DocType: Event,Wednesday,Dimecres -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid DocType: OAuth Client,Token,simbòlic DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (name) of the entity whose property is to be set apps/frappe/frappe/limits.py +84,"To renew, {0}.","Per renovar, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,Aplicació {0} ja apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Sense previsualització DocType: Workflow State,exclamation-sign,Signe d'exclamació apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostra Permisos -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rang de dates -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Pàgina {0} de {1} DocType: About Us Settings,Introduce your company to the website visitor.,Presenta la teva empresa al visitant del lloc web. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","clau de xifrat no és vàlid, Si us plau, comproveu site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime i vídeo apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 comentari DocType: Email Alert,Days Before,Dies abans DocType: Workflow State,volume-down,volum cap avall -apps/frappe/frappe/desk/reportview.py +262,No Tags,No hi ha etiquetes +apps/frappe/frappe/desk/reportview.py +266,No Tags,No hi ha etiquetes DocType: DocType,List View Settings,Veure configuració de la llista DocType: Email Account,Send Notification to,Enviar Notificació a DocType: DocField,Collapsible,Plegable apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saved apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,En què necessites ajuda? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcions per seleccioni. Cada opció en una nova línia. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Cancel·lar Permanentment {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Cancel·lar Permanentment {0}? DocType: Workflow State,music,Música apps/frappe/frappe/www/qrcode.html +3,QR Code,Codi QR apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Última data modificada DocType: Web Page,Settings,Ajustos apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Si us plau, especifiqui tipus de document" DocType: Print Format,Style Settings,Ajustos -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Més +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Més DocType: Contact,Sales Manager,Gerent De Vendes -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Canviar el nom +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Canviar el nom DocType: Print Format,Format Data,Format de dades -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Com +apps/frappe/frappe/utils/bot.py +91,Like,Com DocType: Customize Form Field,Customize Form Field,Personalitzar camps de formulari DocType: OAuth Client,Grant Type,Tipus de subvenció apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Comproveu que els documents són llegibles per un usuari apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Llistat d'aplicació no permès DocType: Deleted Document,Hub Sync ID,Identificador de sincronització del concentrador -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,Utilitza % com a comodí +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,Utilitza % com a comodí apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domini de correu electrònic no està configurat per a aquest compte, crear-ne un?" DocType: User,Reset Password Key,Restabliment de contrasenya DocType: Email Account,Enable Auto Reply,Habilita resposta automàtica @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Clau puntuació mínima DocType: DocType,Fields,Camps DocType: System Settings,Your organization name and address for the email footer.,El seu nom de l'organització i direcció per al peu de pàgina de correu electrònic. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Taula Pare +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Taula Pare apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S'ha completat la còpia de seguretat S3. apps/frappe/frappe/config/desktop.py +60,Developer,Desenvolupador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Creat @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Ajusta només una vegada DocType: Email Queue Recipient,Email Queue Recipient,Cua de correu electrònic de destinataris DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Nom d'usuari {0} ja existeix -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Hi ha un error en la seva plantilla de direcció {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Alt DocType: S3 Backup Settings,Secret Access Key,Clau d'accés secret apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Home -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret ha estat restablit. La inscripció serà obligatòria en el proper inici de sessió. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret ha estat restablit. La inscripció serà obligatòria en el proper inici de sessió. DocType: Communication,From Full Name,De Nom complet apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},No tens accés a l'informe: {0} DocType: User,Send Welcome Email,Enviar Benvingut email -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s'ha trobat cap plantilla d'adreça predeterminada. Creeu-ne un de nou des de Configuració> Impressió i marca> Plantilla d'adreces. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Treure filtre +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Treure filtre DocType: Address,Daman and Diu,Daman i Diu DocType: Address,Personal,Personal -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Bulk Rename +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Mostra com cc DocType: DocField,Heading,Títol DocType: Workflow State,resize-vertical,canviar la mida vertical -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Pujar DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informació de presentació per la pàgina de contacte DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,En Recerca Global DocType: Workflow State,indent-left,guió-esquerra apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,"És arriscat eliminar aquesta imatge: {0}. Si us plau, poseu-vos en contacte amb l'administrador del sistema." DocType: Currency,Currency Name,Nom moneda -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,No hi ha missatges de correu electrònic +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,No hi ha missatges de correu electrònic DocType: Report,Javascript,Javascript DocType: File,Content Hash,Hash contingut DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Emmagatzema el JSON de les últimes versions conegudes de diferents aplicacions instal·lades. S'utilitza per mostrar notes de la versió. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Estàndard DOCTYPE no pot tenir format d'impressió per defecte, utilitzeu Personalitzar formulari" DocType: Report,Query,Query DocType: DocType,Sort Order,Ordre de Classificació -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selecciona l'etiqueta després de la qual vols inserir el nou camp. ,Document Share Report,Document Compartir Reportar DocType: User,Last Login,Últim ingrés -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna DocType: Custom Field,Adds a custom field to a DocType,Afegeix un camp personalitzat a un DocType DocType: File,Is Home Folder,És Carpeta apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no és una adreça de correu electrònic vàlida -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Seleccionar com a mínim 1 resultat per a la impressió +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Seleccionar com a mínim 1 resultat per a la impressió apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Usuari '{0}' ja té el paper '{1}' DocType: System Settings,Two Factor Authentication method,Mètode d'autenticació de dos factors apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Compartit amb {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Donar-se de baixa -DocType: Communication,Reference Name,Referència Nom +DocType: Activity Log,Reference Name,Referència Nom apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Suport de xat DocType: Error Snapshot,Exception,Excepció -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,No s'han trobat resultats per a '
DocType: Email Account,Use IMAP,L'ús de IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,No es pot fer una petició a la URL del servidor Frappe +DocType: Activity Log,Activity Log,Registre d'activitat DocType: Integration Request,Authorized,autoritzat DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Tipus individuals només tenen un rècord no hi ha taules associades. Els valors s'emmagatzemen a tabSingles DocType: System Settings,Enable Password Policy,Habilitar la directiva de contrasenyes @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Llis apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},tipus de camp no es pot modificar per {0} DocType: Workflow,Rules defining transition of state in the workflow.,Regles que defineixen la transició d'estat del flux de treball. DocType: File,Folder,Carpeta +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Importar / exportar dades des de fitxers CSV i Excel. DocType: DocField,Index,Índex DocType: Email Group,Newsletter Manager,Butlletí Administrador apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opció 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} a {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} a {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Entrada d'error durant peticions. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} ha estat afegit al grup de correu electrònic. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,No editeu capçaleres que estiguin predefinides a la plantilla +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,No editeu capçaleres que estiguin predefinides a la plantilla apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Codi de verificació d'inici de sessió de {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Fer arxiu (s) privada o pública? +DocType: Data Import,Import Status,Estat d'importació +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Fer arxiu (s) privada o pública? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Programat per enviar a {0} DocType: Kanban Board Column,Indicator,Indicador DocType: DocShare,Everyone,Tothom DocType: Workflow State,backward,cap enrere -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" DocType: Email Queue,Add Unsubscribe Link,Afegir Enllaç Donar-se de baixa apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Cap comentari. Iniciar una nova discussió. DocType: Workflow State,share,Quota apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","La seva subscripció expira el {0}. Per renovar, si us plau enviï un correu electrònic a {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Numeració sèrie de transaccions. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Numeració sèrie de transaccions. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,No pot agradar una cosa que ha creat apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC i la resposta estàndard" DocType: User,Last IP,Darrera IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Connector de migraci DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filtrar els registres basats en permisos d'usuari definits per a un usuari DocType: Note,Notify Users On Every Login,Notificar als usuaris sobre la cada inici de sessió DocType: PayPal Settings,API Password,API contrasenya -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Introduïu el mòdul python o seleccioneu el tipus de connector +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Introduïu el mòdul python o seleccioneu el tipus de connector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,FIELDNAME es posa durant Camp personalitzat apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Darrera actualització realitzada per apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,no està permès. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,No es pot esborrar el fitxer ja que pertany a {0} {1} pel qual no teniu permisos apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sra DocType: Website Theme,Background Color,Color de fons -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,"Hi ha hagut errors a l'enviar el correu electrònic. Si us plau, torna a intentar-ho." +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,"Hi ha hagut errors a l'enviar el correu electrònic. Si us plau, torna a intentar-ho." DocType: Portal Settings,Portal Settings,Característiques del portal DocType: Data Migration Mapping,Mapping,Cartografia DocType: Web Page,0 is highest,0 és el més alt @@ -667,6 +668,7 @@ DocType: Language,Language Name,Nom d'idioma DocType: Email Group Member,Email Group Member,Correu electrònic del Grup membre DocType: Email Alert,Value Changed,Valor Changed apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Nom duplicat {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Torneu a provar DocType: Web Form Field,Web Form Field,Web de camp de formulari apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Amaga el camp en el Generador d'informes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Edició de HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Botiga DocType: DocField,Button,Botó apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} és ara el format d'impressió per defecte de {1} tipus de document -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,columnes arxivats +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,columnes arxivats DocType: Email Account,Default Outgoing,Predeterminar Sortint DocType: Workflow State,play,jugar apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Feu clic a l'enllaç de sota per completar el seu registre i establir una nova contrasenya apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,No s'ha afegit -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,No hi ha comptes de correu electrònic assignada +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,No hi ha comptes de correu electrònic assignada DocType: Contact Us Settings,Contact Us Settings,Ajustaments del Contacti'ns apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Buscant ... DocType: Workflow State,text-width,text-width @@ -692,38 +694,36 @@ DocType: Feedback Trigger,Check Communication,comprovar les comunicacions DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Informes de Report Builder són gestionats directament pel generador d'informes. Res a fer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,"Si us plau, comproveu la vostra adreça de correu electrònic" -apps/frappe/frappe/model/document.py +1039,none of,cap de +apps/frappe/frappe/model/document.py +1045,none of,cap de apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Enviar-me una còpia DocType: Dropbox Settings,App Secret Key,App clau secreta DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,lloc web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Els elements marcats es mostraran a l'escriptori -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Junta Kanban {0} no existeix. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Junta Kanban {0} no existeix. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} està veient aquest document DocType: ToDo,Assigned By Full Name,Assignat pel nom complet apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} actualitzat -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Fa {0} dies DocType: Email Account,Awaiting Password,Tot esperant la contrasenya DocType: Address,Address Line 1,Adreça Línia 1 DocType: Custom DocPerm,Role,Rol apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Configuració ... -apps/frappe/frappe/utils/data.py +459,Cent,Cèntim -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,redactar correu electrònic -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Estats de flux de treball (per exemple, Projecte, Aprovat, cancel·lat)." +apps/frappe/frappe/utils/data.py +464,Cent,Cèntim +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,redactar correu electrònic +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Estats de flux de treball (per exemple, Projecte, Aprovat, cancel·lat)." DocType: Print Settings,Allow Print for Draft,Permetre impressió per al projecte apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Establir Quantitat -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Presentar aquest document per confirmar +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Presentar aquest document per confirmar DocType: Contact,Unsubscribed,No subscriure apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,funcions personalitzades per a les pàgines i l'informe apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,classificació: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,No es pot trobar en UIDVALIDITY resposta d'estat IMAP -,Data Import Tool,Eina d'importació de dades DocType: Address,Dadra and Nagar Haveli,Dadra i Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic predeterminat des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Càrrega de fitxers si us plau esperi durant uns segons. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Adjunta la teva imatge +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Adjunta la teva imatge apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valors fila modificada DocType: Workflow State,Stop,Aturi DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enllaç a la pàgina que voleu obrir. Deixar en blanc si voleu que sigui un pare grup. @@ -747,7 +747,7 @@ DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,Scopes DocType: About Us Settings,Company Introduction,Introducció de la companyia DocType: DocField,Length,Longitud -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Restaurar o eliminar permanentment un document. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Restaurar o eliminar permanentment un document. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,prova GSuite executat amb èxit. la integració GSuite és correcte DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,12 +755,12 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,Aplicació {0} retira DocType: Custom DocPerm,Apply User Permissions,Aplicar permisos d'usuari DocType: User,Modules HTML,Mòduls HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Camps Obligatoris +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Camps Obligatoris DocType: DocType,Other Settings,altres ajustos DocType: Data Migration Connector,Frappe,Frape apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Marcar com no llegit apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} no s'ha establert -DocType: Authentication Log,Operation,Operació +DocType: Activity Log,Operation,Operació DocType: Customize Form,Change Label (via Custom Translation),Canviar etiqueta (a través de Traducció d'encàrrec) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Sense permís per {0} {1} {2} DocType: Address,Permanent,permanent @@ -773,7 +773,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Portador d'emergència apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Cap document seleccionat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Esdeveniment -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","En {0}, {1} va escriure:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","En {0}, {1} va escriure:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,No es pot eliminar de camp estàndard. Podeu ocultar la pena si vols DocType: Top Bar Item,For top bar,Per a la barra superior apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,En cua per còpia de seguretat. Rebràs un correu electrònic amb l'enllaç de descàrrega @@ -789,35 +789,34 @@ DocType: Workflow State,minus,menys DocType: S3 Backup Settings,Bucket,Cubeta apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Error de servidor: Es recomana consultar els registres del servidor o contactar amb Suport Tècnic. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Correu electrònic de benvinguda enviat -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Anem a preparar el sistema per al primer ús. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Anem a preparar el sistema per al primer ús. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Destacat apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Ja està registrat DocType: System Settings,Float Precision,Precisió Float apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Només l'administrador pot editar -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Nom de l'arxiu +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Nom de l'arxiu DocType: DocType,Editable Grid,Editable quadrícula DocType: Property Setter,Property Setter,Ajusts de Propietats DocType: Web Form,Allow Print,permetre Imprimir apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No hi ha aplicacions instal·lades apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Marqueu el camp com obligatori DocType: Communication,Clicked,Seguit -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},No té permís per '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},No té permís per '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programat per enviar DocType: DocType,Track Seen,Vist a la pista apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Aquest mètode només es pot utilitzar per crear un comentari DocType: Kanban Board Column,orange,taronja -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,{0} no trobat -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Afegir formularis personalitzats. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,{0} no trobat +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Afegir formularis personalitzats. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} {2} en apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,presentat aquest document apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofereix moltes funcions predefinides. Podeu afegir noves funcions per establir permisos més fins. DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,Dominis +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Dominis DocType: Blog Category,Blog Category,Categoria Blog apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,No es pot assignar a causa següent condició falla: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Rols HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Seleccioneu una imatge de marca en primer lloc. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Actiu @@ -825,9 +824,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Blau apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,S'eliminaran totes les personalitzacions. Si us plau confirma-ho DocType: Page,Page HTML,Pàgina HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,Només es poden crear més nodes amb el tipus 'Grup' +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,Només es poden crear més nodes amb el tipus 'Grup' DocType: SMS Parameter,Header,Encapçalament -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Columna desconeguda : {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Columna desconeguda : {0} DocType: Email Alert Recipient,Email By Role,Per correu electrònic Paper apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Els usuaris amb rol {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Instal·lació de l'aplicació {0} @@ -850,7 +849,7 @@ DocType: User,Represents a User in the system.,Representa un usuari en el sistem DocType: Communication,Label,Etiqueta apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","La tasca {0}, que va assignar a {1}, s'ha tancat." DocType: User,Modules Access,Mòduls d'Accés -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,"Si us plau, tancament aquesta finestra" +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,"Si us plau, tancament aquesta finestra" DocType: Print Format,Print Format Type,Format d'impressió Tipus DocType: Newsletter,A Lead with this Email Address should exist,Hi ha d'haver una iniciativa amb aquesta adreça de correu electrònic apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Aplicacions de codi obert per a la Web @@ -860,12 +859,11 @@ DocType: Role Permission for Page and Report,Allow Roles,permetre Rols DocType: DocType,Hide Toolbar,Oculta la barra d'eines DocType: User,Last Active,Últim actiu DocType: Email Account,SMTP Settings for outgoing emails,Configuració SMTP per als correus sortints -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Error al importar apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,La seva contrasenya s'ha actualitzat. Aquí està la teva nova contrasenya DocType: Email Account,Auto Reply Message,Missatge de resposta automàtica DocType: Feedback Trigger,Condition,Condició -apps/frappe/frappe/utils/data.py +564,{0} hours ago,Fa {0} hores -apps/frappe/frappe/utils/data.py +574,1 month ago,fa 1 mes +apps/frappe/frappe/utils/data.py +576,{0} hours ago,Fa {0} hores +apps/frappe/frappe/utils/data.py +586,1 month ago,fa 1 mes DocType: Contact,User ID,ID d'usuari DocType: Communication,Sent,Enviat DocType: Address,Kerala,Kerala @@ -895,13 +893,12 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Correu De Yahoo apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,La seva subscripció expira demà. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Desat! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} no és un color hexadecimal vàlid apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,senyora apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Actualitzat {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Mestre DocType: DocType,User Cannot Create,L'usuari no pot crear apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Carpeta {0} no existeix -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,Accés Dropbox està aprovat! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,Accés Dropbox està aprovat! DocType: Customize Form,Enter Form Type,Introduïu el tipus de formulari apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No hi ha registres etiquetats. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,treure camp @@ -914,7 +911,7 @@ DocType: Kanban Board Column,Green,Verd DocType: Custom DocPerm,Additional Permissions,Permisos addicionals DocType: Email Account,Always use Account's Email Address as Sender,Utilitzar sempre de compte direcció de correu electrònic com a remitent apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Inicia sessió per comentar -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Comenceu a introduir dades per sota d'aquesta línia +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Comenceu a introduir dades per sota d'aquesta línia apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},valors modificats per {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Personalitza ... @@ -923,7 +920,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Deshabilitat DocType: Workflow State,eye-close,ull-close DocType: OAuth Provider Settings,OAuth Provider Settings,Configuració del proveïdor OAuth -apps/frappe/frappe/config/setup.py +257,Applications,Aplicacions +apps/frappe/frappe/config/setup.py +264,Applications,Aplicacions apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Informar sobre aquesta incidència DocType: Custom Script,Adds a custom script (client or server) to a DocType,Afegeix una seqüència de comandaments personalitzada (client o servidor) a un DocType DocType: Address,City/Town,Ciutat / Poble @@ -933,11 +930,10 @@ DocType: Address,Is Your Company Address,La seva adreça és l'empresa apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Edició Fila DocType: Workflow Action,Workflow Action Master,Mestre d'accions de Flux de treball DocType: Custom Field,Field Type,Tipus de camp -apps/frappe/frappe/utils/data.py +489,only.,només. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,El secret d'OTP només es pot restablir per l'administrador. +apps/frappe/frappe/utils/data.py +494,only.,només. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,El secret d'OTP només es pot restablir per l'administrador. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,Evitar anys que s'associen amb vostè. DocType: GSuite Templates,GSuite Templates,plantilles GSuite -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Descendent apps/frappe/frappe/utils/goal.py +109,Goal,Meta apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,"No vàlida del servidor de correu. Si us plau, rectifiqui i torni a intentar-ho." DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +942,10 @@ DocType: Workflow State,film,film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},No tens permís per llegir {0} apps/frappe/frappe/config/desktop.py +8,Tools,Instruments apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Evitar els últims anys. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Nodes arrel múltiple no permesa. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Nodes arrel múltiple no permesa. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Si està habilitat, els usuaris rebran una notificació cada vegada que s'inicia sessió. Si no està habilitada, els usuaris només han de ser notificats una vegada." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,La condició {0} no és vàlida +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,La condició {0} no és vàlida DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Si se selecciona, els usuaris no podran veure el quadre de diàleg de confirmació d'accés." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Es requereix camp ID per editar valors usant informe. Seleccioneu el camp ID amb el Selector de columna apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Comentaris apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Confirmar apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Col · lapsar tot @@ -970,7 +965,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Establir permisos d'usuari DocType: Email Account,Email Account Name,Nom correu electrònic apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Seleccioneu els tipus de document -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,"Va produir un error en generar el testimoni d'accés Dropbox. Si us plau, comproveu el registre d'errors per a més detalls." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,"Va produir un error en generar el testimoni d'accés Dropbox. Si us plau, comproveu el registre d'errors per a més detalls." DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Newsletters a contactes, clients potencials." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","per exemple ""Suport "","" Vendes "","" Jerry Yang """ @@ -986,26 +981,24 @@ DocType: User,Facebook User ID,Facebook User ID DocType: Workflow State,fast-forward,avanç ràpid DocType: Communication,Communication,Comunicació apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Comproveu columnes per seleccionar, arrossegar per establir l'ordre." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Aquesta és una acció permanent i no es pot desfer. Voleu continuar? DocType: Event,Every Day,Cada Dia DocType: LDAP Settings,Password for Base DN,Clau per a la base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,taula camp -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Columnes basat en +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Columnes basat en apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Especificar les claus per permetre la integració amb Google GSuite DocType: Workflow State,move,moviment -apps/frappe/frappe/model/document.py +1223,Action Failed,Va fallar l'acció +apps/frappe/frappe/model/document.py +1229,Action Failed,Va fallar l'acció apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,per usuari -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Pla General de Comptabilitat +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Pla General de Comptabilitat DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,Heu {0} dies restants a la vostra subscripció +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Heu {0} dies restants a la vostra subscripció apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Sortint compte de correu electrònic no és correcta apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily persones de mobilitat reduïda apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Instal·lat -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,"Si us plau, estableix Adreça de correu electrònic" +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,"Si us plau, estableix Adreça de correu electrònic" DocType: System Settings,Date and Number Format,Format de Data i nombres apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Max mida del fitxer adjunt és {0} MB -apps/frappe/frappe/model/document.py +1038,one of,un -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Si us plau, seleccioneu el fitxer a copiar" +apps/frappe/frappe/model/document.py +1044,one of,un apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Comprovació d'un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Mostrar Etiquetes DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Si Aplicar estricte de permisos d'usuari es comprova i permisos d'usuari es defineix per a un tipus de document per a un usuari, llavors tots els documents en què el valor de la relació està en blanc, no es mostraran a l'usuari que" @@ -1015,15 +1008,15 @@ DocType: Web Form,Actions,Accions DocType: Workflow State,align-justify,align-justify DocType: User,Middle Name (Optional),Cognom 1 apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,No permès -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Següents camps tenen valors que falten: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,No tens prou permisos per completar l'acció +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Següents camps tenen valors que falten: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,No tens prou permisos per completar l'acció apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,No hi ha resultats DocType: System Settings,Security,Seguretat apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Programat per enviar a {0} destinataris apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},el nou nom de {0} a {1} DocType: Currency,**Currency** Master,** Moneda ** MestreDivisa DocType: Email Account,No of emails remaining to be synced,No hi ha missatges de correu electrònic que queden perquè se sincronitzin -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,càrrega +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,càrrega apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Si us plau, guardi el document abans de l'assignació" apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Feu clic aquí per publicar errors i suggeriments DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adreça i informació legal que vols posar al peu de pàgina. @@ -1035,7 +1028,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,Fa {0} minuts DocType: Kanban Board Column,lightblue,blau clar apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,El mateix camp s'introdueix més d'una vegada -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Seleccionar columnes apps/frappe/frappe/templates/includes/list/filters.html +19,clear,clar apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Cada dia els esdeveniments han d'acabar en el mateix dia. DocType: Communication,User Tags,User Tags @@ -1049,7 +1041,7 @@ apps/frappe/frappe/www/login.html +27,Sign in,Registra `t DocType: Web Page,Main Section,Secció Principal DocType: Page,Icon,Icona apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,filtrar valors entre 5 i 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Consell: Incloure símbols, números i lletres majúscules en la contrasenya" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Consell: Incloure símbols, números i lletres majúscules en la contrasenya" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/aaaa apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,prova d'escriptura GSuite @@ -1070,15 +1062,15 @@ DocType: Website Settings,Copyright,Drets d'autor apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,anar DocType: OAuth Authorization Code,Invalid,Invàlid DocType: ToDo,Due Date,Data De Venciment -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,dia trimestre +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,dia trimestre DocType: Social Login Keys,Google Client Secret,Google Client Secret DocType: Website Settings,Hide Footer Signup,Hide Footer Inscripció apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,cancel·lat aquest document apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Write a Python file in the same folder where this is saved and return column and result. DocType: DocType,Sort Field,Ordenar Camp DocType: Razorpay Settings,Razorpay Settings,ajustos Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Editar el filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Editar el filtre +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Afegir més DocType: System Settings,Session Expiry Mobile,Sessió de caducitat mòbil apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Resultats de la cerca @@ -1090,11 +1082,11 @@ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[ DocType: User Permission,Allow,Permetre apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Evitem de paraules i caràcters repetits DocType: Communication,Delayed,Retard -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Llista de les còpies de seguretat disponibles per a baixar +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Llista de les còpies de seguretat disponibles per a baixar apps/frappe/frappe/www/login.html +86,Sign up,Registra't DocType: Test Runner,Output,sortida DocType: Email Alert,Set Property After Alert,Després d'establir la propietat Alerta -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Afegir camps als formularis. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Afegir camps als formularis. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,Sembla que alguna cosa està malament amb la configuració de Paypal d'aquest lloc. DocType: File,rgt,RGT DocType: Email Account,Sendgrid,SendGrid @@ -1105,7 +1097,6 @@ DocType: System Settings,"If Apply User Permissions is checked for Report DocTyp DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,Protip: Afegeix Reference: {{ reference_doctype }} {{ reference_name }}
enviar referència del document
apps/frappe/frappe/modules/utils.py +196,App not found,App not found
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},No es pot crear un {0} en contra d'un document secundari: {1}
@@ -1899,7 +1871,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Passiu
DocType: Contact,Accounts Manager,Gerent de Comptes
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,El seu pagament es cancel·la.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Seleccioneu el tipus de fitxer
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Seleccioneu el tipus de fitxer
DocType: Help Article,Knowledge Base Editor,Coneixement Base Editor
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pàgina no trobada
DocType: DocField,Precision,Precisió
@@ -1926,12 +1898,12 @@ DocType: Property Setter,Property Type,Tipus de propietat
DocType: Workflow State,screenshot,captura de pantalla
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Només l'administrador pot guardar un informe estàndard. Si us plau, canvia-li el nom i desa'l"
DocType: System Settings,Background Workers,Treballadors de fons
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Nom de camp {0} en conflicte a fi meta
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Nom de camp {0} en conflicte a fi meta
DocType: Deleted Document,Data,Dades
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Estat del document
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vostè ha fet {0} de {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,Codi d'autorització OAuth
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,No es permet importar
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,No es permet importar
DocType: Social Login Keys,Frappe Client Secret,Frappe secret de client
DocType: Deleted Document,Deleted DocType,dOCTYPE eliminat
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Nivells de permisos
@@ -1939,11 +1911,11 @@ DocType: Workflow State,Warning,Advertència
DocType: Data Migration Run,Percent Complete,Percentatge complet
DocType: Tag Category,Tag Category,tag Categoria
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","S'ignorarà l'article {0}, perquè hi ha un grup amb el mateix nom!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Ajuda
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Ajuda
DocType: User,Login Before,Identifica't abans
DocType: Web Page,Insert Style,Inserir Estil
-apps/frappe/frappe/config/setup.py +262,Application Installer,Instal·lador d'aplicacions
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Nou nom d'Informe
+apps/frappe/frappe/config/setup.py +269,Application Installer,Instal·lador d'aplicacions
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Nou nom d'Informe
DocType: Workflow State,info-sign,info-signe
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Valor {0} no pot ser una llista
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Com s'ha de formatar aquesta moneda? Si no s'estableix, s'utilitzarà valors predeterminats del sistema"
@@ -1979,8 +1951,8 @@ DocType: OAuth Client,Default Redirect URI,Defecte URI de redireccionament
DocType: Email Alert,Recipients,Destinataris
DocType: System Settings,Choose authentication method to be used by all users,Trieu el mètode d'autenticació que tots els usuaris utilitzaran
DocType: Workflow State,ok-sign,ok-sign
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,documents eliminats
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,El format CSV distingeix entre majúscules i minúscules
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,documents eliminats
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,El format CSV distingeix entre majúscules i minúscules
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Icona d'escriptori ja existeix
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplicar
DocType: Newsletter,Create and Send Newsletters,Crear i enviar butlletins de notícies
@@ -1988,14 +1960,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Illes Andaman i Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,document GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Si us plau especificar quin valor del camp ha de ser verificat
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Pare"" es refereix a la taula principal en la qual cal afegir aquesta fila"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Pare"" es refereix a la taula principal en la qual cal afegir aquesta fila"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,No es pot enviar aquest correu electrònic. Heu creuat el límit d'enviament de {0} correus electrònics per aquest dia.
DocType: Website Theme,Apply Style,Aplicar Estil
DocType: Feedback Request,Feedback Rating,grau de la regeneració
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Compartit Amb
DocType: Help Category,Help Articles,Ajuda a les persones
,Modules Setup,Mòduls d'instal·lació
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Tipus:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Tipus:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,El seu pagament ha fallat.
DocType: Communication,Unshared,incompartible
DocType: Address,Karnataka,Karnataka
@@ -2004,12 +1976,11 @@ DocType: User,Location,Ubicació
,Permitted Documents For User,Documents permesos Per Usuari
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Vostè necessita tenir el permís ""Compartir"""
DocType: Communication,Assignment Completed,assignació Completat
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Edita granel {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Edita granel {0}
DocType: Email Alert Recipient,Email Alert Recipient,Receptor d'Alerta de correu electrònic
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,No actiu
DocType: About Us Settings,Settings for the About Us Page,Configuració de la pàgina Qui som
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,configuració de la passarel·la de pagament de la ratlla
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Seleccionar tipus de document per descarregar
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,per exemple pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Utilitzeu el camp per filtrar registres
DocType: DocType,View Settings,veure configuració
@@ -2042,41 +2013,41 @@ DocType: Website Settings,Brand Image,Imatge de marca
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuració de barra de navegació superior, peu de pàgina i el logo."
DocType: Web Form Field,Max Value,valor màxim
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3}
DocType: Contact,All,Tots
DocType: Email Queue,Recipient,Receptor
DocType: Communication,Has Attachment,té fitxers adjunts
DocType: Address,Sales User,Usuari de vendes
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Arrossegar i eines Separar per construir i personalitzar formats d'impressió.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Arrossegar i eines Separar per construir i personalitzar formats d'impressió.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Expandir
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Setembre
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Aquest estil de consulta s'interromp
DocType: Email Alert,Trigger Method,Mètode d'activació
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},L'operador ha de ser un {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},L'operador ha de ser un {0}
DocType: Dropbox Settings,Dropbox Access Token,Dropbox accés d'emergència
DocType: Workflow State,align-right,alinear a la dreta
DocType: Auto Email Report,Email To,Destinatari
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Carpeta {0} no està buit
DocType: Page,Roles,Rols
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Error: valor perdut per {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,El camp {0} no es pot seleccionar.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,El camp {0} no es pot seleccionar.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Caducitat Sessió
DocType: Workflow State,ban-circle,ban-cercle
DocType: Email Flag Queue,Unread,no llegit
DocType: Bulk Update,Desk,Escriptori
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),El filtre ha de ser una tupla o llista (en una llista)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),El filtre ha de ser una tupla o llista (en una llista)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Write a SELECT query. Note result is not paged (all data is sent in one go).
DocType: Email Account,Attachment Limit (MB),Límit Adjunt (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Configuració automàtica de correu electrònic
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Configuració automàtica de correu electrònic
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + A baix
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Es tracta d'una contrasenya comuna entre els 10 primers.
DocType: User,User Defaults,La configuració d'usuari
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Crear nou
DocType: Workflow State,chevron-down,Chevron-down
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),El correu electrònic no enviat a {0} (donat de baixa / desactivat)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),El correu electrònic no enviat a {0} (donat de baixa / desactivat)
DocType: Async Task,Traceback,Rastrejar
DocType: Currency,Smallest Currency Fraction Value,Més petita moneda Valor Fracció
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Assignar a
@@ -2096,7 +2067,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Camp d'identificació de la migració
DocType: Communication,Comment Type,Tipus Comentari
DocType: OAuth Client,OAuth Client,client OAuth
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Usuaris
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Usuaris
DocType: Communication,Timeline field Name,Nom de camp línia de temps
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Tipus d'informe
@@ -2106,7 +2077,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Introduïu les claus per permetre inici de sessió a través de Facebook, Google, GitHub."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},No es pot llegir el format d'arxiu per a {0}
DocType: Auto Email Report,Filter Data,Filtrar dades
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Afegir una etiqueta
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Si us plau adjuntar un arxiu primer.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Hi havia alguns errors de configuració del nom, si us plau poseu-vos en contacte amb l'administrador"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Entrant compte de correu electrònic no és correcta
@@ -2129,7 +2099,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Env
DocType: Website Theme,Link Color,Enllaç color
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,L'usuari {0} no es pot desactivar
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Benvolgut Administrador del sistema,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,El teu país
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,El teu país
DocType: Event,Sunday,Diumenge
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,Atesa la quadrícula
DocType: Address Template,Template,Plantilla
@@ -2154,7 +2124,7 @@ DocType: DocField,Table,Taula
DocType: File,File Size,Mida del fitxer
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Has d'iniciar sessió per presentar aquest formulari
DocType: User,Background Image,Imatge de fons
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Seleccioni el seu País, Zona horària i moneda"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Seleccioni el seu País, Zona horària i moneda"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,entre
DocType: Async Task,Queued,En cua
@@ -2168,12 +2138,12 @@ DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,Aplicació Clau d'Accés
DocType: OAuth Bearer Token,Access Token,Token d'accés
DocType: About Us Settings,Org History,Org History
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Mida de còpia de seguretat:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Mida de còpia de seguretat:
DocType: Workflow,Workflow Name,Workflow Nom
DocType: DocShare,Notify by Email,Notificació per correu electrònic
DocType: DocField,In Standard Filter,En Filtre predeterminat
DocType: Web Form,Allow Edit,Permetre Editar
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Enganxa
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Enganxa
DocType: Webhook,Doc Events,Esdeveniments doc
DocType: Auto Email Report,Based on Permissions For User,Sobre la base de permisos per a l'usuari
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},No es pot canviar l'estat de Document Cancel·lat. Transition row {0}
@@ -2189,7 +2159,7 @@ DocType: Workflow State,signal,senyal
DocType: DocType,Show Print First,Show Print First
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Retorn per publicar
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Crear {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nou compte de correu
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Nou compte de correu
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,document restaurat
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Selecciona l'idioma ...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},No podeu configurar "Opcions" per al camp {0}
@@ -2210,13 +2180,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Mou a la paperera
DocType: Web Form,Web Form Fields,Web Form Fields
DocType: Website Theme,Top Bar Text Color,Top Bar Color del text
+DocType: Data Import,Amended From,Modificada Des de
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Avís: No es pot trobar {0} en qualsevol taula relacionada amb {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Aquest document es posa en cua per a la seva execució actualment. Siusplau torna-ho a provar
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Aquest document es posa en cua per a la seva execució actualment. Siusplau torna-ho a provar
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Arxiu '{0}' no trobat
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Traieu la Secció
DocType: User,Change Password,Canvia la contrasenya
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Emails: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Hola!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Hola!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Finalització de l'esdeveniment ha de ser després de la posta
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Això tancarà la sessió {0} des de tots els altres dispositius
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},No té permís per obtenir un informe sobre: {0}
@@ -2225,26 +2196,25 @@ DocType: DocField,Allow Bulk Edit,Permetre Edició massiva
DocType: Blog Post,Blog Post,Post Blog
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Cerca avançada
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,No us permet veure el butlletí.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","El nivell 0 és per als permisos de nivell de document, \ nivells més alts per als permisos de nivell de camp."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Ordenar Per
DocType: Workflow,States,Units
DocType: Email Alert,Attach Print,Adjuntar Imprimir
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Suggerida Nom d'usuari: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,dia
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,dia
,Modules,mòduls
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Establir icones de l'escriptori
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,L'èxit de pagament
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,No {0} electrònic
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Error en la càrrega d'arxius
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,No {0} electrònic
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Error en la càrrega d'arxius
DocType: OAuth Bearer Token,Revoked,revocat
DocType: Web Page,Sidebar and Comments,Barra lateral i Comentaris
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quan es modifiqui un document després de cancelar-lo i guardar-lo, tindrà un nou número que és una versió de l'antic nombre."
DocType: Stripe Settings,Publishable Key,clau publicable
DocType: Workflow State,circle-arrow-left,circle-arrow-left
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,"Servidor de memòria cau Redis parat. Si us plau, poseu-vos en contacte amb l'Administrador / Suport tècnic"
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nom del partit
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Nom del partit
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Fer un nou registre
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,recerca
DocType: Currency,Fraction,Fracció
@@ -2270,7 +2240,7 @@ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Ob
DocType: Contact,Image,Imatge
DocType: Workflow State,remove-sign,eliminar l'efecte de signe
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Escriu alguna cosa en el quadre de cerca per buscar
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Definir els fluxos de treball per a les formes.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Definir els fluxos de treball per a les formes.
DocType: Address,Other,Un altre
DocType: S3 Backup Settings,Access Key ID,Identificador de clau d'accés
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Començar una nova Format
@@ -2294,32 +2264,32 @@ DocType: Email Flag Queue,Action,Acció
DocType: GSuite Settings,Script URL,URL del guió
apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Si us plau, introdueixi la contrasenya"
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,No es permet imprimir documents cancel·lats
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,No se li permet crear columnes
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Info:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,No se li permet crear columnes
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info:
DocType: Custom Field,Permission Level,Nivell de permís
DocType: User,Send Notifications for Transactions I Follow,Enviar notificacions de transaccions que segueixo
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Segur que vols eliminar l'adjunt?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","No es pot eliminar o cancel·lar a causa de {0} {1} està vinculada amb {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Gràcies
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Estalvi
DocType: Print Settings,Print Style Preview,Vista prèvia de l'estil d'impressió
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Vostè no està autoritzat a actualitzar aquest formulari web
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,Correus electrònics
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Correus electrònics
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Seleccioneu Tipus de document primera
DocType: About Us Settings,About Us Settings,Ajustaments del Sobre nosaltres
DocType: Website Settings,Website Theme,Lloc web temàtic
DocType: DocField,In List View,Vista de llista
DocType: Email Account,Use TLS,Utilitza TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Usuari o contrasenya no vàlids
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Add custom javascript to forms.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Número de sèrie
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Descarregar plantilla
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Add custom javascript to forms.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Número de sèrie
,Role Permissions Manager,Administrador de Permisos de rols
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom del nou format d'impressió
DocType: Data Migration Run,Pull Insert,Tire de la inserció
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,clar Accessori
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Obligatori:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Obligatori:
,User Permissions Manager,Administrador de Permisos d'usuari
DocType: Property Setter,New value to be set,Nou valor a configurar
DocType: Email Alert,Days Before or After,Dies anteriors o posteriors
@@ -2329,7 +2299,7 @@ DocType: Website Settings,HTML Header & Robots,Capçalera HTML i Robots
DocType: User Permission,User Permission,Permís d'usuari
apps/frappe/frappe/config/website.py +32,Blog,Bloc
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP no instal·lat
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Descàrrega de dades
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Descàrrega de dades
DocType: Workflow State,hand-right,la mà dreta
DocType: Website Settings,Subdomain,Subdomini
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Ajustaments per al proveïdor OAuth
@@ -2345,18 +2315,18 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Seleccioneu una qualificació
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Restablir el secret d'OTP
DocType: Email Account,Notify if unreplied for (in mins),Notificar si UNREPLIED per (en minuts)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,Fa 2 dies
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,Fa 2 dies
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Classificar les entrades del blog.
DocType: Workflow State,Time,temps
DocType: DocField,Attach,Adjuntar
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Comentaris del Sol·licitud només si hi ha almenys una comunicació està disponible per al document.
DocType: Custom Role,Permission Rules,Regles de permisos
DocType: GSuite Settings,GSuite Settings,ajustaments GSuite
DocType: Address,Links,Enllaços
apps/frappe/frappe/model/base_document.py +396,Value missing for,Falta a
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Afegir Nen
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,"{0} {1}: Registre Presentat, no es pot eliminar."
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,"{0} {1}: Registre Presentat, no es pot eliminar."
DocType: GSuite Templates,Template Name,Nom de la plantilla
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nou tipus de document
DocType: Custom DocPerm,Read,Llegir
@@ -2367,18 +2337,18 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Contrasenya Anterio
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Missatges de {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Per formatar columnes, donar títols de les columnes a la consulta."
DocType: Has Domain,Has Domain,té domini
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Amaga
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Amaga
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,No tens un compte? Registra't
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,enllaç dOCTYPE
+DocType: Activity Log,Link DocType,enllaç dOCTYPE
DocType: Social Login Keys,Social Login Keys,Socials Inicia sessió Keys
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Traieu totes les personalitzacions?
DocType: Website Slideshow,Slideshow Name,Nom Slideshow
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Cancel·lació
DocType: DocType,Allow Rename,Permetre Renombrar
-DocType: Authentication Log,Full Name,Nom complet
+DocType: Activity Log,Full Name,Nom complet
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Les Taules fill es mostren com una quadrícula en altres DocTypes.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La pàgina que està buscant no es troba. Això podria ser degut a que es mou o hi ha un error tipogràfic a l'enllaç.
apps/frappe/frappe/www/404.html +25,Error Code: {0},Codi d'error: {0}
@@ -2409,12 +2379,11 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
pot tornar a vostè. Gràcies!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,No s'ha pogut connectar amb el servidor de correu electrònic sortint
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Gràcies pel seu interès en subscriure-vos-hi
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,columna personalitzada
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,columna personalitzada
DocType: Workflow State,resize-full,resize-full
DocType: Workflow State,off,apagat
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,L'Informe {0} està deshabilitat
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Recomanat per inserir nous registres.
-DocType: Async Task,Core,Nucli
+DocType: Activity Log,Core,Nucli
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,establir permisos
DocType: DocField,Set non-standard precision for a Float or Currency field,Ajusta una precisió no estàndard per a un camp Float o moneda
DocType: Email Account,Ignore attachments over this size,No feu cas dels accessoris més d'aquesta mida
@@ -2427,10 +2396,9 @@ DocType: OAuth Bearer Token,Expires In,en expira
DocType: DocField,Allow on Submit,Permetre al presentar
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Tipus d'excepció
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Esculli Columnes
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Esculli Columnes
DocType: Web Page,Add code as <script>,Add code as <script>
DocType: Webhook,Headers,Encapçalaments
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Seleccionar tipus
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,"Si us plau, introdueixi els valors amb accés a aplicacions clau i l'App clau secreta"
DocType: Web Form,Accept Payment,accepti el pagament
apps/frappe/frappe/config/core.py +62,A log of request errors,Un registre d'errors de petició
@@ -2438,7 +2406,7 @@ DocType: Report,Letter Head,Capçalera de la carta
DocType: DocType,Quick Entry,Entrada ràpida
DocType: Web Form,Button Label,Etiqueta de botó
DocType: Website Theme,UPPERCASE,MAJÚSCULES
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} elements seleccionats
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} elements seleccionats
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,Enviament de suspendre
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Arrossegueu els elements de la barra lateral per afegir. Arrossegament de nou a les escombraries.
DocType: Workflow State,resize-small,canviar la mida petita
@@ -2464,21 +2432,20 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Personali
DocType: Workflow State,Edit,Edita
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Els permisos es poden gestionar a través de Configuració & gt; Permisos del rol Administrador
DocType: Contact Us Settings,Pincode,Codi PIN
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,"Si us plau, assegureu-vos que no hi ha columnes buides a l'arxiu."
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,"Si us plau, assegureu-vos que no hi ha columnes buides a l'arxiu."
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,"Si us plau, assegureu-vos que el seu perfil té una adreça de correu electrònic"
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Hi ha canvis sense desar en aquest formulari. Si us plau, guarda abans de continuar."
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Defecte per {0} ha de ser una opció
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Defecte per {0} ha de ser una opció
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria
DocType: User,User Image,Imatge d'Usuari
apps/frappe/frappe/email/queue.py +336,Emails are muted,Els correus electrònics es silencien
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + A dalt
DocType: Website Theme,Heading Style,Estil de títol
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,Es crearà un nou projecte amb aquest nom
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,fa 1 setmana
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,Es crearà un nou projecte amb aquest nom
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,fa 1 setmana
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,No es pot instal·lar aquesta aplicació
DocType: Communication,Error,Error
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,No envieu missatges de correu electrònic.
DocType: DocField,Column Break,Salt de columna
DocType: Event,Thursday,Dijous
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Vostè no té permís per accedir a aquesta imatge
@@ -2505,7 +2472,6 @@ DocType: Webhook,Webhook Request,Sol.licitud de Webhook
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Editor
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Error: {0} a {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Tipus de cartografia
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Seleccioneu Obligatori
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Explorar
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","No hi ha necessitat de símbols, dígits o lletres majúscules."
DocType: DocField,Currency,Moneda
@@ -2515,10 +2481,10 @@ DocType: Async Task,Running,Córrer
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Restablir contrasenya
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Si us plau, actualitzi Per afegir més d'{0} subscriptors"
DocType: Workflow State,hand-left,hand-left
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic
DocType: Email Account,Use SSL,Utilitza SSL
DocType: Workflow State,play-circle,joc de cercle
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",L'expressió "depends_on" no és vàlida
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",L'expressió "depends_on" no és vàlida
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Seleccioneu Format d'impressió a Edita
DocType: Address,Shipping,Enviament
DocType: Workflow State,circle-arrow-down,circle-arrow-down
@@ -2530,25 +2496,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,fletxa cap a la dreta
DocType: Workflow State,Workflow state represents the current state of a document.,Estat de flux de treball representa l'estat actual d'un document.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token falta
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Nota: El canvi del nom de la pàgina es trencarà URL anterior a aquesta pàgina.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,Nota: El canvi del nom de la pàgina es trencarà URL anterior a aquesta pàgina.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Eliminat {0}
DocType: SMS Settings,SMS Settings,Ajustaments de SMS
DocType: Company History,Highlight,Destacat
DocType: OAuth Provider Settings,Force,força
DocType: DocField,Fold,fold
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Ascendent
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Format d'impressió estàndard no es pot actualitzar
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Senyoreta
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,"Si us plau, especifiqui"
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,"Si us plau, especifiqui"
DocType: Communication,Bot,bot
DocType: Help Article,Help Article,ajuda article
DocType: Page,Page Name,Nom de pàgina
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Ajuda: Propietats del camp
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Importació ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,obrir la cremallera
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Valor incorrecte a la fila {0}: {1} ha de ser {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Valor incorrecte a la fila {0}: {1} ha de ser {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Document presentat no es pot convertir de nou a redactar. Fila Transició {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Eliminació {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Eliminació {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Seleccioneu un format existent per editar o iniciar un nou format.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Creat camp personalitzat {0} a {1}
DocType: System Settings,Time Zone,Fus horari
@@ -2573,7 +2537,7 @@ DocType: DocField,No Copy,No Copy
DocType: Workflow State,qrcode,qrcode
apps/frappe/frappe/www/login.html +31,Login with LDAP,Entrada amb LDAP
DocType: Web Form,Breadcrumbs,Breadcrumbs
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Si Propietari
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Si Propietari
DocType: Data Migration Mapping,Push,Empenta
DocType: OAuth Authorization Code,Expiration time,temps de termini
DocType: Web Page,Website Sidebar,Barra Lateral pàgina web
@@ -2602,15 +2566,15 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report
DocType: Workflow Transition,Workflow Transition,Transició de workflow
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,Fa {0} mesos
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Creat per
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Configuració de Dropbox
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Configuració de Dropbox
DocType: Workflow State,resize-horizontal,resize-horizontal
DocType: Note,Content,Contingut
DocType: Data Migration Run,Push Insert,Push Insert
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Group Node
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Group Node
DocType: Communication,Notification,notificació
DocType: DocType,Document,Document
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},La sèrie {0} ja s'utilitza a {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Format de fitxer no admès
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Format de fitxer no admès
DocType: DocField,Code,Codi
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Tots els possibles estats de flux de treball i les funcions de flux de treball. Opcions DocStatus: 0 és "salvat", 1 es "Enviat" i 2 és "Cancel·lat""
DocType: Website Theme,Footer Text Color,Peu de pàgina de text en color
@@ -2646,11 +2610,10 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,Per
DocType: Print Settings,Allow page break inside tables,Permetre salt de pàgina dins de les taules
DocType: Email Account,SMTP Server,Servidor SMTP
DocType: Print Format,Print Format Help,Format d'impressió Ajuda
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Actualitzar la plantilla i guardar en format descarregat abans de connectar.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,Amb Grups
DocType: DocType,Beta,beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restaurada {0} com {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Si està actualitzant, si us plau seleccioneu ""Sobreescriure"" no s'eliminaran les files existents."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Si està actualitzant, si us plau seleccioneu ""Sobreescriure"" no s'eliminaran les files existents."
DocType: Event,Every Month,Cada Mes
DocType: Letter Head,Letter Head in HTML,Cap Carta a HTML
DocType: Web Form,Web Form,Formulari Web
@@ -2660,15 +2623,15 @@ DocType: Print Settings,Allow Print for Cancelled,Permetre impressió per Cancel
DocType: Communication,Integrations can use this field to set email delivery status,Integracions poden utilitzar aquest camp per a establir l'estat de lliurament de correu electrònic
DocType: Web Form,Web Page Link Text,Text del link a la Pàgina Web
DocType: Page,System Page,sistema de Pàgina
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Establir format predeterminat, mida de pàgina, l'estil d'impressió, etc."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Establir format predeterminat, mida de pàgina, l'estil d'impressió, etc."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Incloure Cerca a Top Bar
DocType: GSuite Settings,Allow GSuite access,Permetre l'accés GSuite
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Naming
DocType: Event,Every Year,Cada Any
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Selecciona tot
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Traduccions personalitzats
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Selecciona tot
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Traduccions personalitzats
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progrés
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,per rol
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,Els camps que falten
@@ -2680,14 +2643,13 @@ DocType: File,Thumbnail URL,URL en miniatura
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Informes personalitzats
DocType: Website Script,Website Script,Website Script
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Si no utilitzeu publicar pròpia Google Apps Script aplicació web es pot utilitzar el valor predeterminat https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Plantilles HTML personalitzades per a transaccions d'impressió.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Plantilles HTML personalitzades per a transaccions d'impressió.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,orientació
DocType: Workflow,Is Active,Està actiu
-apps/frappe/frappe/desk/form/utils.py +92,No further records,No hi ha registres addicionals
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuració> Administrador de permisos d'usuari
+apps/frappe/frappe/desk/form/utils.py +103,No further records,No hi ha registres addicionals
DocType: DocField,Long Text,Text llarg
DocType: Workflow State,Primary,Primari
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},"Si us plau, no canviar les files anteriors {0}"
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},"Si us plau, no canviar les files anteriors {0}"
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Anar a aquesta URL després de completar el formulari (només per als usuaris convidats)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,Més informació
@@ -2699,7 +2661,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,campana
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Error en el correu electrònic d'alerta
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Comparteix aquest document
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,{0} {1} no pot ser un node fulla perquè té descendents
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,{0} {1} no pot ser un node fulla perquè té descendents
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,arxiu adjunt
DocType: Data Migration Mapping,Sync,Sincronitzar
@@ -2750,7 +2712,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Passarel·la de Pagament
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Per donar acesso a un paper per només registres específics, marqueu la casella Aplicar permisos d'usuari. Permisos d'usuari s'utilitzen per limitar els usuaris amb aquesta funció als registres específics."
DocType: Portal Settings,Hide Standard Menu,Amaga menú estàndard
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Afegeix / Administrar dominis de correu electrònic.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Afegeix / Administrar dominis de correu electrònic.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},No es pot cancel·lar abans de presentar Veure Transició {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Format d'impressió {0} està deshabilitat
DocType: Email Alert,Send days before or after the reference date,Enviar dies abans o després de la data de referència
@@ -2759,7 +2721,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Valor
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Fes clic aquí per verificar
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,substitucions predictibles com "@" en lloc de "a" no ajuden molt.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Assignat By Em
-apps/frappe/frappe/utils/data.py +480,Zero,zero
+apps/frappe/frappe/utils/data.py +485,Zero,zero
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No en la manera de desenvolupador! Situat en site_config.json o fer DOCTYPE 'Custom'.
DocType: Workflow State,globe,globus
DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa
@@ -2779,11 +2741,12 @@ DocType: Module Def,Module Name,Nom del mòdul
DocType: DocType,DocType is a Table / Form in the application.,Doctype és una taula / formulari en l'aplicació.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,partit GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Informe
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Informe
DocType: SMS Settings,Use POST,Utilitzeu POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,vista web
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Advertència: Aquest format d'impressió és d'estil antic i no es pot generar a través de l'API.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Totals
DocType: DocField,Print Width,Ample d'impressió
,Setup Wizard,Assistent de configuració
DocType: Address,GST State Number,Nombre Estat GST
@@ -2809,26 +2772,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Actualitza Ajustaments SMS
DocType: Event,Event Type,Tipus d'esdeveniment
DocType: User,Last Known Versions,Darrers versions conegudes
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Afegir / Administrar comptes de correu electrònic.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Afegir / Administrar comptes de correu electrònic.
DocType: Newsletter,Published,Publicat
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Gràcies per el teu email
DocType: DocField,Small Text,Text petit
DocType: Webhook,on_cancel,on_cancelar
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Administrador accedeix {0} el {1} a través de l'adreça IP {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Administrador accedeix {0} el {1} a través de l'adreça IP {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Equival
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'
DocType: About Us Settings,Team Members Heading,Team Members Heading
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Format CSV no vàlid
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Establir el nombre de còpies de seguretat
DocType: DocField,Do not allow user to change after set the first time,No permetre que l'usuari pugui canviar després d'establir la primera vegada
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Privat o públic?
-apps/frappe/frappe/utils/data.py +578,1 year ago,fa 1 any
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat o públic?
+apps/frappe/frappe/utils/data.py +590,1 year ago,fa 1 any
DocType: Contact,Contact,Contacte
DocType: User,Third Party Authentication,Third Party Authentication
DocType: Website Settings,Banner is above the Top Menu Bar.,Banner està per sobre de la barra de menú superior.
DocType: Razorpay Settings,API Secret,API secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Exporta informe:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} no existeix
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Exporta informe:
DocType: Data Migration Run,Push Update,Push Update
DocType: Email Account,Port,Port
DocType: Print Format,Arial,Arial
@@ -2850,10 +2812,9 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribe
DocType: Print Settings,PDF Settings,Configuració de PDF
DocType: Kanban Board Column,Column Name,Nom de la columna
DocType: Language,Based On,Basat en
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Estàs tot configurat!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Estableix com a predeterminat
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Comproveu l'URL del servidor Frappe
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats
DocType: Communication,Email Account,Compte de correu electrònic
DocType: Workflow State,Download,Descarregar
DocType: Blog Post,Blog Intro,Bloc Intro
@@ -2869,7 +2830,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},límit no vàlid {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Llista un tipus de document
DocType: Event,Ref Type,Tipus Ref
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si has de carregar nous registres, deixa en blanc la columna ""name"" (ID)"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si has de carregar nous registres, deixa en blanc la columna ""name"" (ID)"
DocType: Data Migration Run,Current Mapping Delete Start,Assignació actual Eliminar inici
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Els errors en els esdeveniments de fons
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,No de Columnes
@@ -2881,22 +2842,22 @@ DocType: Website Settings,Website Theme Image,Lloc web Imatge per tema
DocType: Workflow State,road,carretera
DocType: LDAP Settings,Organizational Unit,unitat organitzativa
DocType: User,Timezone,Zona horària
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},No es pot carregar: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},No es pot carregar: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,reserva
DocType: DocField,Read Only,Només lectura
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Nou Butlletí
DocType: Print Settings,Send Print as PDF,Envia la impressió com a PDF
DocType: Web Form,Amount,Quantitat
DocType: Workflow Transition,Allowed,Mascotes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Només hi pot haver un plec en el formulari
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Només hi pot haver un plec en el formulari
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},No es pot escriure el format d'arxiu per a {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Restaurar a la configuració per defecte?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Home Page no vàlida
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Accés incorrecte. Intenteu-ho de nou.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Accés incorrecte. Intenteu-ho de nou.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1}
DocType: Auto Email Report,Send only if there is any data,Enviar només si hi ha qualsevol dada
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reiniciar els filtres
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assignació tancat per {0}
DocType: Integration Request,Remote,remot
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular
@@ -2907,7 +2868,6 @@ DocType: Error Snapshot,Locals,Els locals
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicada a través d'{0} el {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} t'ha mencionat en un comentari en {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,per exemple (55 + 434) / 4 o = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El compte de correu electrònic no està configurat. Creeu un compte de correu electrònic nova a Configuració> Correu electrònic> Compte de correu electrònic
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} és necessari
DocType: Integration Request,Integration Type,Tipus d'Integració
DocType: Newsletter,Send Attachements,Enviar Attachements
@@ -2917,16 +2877,15 @@ DocType: DocField,Perm Level,Perm Level
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Esdeveniments A l'Agenda d'avui
DocType: Web Page,Web Page,Pàgina Web
DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Omet files amb errors.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,veure Llista
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,veure Llista
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},La data ha de tenir el format: {0}
DocType: Workflow,Don't Override Status,No correcció d'estat
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Si us plau, donar una qualificació."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentaris Sol·licitud
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,El terme de cerca
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,La Primera Usuari:
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Seleccionar columnes
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,La Primera Usuari:
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Seleccionar columnes
DocType: Translation,Source Text,font del text
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Paràmetres que falten per a l'inici de sessió
DocType: Workflow State,folder-open,-Carpeta oberta
@@ -2938,18 +2897,17 @@ DocType: Page,No,No
DocType: Property Setter,Set Value,Valor seleccionat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Hide field in form
DocType: Webhook,Webhook Data,Dades de Webhook
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Il · legal testimoni d'accés. Siusplau torna-ho a provar
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Il · legal testimoni d'accés. Siusplau torna-ho a provar
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","L'aplicació s'ha actualitzat a una nova versió, si us plau, tornar a carregar aquesta pàgina"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Reenviar
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opcional: L'alerta s'enviat si aquesta expressió és veritable
DocType: Data Migration Plan,Plan Name,Nom del pla
DocType: Print Settings,Print with letterhead,Imprimir de carta
DocType: Unhandled Email,Raw Email,E-mail prima
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Seleccioneu els registres per a l'assignació
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Importació
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Seleccioneu els registres per a l'assignació
DocType: ToDo,Assigned By,assignat per
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Podeu utilitzar Personalitzar Formulari per establir els nivells dels camps.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Seleccioni el seu Regió
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Seleccioni el seu Regió
DocType: Custom DocPerm,Level,Nivell
DocType: Custom DocPerm,Report,Informe
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La quantitat ha de ser més gran que 0.
@@ -2968,7 +2926,7 @@ DocType: Website Theme,Background,Fons
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions."
DocType: Report,Ref DocType,Ref DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Si us plau, afegir una qualificació"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Pàgina plena
DocType: DocType,Is Child Table,És Taula fill
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} ha de ser una de {1}
@@ -2980,7 +2938,7 @@ DocType: Workflow State,chevron-left,chevron-left
DocType: Communication,Sending,Enviament
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,No es permet des d'aquesta adreça IP
DocType: Website Slideshow,This goes above the slideshow.,Això va per sobre de la presentació de diapositives (slideshow)
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Instal·lació d'aplicacions.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Instal·lació d'aplicacions.
DocType: Contact,Last Name,Cognoms
DocType: Event,Private,Privat
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,No hi ha alertes per avui
@@ -2997,19 +2955,19 @@ DocType: Event,Send an email reminder in the morning,Enviar un recordatori per c
DocType: Blog Post,Published On,Publicat a
DocType: Contact,Gender,Gènere
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informació obligatòria que falta:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Sol·licitar URL de sol·licitud
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Només 200 insercions permesos en una petició
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,Torneu a la pantalla de verificació i introduïu el codi que mostra l'aplicació d'autenticació
DocType: ToDo,Reference Type,Tipus de referència
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,Activa el mode desenvolupador per crear una nova connexió
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,Activa el mode desenvolupador per crear una nova connexió
DocType: Event,Repeat On,Repeat On
DocType: SMS Parameter,SMS Parameter,Paràmetre SMS
DocType: Communication,Marked As Spam,Marcat com a correu brossa
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Hi ha una mica de problema amb la url de l'arxiu: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,arbre
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,No està autoritzat a imprimir aquest informe
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,No està autoritzat a imprimir aquest informe
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Permisos d'usuari
DocType: Workflow State,warning-sign,warning-sign
DocType: Workflow State,User,Usuari
@@ -3041,64 +2999,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Defecte
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} afegits
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Si us plau, guardi l'informe primer"
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,"Si us plau, guardi l'informe primer"
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonats afegir
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,No En
DocType: Workflow State,star,estrella
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,valors separats per comes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Ample màxim per al tipus de moneda és 100px a la fila {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,valors separats per comes
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Ample màxim per al tipus de moneda és 100px a la fila {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Si us plau, comparteixi els seus comentaris per {0}"
apps/frappe/frappe/config/website.py +13,Content web page.,Contingut de la pàgina web.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Afegeix un nou paper
DocType: Deleted Document,Deleted Document,document eliminat
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Ui! Quelcom ha fallat
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Ui! Quelcom ha fallat
DocType: Help Article,Category,Categoria
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Extensions de script del costat del client en Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Directrius per a instal·lar dependències LDAP i Python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Introducció del blog
DocType: Address,Office,Oficina
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Aquesta Junta Kanban serà privada
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Aquesta Junta Kanban serà privada
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Informes estàndard
DocType: User,Email Settings,Configuració del correu electrònic
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,Introduïu la contrasenya per continuar
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,No és un usuari vàlid LDAP
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} no és un Estat vàlida
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',Si us plau seleccioneu un altre mètode de pagament. PayPal no admet transaccions en moneda '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,camp de cerca {0} no és vàlid
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,camp de cerca {0} no és vàlid
DocType: Workflow State,ok-circle,ok-circle
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Es poden trobar coses preguntant "trobar taronja en els clients '
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Ho sento! L'usuari ha de tenir accés complet al seu propi rècord.
,Usage Info,Informació d'ús
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,token invàlid
DocType: Email Account,Email Server,Servidor de correu electrònic
-DocType: DocShare,Document Type,Tipus de document
+DocType: Data Import,Document Type,Tipus de document
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Etiqueta obligatòria
DocType: PayPal Settings,API Username,Nom d'usuari API
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Medi Dia
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Medi Dia
DocType: Communication,Communication Type,Tipus de comunicació
DocType: DocField,Unique,Únic
-DocType: Data Migration Run,Partial Success,Èxit parcial
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Èxit parcial
DocType: Email Account,Service,Servei
DocType: File,File Name,Nom De l'Arxiu
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),No s'ha trobat {0} per {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),No s'ha trobat {0} per {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Vaja, no se li permet saber que"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Següent
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Següent
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Ha tancat la sessió amb èxit
DocType: Calendar View,Calendar View,Vista del calendari
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edita format
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Completar el registre
DocType: GSuite Settings,Enable,Permetre
+DocType: Google Maps,Home Address,Adreça de casa
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Nou {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar en color i text en color són els mateixos. Han tenen bon contrast per poder llegir.
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Només es pot carregar fins a 5.000 registres d'una sola vegada. (Pot ser inferior en alguns casos)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Només es pot carregar fins a 5.000 registres d'una sola vegada. (Pot ser inferior en alguns casos)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},De permís suficient per a {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),L'Informe no s'ha guardat (hi ha errors)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),L'Informe no s'ha guardat (hi ha errors)
DocType: Print Settings,Print Style,Estil d'impressió
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,No vinculats a cap registre
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,No vinculats a cap registre
DocType: Custom DocPerm,Import,Importació
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No es permet habilitar Permet a Enviar per camps estàndard
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Importar / Exportar dades
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Importar / Exportar dades
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Funcions estàndard no pot canviar el nom
DocType: Communication,To and CC,Per i CC
DocType: SMS Settings,Static Parameters,Paràmetres estàtics
@@ -3120,18 +3079,17 @@ DocType: Web Page,Header and Description,Capçalera i Descripció
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Es requereix usuari i contrassenya
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,"Si us plau, actualitza per obtenir l'últim document."
DocType: User,Security Settings,Configuració de seguretat
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Afegir columna
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Afegir columna
,Desktop,Escriptori
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Informe d'exportació: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Informe d'exportació: {0}
DocType: Auto Email Report,Filter Meta,filtre Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El text que es mostra per enllaçar a la pàgina web si aquest formulari disposa d'una pàgina web. Ruta Enllaç automàticament es genera sobre la base de `page_name` i ` parent_website_route`
DocType: Feedback Request,Feedback Trigger,retroalimentació del disparador
DocType: S3 Backup Settings,Backup Limit,Límit de còpia de seguretat
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,"Si us plau, estableix {0} primer"
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,"Si us plau, estableix {0} primer"
DocType: Unhandled Email,Message-id,Missatge-id
DocType: Patch Log,Patch,Pedàs
-DocType: Async Task,Failed,Fracassat
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,No s'ha trobat dades
+DocType: Activity Log,Failed,Fracassat
DocType: Web Form,Allow Comments,Permetre comentaris
DocType: User,Background Style,Estil del fons
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,Anul·lar dos autors de factors per als usuaris que inicien la sessió des de l'adreça IP restringida
@@ -3140,7 +3098,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},fusionat {0} a {1}
DocType: System Settings,mm-dd-yyyy,mm-dd-aaaa
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Nova connexió
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} connectat
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} connectat
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,El seu nom d'usuari és
DocType: OAuth Client,Skip Authorization,saltar Autorització
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","No es pot editar l'Alerta de correu electrònic estàndard. Per editar-lo, inhabiliteu-lo i torneu-lo a duplicar"
diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv
index e2e0f4687e..9dadde5d6b 100644
--- a/frappe/translations/cs.csv
+++ b/frappe/translations/cs.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Nový úkol, {0}, byla přiřazena k vám od {1}. {2}"
DocType: Email Queue,Email Queue records.,Email fronty záznamů.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Příspěvek
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,"Prosím, vyberte typ Party první"
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,"Prosím, vyberte typ Party první"
DocType: Address,Punjab,Paňdžáb
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Přejmenovat více položek nahráním souboru typu *.csv
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Přejmenovat více položek nahráním souboru typu *.csv
DocType: Workflow State,pause,pause
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Nemáte povolen přístup na tuto stránku.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Nebyly nalezeny žádné výsledky pro '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Vaše informace byly předloženy apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Uživatel: {0} nemůže být vymazán DocType: System Settings,Currency Precision,Měnová přesnost @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Příloha DocType: Communication,Message ID,ID zprávy DocType: Property Setter,Field Name,Název pole apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite není nakonfigurován. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,nebo +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,nebo apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,název modulu ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Pokračovat DocType: Custom Field,Fieldname,Název pole DocType: Workflow State,certificate,certifikát DocType: User,Tile,Dlaždice apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Ověřování ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,První sloupec dat musí být prázdný. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,První sloupec dat musí být prázdný. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Zobrazit všechny verze DocType: Workflow State,Print,Tisk DocType: User,Restrict IP,Omezit IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,Přístrojová deska apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Vyhledávání nebo zadejte příkaz -DocType: Communication,Timeline Name,Časová osa Name +DocType: Activity Log,Timeline Name,Časová osa Name DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Přidat nové pravidlo DocType: Contact,Sales Master Manager,Sales manažer ve skupině Master @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,N DocType: Top Bar Item,Parent Label,nadřazený popisek apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Váš dotaz byl přijat. Odpovíme Vám brzy zpět. Máte-li jakékoliv další informace, prosím, odpovězte na tento mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Oprávnění jsou automaticky překládána ve standardních výpisech a vyhledávačích. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Požadovaný token pro přihlášení +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} je povinné pole +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Požadovaný token pro přihlášení DocType: Event,Repeat Till,Opakovat dokud apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Nový apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Nastavte adresu URL skriptu v nastavení Gsuite @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Nadcházející události pro dnešek DocType: Email Alert Recipient,Email By Document Field,Email od pole dokumentu DocType: Domain Settings,Domain Settings,Nastavení domény -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Velikost souborů: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Velikost souborů: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Upgrade apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Není možné se připojit: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Slovo samo o sobě je snadno uhodnout. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Zlomkové jednotky apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} z {1} až {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Označit jako hotové DocType: Communication,Type,Typ -DocType: Authentication Log,Subject,Předmět +DocType: Activity Log,Subject,Předmět DocType: Web Form,Amount Based On Field,Částka z terénního apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Uživatel je povinný pro Share DocType: DocField,Hidden,skrytý @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Umožnit Neúplné formuláře apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0}: musí být nastaveno první apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Použijte pár slov, vyhnout obvyklým fráze." DocType: Workflow State,plane,letadlo -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, ""číselníky"" se stanou povinnými, pakliže jsou zvoleny." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, ""číselníky"" se stanou povinnými, pakliže jsou zvoleny." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Získejte upozornění pro dnešní den apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DOCTYPE lze přejmenovat pouze uživatel Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},Změněná hodnota {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Pokud má uživatel nějakou roli, uživatel se stává "systémovým uživatelem". "Uživatel systému" má přístup k pracovní ploše" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Zkontrolujte svůj e-mail pro ověření -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Fold nemůže být na konci formuláře +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odražené DocType: Deleted Document,Deleted Name,vypouští Name apps/frappe/frappe/config/setup.py +14,System and Website Users,Systémový a veřejní uživatelé @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Pull Update DocType: Auto Email Report,No of Rows (Max 500),Ne řádků (max 500) DocType: Language,Language Code,Kód jazyka apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Vaše záloha se připravuje pro stažení, tato operace může chvíli trvat v závislosti na objemu dat, trpělivost prosím …" -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Přidat filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Přidat filtr apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS poslal do následujících čísel: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Vaše hodnocení: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} a {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} a {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vždy přidat "Koncept" Okruh pro tisk konceptů dokumentů DocType: Data Migration Run,Current Mapping Start,Aktuální spuštění mapování apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,E-mail byl označen jako spam DocType: About Us Settings,Website Manager,Správce webu apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Odesílání souboru bylo odpojeno. Prosím zkuste to znovu. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Vyberete si návrhy nebo zrušené dokumenty -apps/frappe/frappe/model/document.py +1180,Document Queued,dokument ve frontě +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Vyberete si návrhy nebo zrušené dokumenty +apps/frappe/frappe/model/document.py +1186,Document Queued,dokument ve frontě DocType: GSuite Templates,Destination ID,ID místa určení DocType: Desktop Icon,List,Seznam -DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty +DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Neplatné heslo: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Neplatné heslo: DocType: Print Settings,Send document web view link in email,Odeslat dokument odkaz web zobrazit v e-mailu apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše připomínky ke dokumentu {0} úspěšně uložen -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Předchozí +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Předchozí apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} řádky pro {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-měna. Pro např ""Cent """ @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Vyberte uploadovaný soubor DocType: Letter Head,Check this to make this the default letter head in all prints,Toto zaškrtněte pro vytvoření výchozího záhlaví pro veškerý tisk DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,New Kanban Board +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,New Kanban Board DocType: Desktop Icon,Link,Odkaz apps/frappe/frappe/utils/file_manager.py +111,No file attached,Žádný soubor nepřiložen DocType: Version,Version,Verze DocType: User,Fill Screen,Vyplnit obrazovku -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vyberte Soubor +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Nahrávání selhalo -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Upravit pomocí Vkládání +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Upravit pomocí Vkládání apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","typ dokumentu ..., např zákazník" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Stavem '{0}' je neplatná DocType: Workflow State,barcode,Barcode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Přidejte svůj vlastní překlady +apps/frappe/frappe/config/setup.py +242,Add your own translations,Přidejte svůj vlastní překlady DocType: Country,Country Name,Stát Název DocType: About Us Team Member,About Us Team Member,O nás – člen týmu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Oprávnění se nastavují na rolích a typech dokumentů (nazýváme je DocTypes) nastavením práv jako číst, Zapsat, Vytvořit, Smazat, Vložit, Zrušit, Změnit, Výpis, Import, Export, Tisk, Email a Nastavení uživatelských oprávnění." DocType: Event,Wednesday,Středa -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname DocType: OAuth Client,Token,Žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (název) entity jejíž vlastnost bude nastavena apps/frappe/frappe/limits.py +84,"To renew, {0}.","Chcete-li obnovit, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,Aplikace {0} již apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Žádný náhled DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Ukázat Oprávnění -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Časové období -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} z {1} DocType: About Us Settings,Introduce your company to the website visitor.,Představte svoji organizaci návštěvníků internetových stránek. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json",Šifrovací klíč je neplatný. Zkontrolujte prosím site_config.json @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 komentář DocType: Email Alert,Days Before,Dny před DocType: Workflow State,volume-down,volume-down -apps/frappe/frappe/desk/reportview.py +262,No Tags,žádné tagy +apps/frappe/frappe/desk/reportview.py +266,No Tags,žádné tagy DocType: DocType,List View Settings,Seznam Nastavení zobrazení DocType: Email Account,Send Notification to,Odeslat oznámení na DocType: DocField,Collapsible,Skládací apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Uloženo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,S čím potřebuješ pomoci? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Volby pro vybrané. Každá volba na nový řádek. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Zrušit na trvalo: {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Zrušit na trvalo: {0}? DocType: Workflow State,music,Hudba apps/frappe/frappe/www/qrcode.html +3,QR Code,QR kód apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Datum poslední změny DocType: Web Page,Settings,Nastavení apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Prosím specifikujte doctype DocType: Print Format,Style Settings,Nastavení stylu -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Více +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Více DocType: Contact,Sales Manager,Manažer prodeje -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Přejmenovat +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Přejmenovat DocType: Print Format,Format Data,Formát dat -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Jako +apps/frappe/frappe/utils/bot.py +91,Like,Jako DocType: Customize Form Field,Customize Form Field,Přizpůsobit formulářové pole DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Aplikace s výpisem není povolena DocType: Deleted Document,Hub Sync ID,ID synchronizace Hubu -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,použijete % jako zástupný znak +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,použijete % jako zástupný znak apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domény není nakonfigurován pro tento účet, vytvořit jeden?" DocType: User,Reset Password Key,Obnovit heslo klíče DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimální skóre hesla DocType: DocType,Fields,Pole DocType: System Settings,Your organization name and address for the email footer.,Vaše jméno a adresa organizace pro e-mailové zápatí. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,nadřazená tabulka +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,nadřazená tabulka apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,Zálohování S3 dokončeno! apps/frappe/frappe/config/desktop.py +60,Developer,Vývojář apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Vytvořeno @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Nastavit pouze jednou DocType: Email Queue Recipient,Email Queue Recipient,Email Fronta Příjemce DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Uživatelské jméno {0} již existuje -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Tam je chyba v adrese šabloně {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Vysoké DocType: S3 Backup Settings,Secret Access Key,Tajný přístupový klíč apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Muž -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,Služba OTP Secret byla resetována. Při příštím přihlášení bude vyžadována opětovná registrace. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,Služba OTP Secret byla resetována. Při příštím přihlášení bude vyžadována opětovná registrace. DocType: Communication,From Full Name,Od Celé jméno apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Nemáte přístup k Reportu: {0} DocType: User,Send Welcome Email,Odeslat uvítací e-mail -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Odebrat filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Odebrat filtr DocType: Address,Daman and Diu,Daman a Diu DocType: Address,Personal,Osobní -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Hromadné přejmenování +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Hromadné přejmenování DocType: Email Queue,Show as cc,Zobrazit jako cc DocType: DocField,Heading,Nadpis DocType: Workflow State,resize-vertical,resize-vertical -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. uploadu DocType: Contact Us Settings,Introductory information for the Contact Us Page,Úvodní informace na stránce kontaktujte nás DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,V Globální hledání DocType: Workflow State,indent-left,indent-left apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,"Je to riskantní smazat tento soubor: {0}. Prosím, obraťte se na správce systému." DocType: Currency,Currency Name,Jméno měny -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,žádné e-maily +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,žádné e-maily DocType: Report,Javascript,Javascript DocType: File,Content Hash,Otisk obsahu (hash) DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Uchovává JSON posledních známých verzí různých instalovaných aplikací. To se používá k zobrazení poznámky k vydání. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Standardní typ DocType nemůže mít výchozí formát tisku, použijte možnost Přizpůsobit formulář" DocType: Report,Query,Dotaz DocType: DocType,Sort Order,Pořadí řazení -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Zvolte popisek, za kterým chcete vložit nové pole." ,Document Share Report,Dokument Share Report DocType: User,Last Login,Poslední přihlášení -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sloupec DocType: Custom Field,Adds a custom field to a DocType,Přidá přizpůsobené pole do DocType DocType: File,Is Home Folder,Je Domovská složka apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} není platná e-mailová adresa -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Zvolte aspoň 1 záznamů pro tisk +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Zvolte aspoň 1 záznamů pro tisk apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Uživatel '{0}' již má za úkol '{1}' DocType: System Settings,Two Factor Authentication method,Metoda ověřování dvěma faktory apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Sdíleno s {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Odhlásit odběr -DocType: Communication,Reference Name,Název reference +DocType: Activity Log,Reference Name,Název reference apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Chat Support DocType: Error Snapshot,Exception,Výjimka -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Nebyly nalezeny žádné výsledky pro '
DocType: Email Account,Use IMAP,Použít IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Nelze provést požadavek na adresu URL Frappe Server +DocType: Activity Log,Activity Log,Aktivita Log DocType: Integration Request,Authorized,Autorizovaný DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Typy osamocené mají pouze jeden záznam - není asociovaná žádná tabulka. Hodnoty jsou uloženy v tabSingles DocType: System Settings,Enable Password Policy,Povolit zásady hesel @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Sezn apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Typ pole nelze změnit pro {0} DocType: Workflow,Rules defining transition of state in the workflow.,Pravidla definující přechod stavů v tocích (workflow). DocType: File,Folder,Složka +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Importovat / Exportovat data z souborů CSV a Excel. DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Manažer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Možnost 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} až {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} až {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Přihlásit se chyby během požadavků. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} byl úspěšně přidán do e-mailové skupiny. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,"Neupravujte záhlaví, které jsou v šabloně přednastaveny" +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,"Neupravujte záhlaví, které jsou v šabloně přednastaveny" apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Přihlašovací ověřovací kód od {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Udělat soubor (y) soukromý nebo veřejný? +DocType: Data Import,Import Status,Stav importu +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Udělat soubor (y) soukromý nebo veřejný? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Plánované poslat na {0} DocType: Kanban Board Column,Indicator,Indikátor DocType: DocShare,Everyone,Všichni DocType: Workflow State,backward,pozpátku -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" DocType: Email Queue,Add Unsubscribe Link,Přidat odkaz pro odhlášení apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Zatím žádné komentáře. Začít novou diskuzi. DocType: Workflow State,share,Podíl apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Vaše předplatné vypršelo na {0}. Chcete-li obnovit, pošlete email na {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Nastavit čáslené řady pro transakce. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Nastavit čáslené řady pro transakce. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,"Můžete nelíbí něco, co jste vytvořili" apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC a standardní odpověď" DocType: User,Last IP,Poslední IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Konektor pro migraci DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filtrovat záznamy za základě uživatelských oprávnění definovaných pro uživatele DocType: Note,Notify Users On Every Login,Upozornit uživatele na každé přihlášení DocType: PayPal Settings,API Password,API Password -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Zadejte modul pythonu nebo vyberte typ konektoru +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Zadejte modul pythonu nebo vyberte typ konektoru apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Přizpůsobené pole nemá nastaven název apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Naposledy aktualizováno by apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,není povoleno. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Soubor nelze odstranit, protože patří do {0} {1}, pro který nemáte oprávnění" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Paní DocType: Website Theme,Background Color,Barva pozadí -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. DocType: Portal Settings,Portal Settings,Portál Nastavení DocType: Data Migration Mapping,Mapping,Mapování DocType: Web Page,0 is highest,0 je nejvyšší @@ -667,6 +668,7 @@ DocType: Language,Language Name,Název jazyka DocType: Email Group Member,Email Group Member,E-mail člena skupiny DocType: Email Alert,Value Changed,Hodnota změněna apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Duplicitní jméno {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Opakujte DocType: Web Form Field,Web Form Field,Pole webového formuláře apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Skrýt pole v konfigurátoru výpisů apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Upravit HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Obchod DocType: DocField,Button,Tlačítko apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} je nyní výchozí formát tisku pro {1} doctype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,archivované sloupce +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,archivované sloupce DocType: Email Account,Default Outgoing,Výchozí Odchozí DocType: Workflow State,play,play apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Klikněte na odkaz dole pro dokončení Vaší registrace a nastavení nového hesla apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Nebylo přidáno -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Žádné e-mailové účty Účelově +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Žádné e-mailové účty Účelově DocType: Contact Us Settings,Contact Us Settings,Nastavení - Kontaktujte nás apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Hledání ... DocType: Workflow State,text-width,text-width @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Kontrola komunikace DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Výpisy konfigurátoru výpisů jsou spravovány přímo konfigurátorem výpisů. Nelze provést žádnou akci. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Je třeba ověřit svou emailovou adresu -apps/frappe/frappe/model/document.py +1039,none of,žádný z +apps/frappe/frappe/model/document.py +1045,none of,žádný z apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Odeslat si kopii DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Webová stránka apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Zaškrtnuté položky se zobrazí na ploše -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} nelze nastavit pro Single types -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban Board {0} neexistuje. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} nelze nastavit pro jediný typ +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban Board {0} neexistuje. +DocType: Data Import,Data Import,Import dat apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} právě prohlížejí tento dokument DocType: ToDo,Assigned By Full Name,Přidělené Celé jméno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0}: aktualizováno -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dny DocType: Email Account,Awaiting Password,Čeká Password DocType: Address,Address Line 1,Adresní řádek 1 DocType: Custom DocPerm,Role,Role apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Nastavení ... -apps/frappe/frappe/utils/data.py +459,Cent,Cent -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,skládat e-mail -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." +apps/frappe/frappe/utils/data.py +464,Cent,Cent +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,skládat e-mail +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." DocType: Print Settings,Allow Print for Draft,Umožňují tisk pro Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Nastavit Množství -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Předloží tento dokument potvrdit +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Předloží tento dokument potvrdit DocType: Contact,Unsubscribed,Odhlášen z odběru apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Nastavit vlastní role pro stránky a zprávy apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Hodnocení: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Nelze najít UIDVALIDITY v reakci stavu imap -,Data Import Tool,Nástroj importování dat DocType: Address,Dadra and Nagar Haveli,Dádra a Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Prosím nastavte výchozí emailový účet z Nastavení> Email> E-mailový účet apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Nahrávání souborů, prosím vyčkejte několik vteřin." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Připojit svůj obrázek +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Připojit svůj obrázek apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Hodnoty Změnil DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Odkaz na stránku, kterou chcete otevřít. Ponechte prázdné, pokud chcete, aby to skupina rodič." @@ -747,7 +748,7 @@ DocType: Report,Script Report,Skriptovaný výpis DocType: OAuth Authorization Code,Scopes,scopes DocType: About Us Settings,Company Introduction,Představení organizace DocType: DocField,Length,Délka -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Obnovit nebo trvale odstranit dokument. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Obnovit nebo trvale odstranit dokument. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,Test GSuite byl úspěšně proveden. Integrace GSuite je správně nakonfigurována DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} odstraněno DocType: Custom DocPerm,Apply User Permissions,Použít oprávnění DocType: User,Modules HTML,Moduly HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Chybějící hodnoty vyžadovány +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Chybějící hodnoty vyžadovány DocType: DocType,Other Settings,další nastavení DocType: Data Migration Connector,Frappe,Frapé apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Označit jako nepřečtené apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} není nastaveno -DocType: Authentication Log,Operation,Operace +DocType: Activity Log,Operation,Operace DocType: Customize Form,Change Label (via Custom Translation),Změna Label (přes vlastní překlad) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Žádné povolení k {0} {1} {2} DocType: Address,Permanent,Trvalý apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Poznámka: Jiná pravidla oprávnění mohou být také aplikována apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Není povoleno přistupovat k {0} s {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Pokud je zaškrtnuto, budou importovány řádky s platnými daty a neplatné řádky budou vráceny do nového souboru, abyste mohli později importovat." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Podívej se na to ve svém prohlížeči DocType: DocType,Search Fields,Vyhledávací pole DocType: System Settings,OTP Issuer Name,Jméno vydavatele OTP @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nositel Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Vybrán žádný dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Událost -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nelze smazat standardní pole. Můžete ji skrýt, pokud chcete" DocType: Top Bar Item,For top bar,Pro horní panel apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Naléhá na zálohu. Obdržíte e-mail s odkazem na stažení @@ -789,35 +792,34 @@ DocType: Workflow State,minus,mínus DocType: S3 Backup Settings,Bucket,Kbelík apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Serverová chyba: Prosím zkontrolujte serverové logy nebo kontaktujte technickou podporu. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Uvítací email odeslán -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Pojďme připravit systém pro první použití. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Pojďme připravit systém pro první použití. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Doporučené apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Již registrováno DocType: System Settings,Float Precision,Počet desetinných míst apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Jen Administrátor může editovat -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Název souboru +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Název souboru DocType: DocType,Editable Grid,editovatelné Grid DocType: Property Setter,Property Setter,Konfigurátor vlastností DocType: Web Form,Allow Print,umožňují tisk apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Žádné Apps Instalovaný apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Označit pole jako povinné DocType: Communication,Clicked,Clicked -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} DocType: User,Google User ID,Google ID uživatele apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Naplánováno odesílat DocType: DocType,Track Seen,Track Viděno apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Tuto metodu lze použít pouze k vytvoření komentář DocType: Kanban Board Column,orange,oranžový -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,{0}: nenalezeno -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Přidat vlastní formuláře. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,{0}: nenalezeno +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Přidat vlastní formuláře. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} na {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,předložen tento dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systém poskytuje mnoho předdefinovaných rolí. Můžete přidat vlastní nové role pro detailnější nastavení oprávnění. DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,Domény +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Domény DocType: Blog Category,Blog Category,Kategorie blogu apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Nelze namapovat jelikož následující podmínka selhala: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Role HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Vyberte první image značky. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktivní @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Modrý apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,Všechna přizpůsobení budou odebrána. Prosím potvrďte. DocType: Page,Page HTML,HTML kód stránky -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" DocType: SMS Parameter,Header,Záhlaví -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Neznámý sloupec: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Neznámý sloupec: {0} DocType: Email Alert Recipient,Email By Role,Email podle role apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Uživatelé s rolí {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Instalace aplikace {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Představuje uživatele v systém DocType: Communication,Label,Popisek apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Úkol {0}, které jste přiřadili k {1}, byl uzavřen." DocType: User,Modules Access,Moduly Přístup -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Zavřete prosím toto okno +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Zavřete prosím toto okno DocType: Print Format,Print Format Type,Typ formátu tisku DocType: Newsletter,A Lead with this Email Address should exist,Měly by existovat elektrody s e-mailovou adresu apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source aplikací pro web DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","Přidejte na název "Google Web Font", např "Otevřít Sans"" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Vypršel časový limit žádosti +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Povolit / Zakázat domény DocType: Role Permission for Page and Report,Allow Roles,povolit role DocType: DocType,Hide Toolbar,Skrýt panel nástrojů DocType: User,Last Active,Naposledy aktivní DocType: Email Account,SMTP Settings for outgoing emails,SMTP nastavení pro odchozí e-maily -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Import se nezdařil apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Vaše heslo bylo aktualizováno. Zde je Vaše nové heslo DocType: Email Account,Auto Reply Message,Zpráva automatické odpovědi DocType: Feedback Trigger,Condition,Podmínka -apps/frappe/frappe/utils/data.py +564,{0} hours ago,Před {0} hodin -apps/frappe/frappe/utils/data.py +574,1 month ago,1 před měsícem +apps/frappe/frappe/utils/data.py +576,{0} hours ago,Před {0} hodin +apps/frappe/frappe/utils/data.py +586,1 month ago,1 před měsícem DocType: Contact,User ID,User ID DocType: Communication,Sent,Odesláno DocType: Address,Kerala,Kerala @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Vaše předplatné vyprší zítra. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Uloženo! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} není platná hexadecimální barva apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,paní apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualizovaný {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Hlavní DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Složka {0} neexistuje -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,Přístup Dropbox je schválen! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,Přístup Dropbox je schválen! DocType: Customize Form,Enter Form Type,Vložte typ formuláře +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Chybí parametr Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Není oštítkován žádný záznam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Odebrat pole DocType: User,Send Password Update Notification,Poslat heslo Aktualizovat oznámení @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Zelená DocType: Custom DocPerm,Additional Permissions,Rozšířená oprávnění DocType: Email Account,Always use Account's Email Address as Sender,Vždy použít poštovní schránky e-mailovou adresu jako odesílatel apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Pro přidání komentáře se musíte přihlásit -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,začněte vkládat data pod tímto řádkem +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,začněte vkládat data pod tímto řádkem apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},změněné hodnoty pro {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Přizpůsobit ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Vypnuto DocType: Workflow State,eye-close,eye-close DocType: OAuth Provider Settings,OAuth Provider Settings,Nastavení OAuth Poskytovatel -apps/frappe/frappe/config/setup.py +257,Applications,Aplikace +apps/frappe/frappe/config/setup.py +264,Applications,Aplikace apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Nahlásit tento problém DocType: Custom Script,Adds a custom script (client or server) to a DocType,Přidá přizpůsobený skript (klient nebo server) do DocType DocType: Address,City/Town,Město / Město @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Je vaše firma adresa apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Upravujete řádek DocType: Workflow Action,Workflow Action Master,Akce hlavních toků DocType: Custom Field,Field Type,Typ pole -apps/frappe/frappe/utils/data.py +489,only.,pouze. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP tajemství může být obnoveno pouze administrátorem. +apps/frappe/frappe/utils/data.py +494,only.,pouze. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP tajemství může být obnoveno pouze administrátorem. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,"Vyhnout se roky, které jsou spojeny s vámi." DocType: GSuite Templates,GSuite Templates,Šablony GSuite -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Sestupně apps/frappe/frappe/utils/goal.py +109,Goal,Cíl apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,"Neplatný Mail Server. Prosím, opravu a zkuste to znovu." DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Bez oprávnění číst: {0} apps/frappe/frappe/config/desktop.py +8,Tools,Nástroje apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Vyhněte se v posledních letech. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Není povoleno více kořenových uzlů (uzlů nejvyšší úrovně). +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Není povoleno více kořenových uzlů (uzlů nejvyšší úrovně). DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Pokud je povoleno, budou uživatelé při každém přihlášení upozorněni. Není-li tato možnost povolena, budou uživatelé upozorněni pouze jednou." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Neplatná podmínka {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Neplatná podmínka {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Je-li zaškrtnuto, uživatelé nebudou vidět dialogové okno Potvrdit přístup." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID pole je vyžadováno pro úpravu hodnot použitím výpisu. Prosím zvolte ID pole použitím výběru sloupce apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Komentáře apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Potvrdit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Sbalit vše @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Nastavit práva DocType: Email Account,Email Account Name,Název e-mailového účtu apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Zvolte typy dokumentů -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,Něco se pokazilo při generování přístupového tokenu schránky. Pro podrobnější informace prosím zkontrolujte protokol chyb. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,Něco se pokazilo při generování přístupového tokenu schránky. Pro podrobnější informace prosím zkontrolujte protokol chyb. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Zpravodaje ke kontaktům, vede." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","např ""Podpora "","" Prodej"","" Jerry Yang """ @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook ID uživatele DocType: Workflow State,fast-forward,fast-forward DocType: Communication,Communication,Komunikace apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Zkontrolujte, zda sloupce vybrat, přetáhnout nastavení pořadí." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Tato akce je NEVRATNÁ a nemůže ji vrátit zpět. Pokračovat? DocType: Event,Every Day,Každý den DocType: LDAP Settings,Password for Base DN,Heslo pro základní DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabulka Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Sloupce na bázi +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Sloupce na bázi apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Zadejte klíč pro povolení integrace se službou Google GSuite DocType: Workflow State,move,Stěhovat -apps/frappe/frappe/model/document.py +1223,Action Failed,akce se nezdařilo +apps/frappe/frappe/model/document.py +1229,Action Failed,akce se nezdařilo apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,pro Uživatele -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Diagram účtů +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Diagram účtů DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,V odběru máte ponechány {0} dny +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,V odběru máte ponechány {0} dny apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Odchozí e-mailový účet není správný apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily Disabled apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Instalovaný -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Prosím nastavte e-mailovou adresu +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Prosím nastavte e-mailovou adresu DocType: System Settings,Date and Number Format,Formát čísel a data apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Maximální velikost přílohy je {0} MB -apps/frappe/frappe/model/document.py +1038,one of,jeden z -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Vyberte soubor, který chcete zkopírovat" +apps/frappe/frappe/model/document.py +1044,one of,jeden z apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrola jeden okamžik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Zobrazit štítky DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Pokud je zaškrtnuto políčko Použít oprávnění pro přísné uživatele a uživatelské oprávnění je definováno pro uživatele typu DocType, všechny dokumenty, u nichž je hodnota odkazu prázdné, se tomuto uživateli nezobrazí" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Akce DocType: Workflow State,align-justify,zarovnat-vyplnit DocType: User,Middle Name (Optional),Druhé jméno (volitelné) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Není povoleno -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Následující pole mají chybějící hodnoty: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,Nemáte dostatečná oprávnění k dokončení akce +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Následující pole mají chybějící hodnoty: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,Nemáte dostatečná oprávnění k dokončení akce apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Žádné výsledky DocType: System Settings,Security,Bezpečnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Plánované poslat na {0} příjemci +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Střih apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},přejmenována z {0} až {1} DocType: Currency,**Currency** Master,** Měna ** Hlavní DocType: Email Account,No of emails remaining to be synced,"Žádné e-mailů, které zbývá synchronizovány" -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,Nahrávání +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,Nahrávání apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Prosím uložte dokument před přiřazením apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klikněte sem pro zveřejnění chyb a návrhů DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adresa a další formální informace, které byste rádi uvedli v zápatí." @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,Před {0} minuty DocType: Kanban Board Column,lightblue,světle modrá apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Stejné pole je zadáno vícekrát -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Vyberte sloupce apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasný apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Denní události by měly skončit ve stejný den. DocType: Communication,User Tags,Uživatelské štítky @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Přihlásit DocType: Web Page,Main Section,Hlavní sekce DocType: Page,Icon,ikona apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,pro filtrování hodnot mezi 5 & 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Tip: Do hesla vložte symboly, čísla a velká písmena" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Tip: Do hesla vložte symboly, čísla a velká písmena" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavení> Správce oprávnění uživatelů apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/rrrr apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Test GSuite skriptu @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Copyright apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Jít DocType: OAuth Authorization Code,Invalid,Neplatný DocType: ToDo,Due Date,Datum splatnosti -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Čtvrt dne +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Čtvrt dne DocType: Social Login Keys,Google Client Secret,Google tajný klíč klienta DocType: Website Settings,Hide Footer Signup,Skrýt zápatí Registrovat apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,zrušen tento dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Zapíše soubor Pythonu ve stejném adresáři kde je toto uloženo a vrátí sloupec a výsledek. DocType: DocType,Sort Field,Pole řadit dle DocType: Razorpay Settings,Razorpay Settings,Nastavení Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Upravit filtr -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Upravit filtr +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Přidej víc DocType: System Settings,Session Expiry Mobile,Session Zánik Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Výsledky hledání pro apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Zvolte pro stažení: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Pokud {0} je povoleno DocType: Custom DocPerm,If user is the owner,Pokud se uživatel je vlastníkem +apps/frappe/frappe/config/integrations.py +88,Maps,Mapy ,Activity,Činnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Nápověda: Pro odkaz na jiný záznam v systému, použijte ""#Form/Note/[Název poznámky]"" jako URL odkazu. (Nepoužívejte ""http: //"")" DocType: User Permission,Allow,Dovolit apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Pojďme se zabránilo opakovanému slova a znaky DocType: Communication,Delayed,Zpožděné -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Seznam záloh k dispozici ke stažení +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Seznam záloh k dispozici ke stažení apps/frappe/frappe/www/login.html +86,Sign up,Přihlásit se DocType: Test Runner,Output,Výstup DocType: Email Alert,Set Property After Alert,Nastavit vlastnost po upozornění -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Přidat pole do formulářů. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Přidat pole do formulářů. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,"Zdá se, že se něco děje s konfigurací Paypal této stránky." DocType: File,rgt,Rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Typ souboru DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portál Položka DocType: Contact Us Settings,Email ID,Email Id +DocType: Activity Log,Keep track of all update feeds,Sledujte všechny kanály s aktualizací DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Pokud je pro aplikaci Report DocType zaškrtnuto políčko Použít oprávnění uživatele, ale žádné uživatelské oprávnění nejsou definovány pro hlášení pro uživatele, zobrazí se všechny zprávy tomuto uživateli" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,ProTip: Přidat Reference: {{ reference_doctype }} {{ reference_name }}
poslat referenční dokument
apps/frappe/frappe/modules/utils.py +196,App not found,Aplikace nenalezena
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Nelze vytvořit {0} proti dětské dokumentu: {1}
@@ -1899,7 +1903,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Pasivní
DocType: Contact,Accounts Manager,Accounts Manager
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Platba je zrušena.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Vyberte typ souboru
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Vyberte typ souboru
DocType: Help Article,Knowledge Base Editor,Editor Znalostní Báze
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stránka nenalezena
DocType: DocField,Precision,přesnost
@@ -1926,12 +1930,12 @@ DocType: Property Setter,Property Type,Typ vlastnosti
DocType: Workflow State,screenshot,snímek obrazovky
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Pouze administrátor může uložit standardní výpis. Prosím přejmenujte a uložte.
DocType: System Settings,Background Workers,Pracovníci pozadí
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,"Název pole {0}, který je v konfliktu s objektem meta"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,"Název pole {0}, který je v konfliktu s objektem meta"
DocType: Deleted Document,Data,Data
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stav dokumentu
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Provedli jste {0} z {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorizační kód
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Není povoleno importovat
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Není povoleno importovat
DocType: Social Login Keys,Frappe Client Secret,Frapé Client Secret
DocType: Deleted Document,Deleted DocType,vypouští DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Úrovně oprávnění
@@ -1939,11 +1943,11 @@ DocType: Workflow State,Warning,Upozornění
DocType: Data Migration Run,Percent Complete,Procento dokončeno
DocType: Tag Category,Tag Category,tag Kategorie
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Položka {0} je ignorována, jelikož existuje skupina se stejným názvem!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Nápověda
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Nápověda
DocType: User,Login Before,Přihlášení před
DocType: Web Page,Insert Style,Vložit styl
-apps/frappe/frappe/config/setup.py +262,Application Installer,Instalátor aplikací
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Nový název Zpráva
+apps/frappe/frappe/config/setup.py +269,Application Installer,Instalátor aplikací
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Nový název Zpráva
DocType: Workflow State,info-sign,info-sign
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Poměr {0} nemůže být seznam
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak se má zápis této měny formátovat? Pokud formátování není nastaveno, použije se výchozí systémové nastavení."
@@ -1956,6 +1960,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Oprávnění rolí
DocType: Help Article,Intermediate,přechodný
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Zrušený dokument byl obnoven jako návrh
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nelze odstranit nebo zrušit, protože {0} {1} je propojen s {2} {3} {4}"
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Může číst
DocType: Custom Role,Response,Odpověď
DocType: DocField,Geolocation,Geolokace
@@ -1979,8 +1984,8 @@ DocType: OAuth Client,Default Redirect URI,Výchozí Přesměrování URI
DocType: Email Alert,Recipients,Příjemci
DocType: System Settings,Choose authentication method to be used by all users,"Vyberte metodu autentizace, kterou budou používat všichni uživatelé"
DocType: Workflow State,ok-sign,ok-sign
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Odstraněné dokumenty
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,Ve formátu CSV se rozlišují velká a malá písmena
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Odstraněné dokumenty
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,Ve formátu CSV se rozlišují velká a malá písmena
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Ikona plochy už existuje
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikát
DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje
@@ -1988,14 +1993,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Andamanské a Nicobarské ostrovy
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,Dokument GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Prosím specifikujte která hodnota musí být prověřena
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Nadřazená"" značí nadřazenou tabulku, do které musí být tento řádek přidán"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Nadřazená"" značí nadřazenou tabulku, do které musí být tento řádek přidán"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Tento e-mail nelze odeslat. V tomto dni jste překročili limit pro odesílání {0} e-mailů.
DocType: Website Theme,Apply Style,Aplikovat styl
DocType: Feedback Request,Feedback Rating,Feedback Rating
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Sdílené s
DocType: Help Category,Help Articles,Články nápovědy
,Modules Setup,Nastavení modulů
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Typu:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Typu:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Platba se nezdařila.
DocType: Communication,Unshared,nerozdělený
DocType: Address,Karnataka,Karnataka
@@ -2004,12 +2009,11 @@ DocType: User,Location,Místo
,Permitted Documents For User,Povolené dokumenty uživatele
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Musíte mít ""Sdílet"" oprávnění"
DocType: Communication,Assignment Completed,přiřazení Dokončeno
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Hromadná Upravit {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Hromadná Upravit {0}
DocType: Email Alert Recipient,Email Alert Recipient,Příjemce upozornění emailem
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Neaktivní
DocType: About Us Settings,Settings for the About Us Page,Nastavení pro stránku O nás
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Nastavení proměnné brány plateb
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Zvolte typ dokumentu ke stažení
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,např pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Použijte pole pro filtrování záznamů
DocType: DocType,View Settings,Nastavení zobrazení
@@ -2032,6 +2036,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Nelze u
DocType: Unhandled Email,Unhandled Email,neošetřené Email
DocType: Event,Monday,Pondělí
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Využívejte delších modelů klávesnic
+DocType: Data Import,Don't create new records,Nevytvářejte nové záznamy
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Ošklivá chyba nastavení. Prosím kontaktujte admina.
DocType: Workflow State,envelope,obálka
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Možnost 2
@@ -2042,41 +2047,41 @@ DocType: Website Settings,Brand Image,Značka Obrázek
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Nastavení horního navigačního panelu, zápatí a loga."
DocType: Web Form Field,Max Value,Max Hodnota
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3}
DocType: Contact,All,Vše
DocType: Email Queue,Recipient,Příjemce
DocType: Communication,Has Attachment,má přílohu
DocType: Address,Sales User,Uživatel prodeje
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Rozbalit
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Nastavit
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Tento styl dotazu byl přerušen
DocType: Email Alert,Trigger Method,Trigger Metoda
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Operátor musí být jedním z {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Operátor musí být jedním z {0}
DocType: Dropbox Settings,Dropbox Access Token,Přístupový tok Dropbox
DocType: Workflow State,align-right,zarovnat-vpravo
DocType: Auto Email Report,Email To,E-mail na
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Složka {0} není prázdná
DocType: Page,Roles,Role
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Chyba: hodnota chybí pro {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Pole {0} nemůžete zvolit.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Pole {0} nemůžete zvolit.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Platnost relace
DocType: Workflow State,ban-circle,ban-circle
DocType: Email Flag Queue,Unread,Nepřečtený
DocType: Bulk Update,Desk,Stůl
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Filtr musí být n-tice nebo seznam (v seznamu)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Filtr musí být n-tice nebo seznam (v seznamu)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napište SQL dotaz SELECT. Poznámka: výsledky nebudou stránkovány (všechna data budou odeslána najednou).
DocType: Email Account,Attachment Limit (MB),Omezit přílohu (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Nastavení Auto Email
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Nastavení Auto Email
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Jedná se o společný heslo top-10.
DocType: User,User Defaults,Výchozí nastavení uživatele
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Vytvořit nový
DocType: Workflow State,chevron-down,chevron-down
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),Email není poslán do {0} (odhlásili / vypnuto)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),Email není poslán do {0} (odhlásili / vypnuto)
DocType: Async Task,Traceback,Vystopovat
DocType: Currency,Smallest Currency Fraction Value,Nejmenší Měna Frakce Hodnota
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Přiřadit (komu)
@@ -2096,7 +2101,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Pole ID migrace
DocType: Communication,Comment Type,Typ komentáře
DocType: OAuth Client,OAuth Client,OAuth Client
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Uživatelé
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Uživatelé
DocType: Communication,Timeline field Name,Časová osa pole Name
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Typ výpisu
@@ -2106,7 +2111,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Vložte klíče, které umožní přihlásit se přes Facebook, Google, GitHub."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Nelze číst formát souboru pro {0}
DocType: Auto Email Report,Filter Data,Filtrování dat
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Přidat značku
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Prosím nejdříve přiložte soubor.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Narazili jsme na problémy při nastavování jména, prosím kontaktujte administrátora"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Příchozí e-mailový účet není správný
@@ -2129,7 +2133,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Ode
DocType: Website Theme,Link Color,Barva odkazu
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Uživatel: {0} nemůže být vypnut
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Vážení System Manager,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Vaše země
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Vaše země
DocType: Event,Sunday,Neděle
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,V zobrazení mřížky
DocType: Address Template,Template,Šablona
@@ -2154,7 +2158,7 @@ DocType: DocField,Table,Tabulka
DocType: File,File Size,Velikost souboru
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Musíte se přihlásit pro odeslání tohoto formuláře
DocType: User,Background Image,Obrázek na pozadí
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mezi
DocType: Async Task,Queued,Ve frontě
@@ -2168,12 +2172,12 @@ DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,Access Key App
DocType: OAuth Bearer Token,Access Token,Přístupový Token
DocType: About Us Settings,Org History,Historie organizace
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Velikost zálohy:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Velikost zálohy:
DocType: Workflow,Workflow Name,Jméno toku
DocType: DocShare,Notify by Email,Upozornit emailem
DocType: DocField,In Standard Filter,Ve standardním filtrem
DocType: Web Form,Allow Edit,Povolit úpravy
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Vložit
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Vložit
DocType: Webhook,Doc Events,Dokumenty událostí
DocType: Auto Email Report,Based on Permissions For User,o oprávnění pro User Based
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Nelze změnit stav zrušeného dokumentu. řádek transakce: {0}
@@ -2186,10 +2190,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Do hesla vložte symboly, čísla a velká písmena"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vložte Po pole '{0}' uvedenou ve vlastním poli '{1}', se štítkem '{2}' neexistuje"
DocType: Workflow State,signal,signal
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Má Přílohy
DocType: DocType,Show Print First,Zobrazit nejdříve tisk
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, abyste mohl psát"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Nově Vytvořit: {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nový e-mailový účet
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Nový e-mailový účet
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument obnoven
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Zvolte jazyk...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Nemůžete nastavit volbu "Možnosti" pro pole {0}
@@ -2210,13 +2215,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Přesunout do koše
DocType: Web Form,Web Form Fields,Pole webových formulářů
DocType: Website Theme,Top Bar Text Color,Top Bar Barva textu
+DocType: Data Import,Amended From,Platném znění
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Varování: Nelze najít {0} v tabulce vztahující se k {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Tento dokument je v současné době zařazen do fronty pro provedení. Prosím zkuste to znovu
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Tento dokument je v současné době zařazen do fronty pro provedení. Prosím zkuste to znovu
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Soubor '{0}' nebyl nalezen
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Odstranit oddíl
DocType: User,Change Password,Změnit heslo
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Neplatný email: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Ahoj!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Ahoj!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Konec události musí být po začátku události
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Toto se odhlásí {0} ze všech ostatních zařízení
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Nemáte práva přistoupit k výpisu: {0}
@@ -2225,26 +2231,27 @@ DocType: DocField,Allow Bulk Edit,Povolit hromadné úpravy
DocType: Blog Post,Blog Post,Příspěvek blogu
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Pokročilé vyhledávání
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Nemáte oprávnění pro prohlížení newsletteru.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Úroveň 0 je pro oprávnění na úrovni dokumentu, \ vyšší úrovně oprávnění na úrovni pole."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Řadit dle
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,"Formulář nelze uložit, protože probíhá import dat."
DocType: Workflow,States,Stavy
DocType: Email Alert,Attach Print,Připojit Tisk
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Navrhovaná Uživatelské jméno: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,Den
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,Den
,Modules,moduly
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Nastavit ikon na ploše
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,platba Úspěch
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,No {0} pošty
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Při nahrávání souborů došlo k chybě
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,No {0} pošty
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Při nahrávání souborů došlo k chybě
DocType: OAuth Bearer Token,Revoked,zrušena
DocType: Web Page,Sidebar and Comments,Postranní panel a Komentáře
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Pokud změníte dokument po jeho zrušení a uložíte ho, dostane přiřazeno nové číslo. Toto je verze starého čísla."
DocType: Stripe Settings,Publishable Key,Klíč pro publikování
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Spusťte import
DocType: Workflow State,circle-arrow-left,circle-arrow-left
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,"Redis vyrovnávací server neběží. Prosím, obraťte se na správce / technickou podporu"
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Jméno Party
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Jméno Party
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Nově Vytvořit záznam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Vyhledávání
DocType: Currency,Fraction,Zlomek
@@ -2269,8 +2276,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Získat položky
DocType: Contact,Image,Obrázek
DocType: Workflow State,remove-sign,remove-sign
+DocType: Domain Settings,Domains HTML,Domény HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Sem něco do vyhledávacího pole pro vyhledávání
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Vymezuje toky (workflow) pro formuláře.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Vymezuje toky (workflow) pro formuláře.
DocType: Address,Other,Ostatní
DocType: S3 Backup Settings,Access Key ID,Identifikátor přístupového klíče
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Začít Nový formát
@@ -2283,6 +2291,7 @@ DocType: Customize Form Field,Is Custom Field,Je Vlastní pole
DocType: Workflow,"If checked, all other workflows become inactive.","Pakliže je toto zaškrtnuto, všechny ostatní toky (workflow) se stanou neaktivními."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Označení]:[Typ pole]/[Možnosti]:[šířka]
DocType: Workflow State,folder-close,folder-close
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Zpráva:
DocType: Print Settings,Print taxes with zero amount,Vytiskněte daně s nulovou částkou
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0}: není povoleno přejmenovat
DocType: Custom Script,Custom Script,Přizpůsobený skript
@@ -2294,32 +2303,35 @@ DocType: Email Flag Queue,Action,Akce
DocType: GSuite Settings,Script URL,Adresa URL skriptu
apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Prosím, zadejte heslo"
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Není dovoleno tisknout zrušené dokumenty
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Není vám dovoleno vytvářet sloupce
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Informace:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Není vám dovoleno vytvářet sloupce
+DocType: Data Import,If you don't want to create any new records while updating the older records.,Pokud při aktualizaci starších záznamů nechcete vytvářet žádné nové záznamy.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Informace:
DocType: Custom Field,Permission Level,úroveň oprávnění
DocType: User,Send Notifications for Transactions I Follow,Posílat oznámení pro transakce sleduji
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání"
+DocType: Google Maps,Client Key,Klientský klíč
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?"
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nelze smazat nebo zrušit, protože {0} {1} je spojeno s {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Děkujeme Vám
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Ukládám
DocType: Print Settings,Print Style Preview,Náhled stylu tisku
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Nejste oprávněn aktualizovat tento webový formulář
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,E-maily
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-maily
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,"Prosím, vyberte první typ dokumentu"
DocType: About Us Settings,About Us Settings,Nastavení O nás
DocType: Website Settings,Website Theme,Internetové stránky Téma
DocType: DocField,In List View,V seznamu
DocType: Email Account,Use TLS,Použít TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neplatné heslo či uživatelské jméno
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Pořadové číslo
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Stáhnout šablonu
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Pořadové číslo
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> Email> E-mailový účet
,Role Permissions Manager,Správce rolí a oprávnění
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Jméno nového Print Format
DocType: Data Migration Run,Pull Insert,Vytáhněte vložku
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,Clear Attachment
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Povinné:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Povinné:
,User Permissions Manager,Správce oprávnění
DocType: Property Setter,New value to be set,Nová hodnota k nastavení
DocType: Email Alert,Days Before or After,Dnů před nebo po
@@ -2329,7 +2341,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Záhlaví a roboty
DocType: User Permission,User Permission,Uživatelská oprávnění
apps/frappe/frappe/config/website.py +32,Blog,Blog
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP není nainstalován
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Ke stažení s daty
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Ke stažení s daty
DocType: Workflow State,hand-right,hand-right
DocType: Website Settings,Subdomain,Sub doména
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Nastavení pro OAuth Provider
@@ -2345,21 +2357,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,"Prosím, vyberte rating"
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Obnovit OTP Secret
DocType: Email Account,Notify if unreplied for (in mins),"Upozornit, pokud Nezodpovězená pro (v min)"
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,Před dvěma dny
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,Před dvěma dny
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizujte příspěvky blogu.
DocType: Workflow State,Time,Čas
DocType: DocField,Attach,Přiložit
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Poslat zpětnou vazbu požadavek pouze tehdy, pokud existuje alespoň jeden komunikační je k dispozici pro dokument."
DocType: Custom Role,Permission Rules,Pravidla oprávnění
DocType: GSuite Settings,GSuite Settings,Nastavení GSuite
DocType: Address,Links,Odkazy
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Zvolte Typ dokumentu.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Chybí hodnota pro
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Přidat dítě
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán.
DocType: GSuite Templates,Template Name,Název šablony
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nový typ dokumentu
DocType: Custom DocPerm,Read,Číst
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Prosím nastavte výchozí emailový účet z Nastavení> Email> E-mailový účet
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Oprávnění role Page a zpráva
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Srovnejte hodnotu
@@ -2367,18 +2381,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Staré heslo
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Příspěvky od {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Pro formátování sloupců, zadejte označení sloupců v dotazu."
DocType: Has Domain,Has Domain,Má doménu
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Skrýt
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Skrýt
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Ještě nemáte svůj účet? Přihlásit se
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,ID pole nelze odebrat
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,Link DocType
+DocType: Activity Log,Link DocType,Link DocType
DocType: Social Login Keys,Social Login Keys,Přihlašování přes sociální služby
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Odebrat všechna přizpůsobení?
DocType: Website Slideshow,Slideshow Name,Název promítání obrázků
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Stornování
DocType: DocType,Allow Rename,Povolit přejmenování
-DocType: Authentication Log,Full Name,Celé jméno/název
+DocType: Activity Log,Full Name,Celé jméno/název
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Podřízené tabulky jsou zobrazovány jako mřížka v jiných DocTypes.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stránka, kterou hledáte chybí. To by mohlo být, protože se pohybuje nebo je překlep v odkazu."
apps/frappe/frappe/www/404.html +25,Error Code: {0},Kód chyby: {0}
@@ -2409,18 +2424,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
může dostat zpět k vám. Díky!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Nelze se spojit se serverem odchozí emailové pošty
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Děkujeme Vám za Váš zájem o přihlášení do našich aktualizací
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Custom Column
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Custom Column
DocType: Workflow State,resize-full,resize-full
DocType: Workflow State,off,off
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Report {0} je vypnutý
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Doporučuje se pro vkládání nových záznamů.
-DocType: Async Task,Core,Jádro
+DocType: Activity Log,Core,Jádro
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Nastavit oprávnění
DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavit nestandardní přesnost pro desetinná čísla nebo pole měny
DocType: Email Account,Ignore attachments over this size,Ignorovat příloh přes tuto velikost
DocType: Address,Preferred Billing Address,Preferovaná Fakturační Adresa
apps/frappe/frappe/config/integrations.py +68,External Documents,Externí dokumenty
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok (y)
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Velmi mnoho zápisů v jednom požadavku. Prosím pošlete menší požadavek
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,hodnoty Změnil
DocType: Workflow State,arrow-up,šipka-nahoru
@@ -2428,10 +2441,9 @@ DocType: OAuth Bearer Token,Expires In,V vyprší
DocType: DocField,Allow on Submit,Povolit při Odeslání
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Typ výjimky
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Vybrat sloupce
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Vybrat sloupce
DocType: Web Page,Add code as <script>,Přidat kód jako <script>
DocType: Webhook,Headers,Záhlaví
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Vyberte typ
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,"Prosím, zadejte hodnoty pro App přístupový klíč a tajný klíč App"
DocType: Web Form,Accept Payment,Přijímáme platby
apps/frappe/frappe/config/core.py +62,A log of request errors,Protokol o požadavku chyb
@@ -2439,7 +2451,7 @@ DocType: Report,Letter Head,Záhlaví
DocType: DocType,Quick Entry,Rychlý vstup
DocType: Web Form,Button Label,tlačítko Label
DocType: Website Theme,UPPERCASE,UPPERCASE
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} vybrané položky
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} vybrané položky
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,pozastavit odesílání
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Přetáhnout prvky z postranního panelu přidat. Přetáhnout zpátky do koše.
DocType: Workflow State,resize-small,resize-small
@@ -2465,21 +2477,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Přizpůs
DocType: Workflow State,Edit,Upravit
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Oprávnění mohou být spravována přes Nastavení > Správce rolí a oprávnění
DocType: Contact Us Settings,Pincode,PSČ
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,"Prosím ujistěte se, zda v souboru nejsou prázdné sloupce."
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,"Prosím ujistěte se, zda v souboru nejsou prázdné sloupce."
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,"Ujistěte se, že váš profil má e-mailovou adresu"
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Prosím, uložte změny než budete pokračovat."
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Výchozí pro {0} musí být možnost
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Výchozí pro {0} musí být možnost
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie
DocType: User,User Image,Obrázek uživatele (avatar)
apps/frappe/frappe/email/queue.py +336,Emails are muted,Emaily jsou potlačené (muted)
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Okruh Style
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,Bude vytvořen nový projekt s tímto názvem
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,Před 1 týdny
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,Bude vytvořen nový projekt s tímto názvem
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,Před 1 týdny
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Nemůžete instalovat tuto aplikaci
DocType: Communication,Error,Chyba
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Neposílejte e-maily.
+DocType: Data Import,Ignore encoding errors,Ignorujte chyby kódování
DocType: DocField,Column Break,Zalomení sloupce
DocType: Event,Thursday,Čtvrtek
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Nemáte oprávnění k přístupu tento soubor
@@ -2506,7 +2518,6 @@ DocType: Webhook,Webhook Request,Žádost o Webhook
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Vydavatel
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Selhalo: {0} až {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Typ mapování
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,vyberte Povinné
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Prohlížet
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Není třeba pro symboly, číslice, nebo velkými písmeny."
DocType: DocField,Currency,Měna
@@ -2516,10 +2527,11 @@ DocType: Async Task,Running,Běh
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Obnovit heslo
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Prosím upgrade přidat více než {0} předplatitelů
DocType: Workflow State,hand-left,hand-left
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné
+DocType: Data Import,If you are updating/overwriting already created records.,Pokud aktualizujete / přepisujete již vytvořené záznamy.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné
DocType: Email Account,Use SSL,Použít SSL
DocType: Workflow State,play-circle,play-circle
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",Neplatný výraz "depends_on"
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",Neplatný výraz "depends_on"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zvolte formát tisku upravit
DocType: Address,Shipping,Doprava
DocType: Workflow State,circle-arrow-down,circle-arrow-down
@@ -2531,25 +2543,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,šipka-vpravo
DocType: Workflow State,Workflow state represents the current state of a document.,Stav toku představuje aktuální stav dokumentu
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token chybí
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Poznámka: Změna názvu stránky rozdělí předchozí stránku na tuto stránku.
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,Poznámka: Změna názvu stránky rozdělí předchozí stránku na tuto stránku.
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Odebráno: {0}
DocType: SMS Settings,SMS Settings,Nastavení SMS
DocType: Company History,Highlight,Zvýraznit
DocType: OAuth Provider Settings,Force,Platnost
DocType: DocField,Fold,Fold
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Vzestupně
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standardní formát tisku nemůže být aktualizován
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,"Slečna, minout"
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,Prosím specifikujte
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,Prosím specifikujte
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Článek nápovědy
DocType: Page,Page Name,Název stránky
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Nápověda: Vlastnosti pole
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Import ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,rozepnout zip
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Nesprávná hodnota na řádku {0}: {1} musí být {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Nesprávná hodnota na řádku {0}: {1} musí být {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Vložený dokument nemůže být konvertován na stav rozpracováno. řádek transkace {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Mazání {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Mazání {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,"Vyberte existující formát, který chcete upravit, nebo začít nový formát."
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Vytvořit přizpůsobené pole {0} uvnitř {1}
DocType: System Settings,Time Zone,Časové pásmo
@@ -2565,16 +2575,19 @@ DocType: Workflow State,Home,Domácí
DocType: OAuth Provider Settings,Auto,Auto
DocType: System Settings,User can login using Email id or User Name,Uživatel se může přihlásit pomocí ID e-mailu nebo uživatelského jména
DocType: Workflow State,question-sign,question-sign
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Vložit sloupec před {0}
DocType: Email Account,Add Signature,Přidat podpis
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Levá tento rozhovor
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Nebylo nastaveno
,Background Jobs,Práce na pozadí
DocType: ToDo,ToDo,Úkoly
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavení> Uživatel
DocType: DocField,No Copy,Žádná kopie
DocType: Workflow State,qrcode,qrcode
+DocType: Data Import,Submit after importing,Odeslat po importu
apps/frappe/frappe/www/login.html +31,Login with LDAP,Přihlášení s LDAP
DocType: Web Form,Breadcrumbs,Drobečková navigace (Breadcrumbs)
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Pokud majitelem
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Pokud majitelem
DocType: Data Migration Mapping,Push,TAM
DocType: OAuth Authorization Code,Expiration time,doba expirace
DocType: Web Page,Website Sidebar,Webové stránky Sidebar
@@ -2590,6 +2603,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Nastavení tisku
DocType: Page,Yes,Ano
DocType: DocType,Max Attachments,Max příloh
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klientský klíč je vyžadován
DocType: Calendar View,End Date Field,Pole ukončení data
DocType: Desktop Icon,Page,Stránka
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nelze najít {0} do {1}
@@ -2600,18 +2614,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},Hodnot
DocType: Feedback Request,Is Manual,je Manual
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styly reprezentující barvy tlačítek: Úspěch - zelená, Nebezpečí - Červená, Inverze - černá, Hlavní – tmavě modrá, Info – světle modrá, Upozornění – oranžová"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,Žádný Report nenalezen. Prosím použijte query-report/[název výpisu] pro spuštění výpisu.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Stav řádku
DocType: Workflow Transition,Workflow Transition,Přechod toku (workflow)
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} měsíci
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Vytvořeno (kým)
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Nastavení Dropbox
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Nastavení Dropbox
DocType: Workflow State,resize-horizontal,resize-horizontal
DocType: Note,Content,Obsah
DocType: Data Migration Run,Push Insert,Stiskněte Vložit
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Group Node
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Group Node
DocType: Communication,Notification,Oznámení
DocType: DocType,Document,Dokument
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Série {0} jsou již použity v {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Nepodporovaný formát souboru
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Nepodporovaný formát souboru
DocType: DocField,Code,Kód
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Všechny možné Workflow států a role pracovního postupu. Možnosti Docstatus: 0 je "Saved", 1 "Vložené" a 2 "Zrušeno""
DocType: Website Theme,Footer Text Color,Barva textu v zápatí
@@ -2619,6 +2634,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Naposled
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Oprávnění na úrovni 0ar oprávnění na úrovni dokumentu, to znamená, že jsou primárně pro přístup k dokumentu."
DocType: Email Alert,Print Format,Formát tisku
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Neplatná pověření platební brána
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Toto je soubor šablony vygenerovaný pouze s řádky s nějakou chybou. Tento soubor byste měli použít k opravě a importu.
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Nastavit role a oprávnění na DocType
apps/frappe/frappe/model/meta.py +159,No Label,No Label
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Aktualizace ...
@@ -2643,15 +2659,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,Odpově
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Stránky v Desk (držáky místo)
DocType: DocField,Collapsible Depends On,"Skládací závisí na tom,"
DocType: Print Style,Print Style Name,Název stylu tisku
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,Kým
DocType: Print Settings,Allow page break inside tables,Umožnit konec stránky uvnitř tabulky
DocType: Email Account,SMTP Server,SMTP server
DocType: Print Format,Print Format Help,Nápověda formát tisku
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Před připojením aktualizujte šablonu a uložte ji do staženého formátu.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,Se skupinami
DocType: DocType,Beta,Beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},obnovena {0} jako {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Pakliže aktualizujete, zvolte prosím ""Přepsat"" jinak nebudou existující řádky vymazány."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Pakliže aktualizujete, zvolte prosím ""Přepsat"" jinak nebudou existující řádky vymazány."
DocType: Event,Every Month,Měsíčně
DocType: Letter Head,Letter Head in HTML,Hlavičkový list v HTML
DocType: Web Form,Web Form,Webový formulář
@@ -2661,15 +2677,15 @@ DocType: Print Settings,Allow Print for Cancelled,Umožňují tisk pro Zrušeno
DocType: Communication,Integrations can use this field to set email delivery status,Integrace můžete použít toto pole k nastavení stavu doručení e-mailu
DocType: Web Form,Web Page Link Text,Text odkazu www stránky
DocType: Page,System Page,Systémová stránka
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Nastavit výchozí formát, velikost stránky, styl tisku atd."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Nastavit výchozí formát, velikost stránky, styl tisku atd."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Patří vyhledávání v horní liště
DocType: GSuite Settings,Allow GSuite access,Povolit přístup GSuite
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Pojmenování
DocType: Event,Every Year,Ročně
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Vybrat vše
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Vlastní Překlady
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Vybrat vše
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Vlastní Překlady
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Pokrok
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,podle role
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,chybějící Fields
@@ -2681,14 +2697,13 @@ DocType: File,Thumbnail URL,Thumbnail URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Přizpůsobené Reporty
DocType: Website Script,Website Script,Skript www stránky
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Pokud nepoužíváte webapp vlastního publikování aplikace Google Apps Script, můžete použít výchozí https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec"
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Upravené HTML Šablony pro tisk transakcí.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Upravené HTML Šablony pro tisk transakcí.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,Orientace
DocType: Workflow,Is Active,Je Aktivní
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Žádné další záznamy
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavení> Správce oprávnění uživatelů
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Žádné další záznamy
DocType: DocField,Long Text,Dlouhý text
DocType: Workflow State,Primary,Primární
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},Prosím neměňte řádky výše: {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},Prosím neměňte řádky výše: {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Přejděte na tuto adresu URL po vyplnění formuláře (pouze pro hosty)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,Víc informací
@@ -2700,7 +2715,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,zvon
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Chyba v upozornění e-mailu
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Sdílejte tento dokument s
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,{0} {1} nemůže být uzel koncový uzel jelikož má podřízené uzly
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,{0} {1} nemůže být koncový uzel jelikož má podřízené uzly
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Přidat přílohu
DocType: Data Migration Mapping,Sync,Synchronizace
@@ -2751,7 +2766,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Platební brána
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Chcete-li dát acess do role pouze pro konkrétní záznamy, zaškrtněte políčko Použít uživatelské oprávnění. Uživatelská oprávnění se používají k omezení uživatelů s těmito role na konkrétní záznamy."
DocType: Portal Settings,Hide Standard Menu,Skrýt standardní nabídku
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Přidat / Správa e-mailových domén.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Přidat / Správa e-mailových domén.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Nelze zrušit před vložením. Transakce {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Formát tisku: {0} je vypnutý
DocType: Email Alert,Send days before or after the reference date,Poslat dní před nebo po referenčním datem
@@ -2760,7 +2775,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Hodnota
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Klikněte zde pro ověření
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Předvídatelné substituce jako '@' místo 'a' nepomohou moc.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Přidělené Me
-apps/frappe/frappe/utils/data.py +480,Zero,Nula
+apps/frappe/frappe/utils/data.py +485,Zero,Nula
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není v režimu pro vývojáře! Nachází se v site_config.json nebo učinit 'custom' DocType.
DocType: Workflow State,globe,glóbus
DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr
@@ -2780,11 +2795,12 @@ DocType: Module Def,Module Name,Název modulu
DocType: DocType,DocType is a Table / Form in the application.,DocType je tabulka / formulář v aplikaci
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Zpráva
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Zpráva
DocType: SMS Settings,Use POST,Použijte POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,Web View
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Upozornění: tento tiskový formát je ve starém stylu a nemůže být generován skrze API.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Součty
DocType: DocField,Print Width,šířka tisku
,Setup Wizard,Průvodce nastavením
DocType: Address,GST State Number,Stavové číslo GST
@@ -2810,26 +2826,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Aktualizujte prosím nastavení SMS
DocType: Event,Event Type,Typ události
DocType: User,Last Known Versions,Poslední známá verze
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Přidat / Správa e-mailových účtů.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Přidat / Správa e-mailových účtů.
DocType: Newsletter,Published,Publikováno
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Děkujeme za váš e-mail
DocType: DocField,Small Text,Krátký text
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Je rovno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType'
DocType: About Us Settings,Team Members Heading,Záhlaví členů týmu
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Neplatný formátu CSV
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Nastavit počet záloh
DocType: DocField,Do not allow user to change after set the first time,Nepovolit uživateli změnu po prvním nastavení
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Soukromých nebo veřejných?
-apps/frappe/frappe/utils/data.py +578,1 year ago,před 1 rokem
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Soukromých nebo veřejných?
+apps/frappe/frappe/utils/data.py +590,1 year ago,před 1 rokem
DocType: Contact,Contact,Kontakt
DocType: User,Third Party Authentication,Ověření třetí stranou
DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad horní lištou menu.
DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Export Report:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} neexistuje
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Export Report:
DocType: Data Migration Run,Push Update,Push Update
DocType: Email Account,Port,Port
DocType: Print Format,Arial,Arial
@@ -2846,15 +2861,15 @@ DocType: Dropbox Settings,Dropbox Settings,Nastavení Dropbox
DocType: About Us Settings,More content for the bottom of the page.,Více obsahu na spodek stránky.
DocType: Workflow,DocType on which this Workflow is applicable.,DocType na který je aplikovatelný tento tok (workflow).
DocType: Feedback Trigger,Enabled,Zapnuto
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Instalace se nezdařila
DocType: Tag Category,Category Name,Název kategorie
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Importovat Odběratelé
DocType: Print Settings,PDF Settings,Nastavení PDF
DocType: Kanban Board Column,Column Name,Název sloupce
DocType: Language,Based On,Založeno na
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Jste všichni připraveni!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Nastavit jako výchozí
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,"Zkontrolujte, zda URL Frappe Server"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat
DocType: Communication,Email Account,E-mailový účet
DocType: Workflow State,Download,Stáhnout
DocType: Blog Post,Blog Intro,Úvod blogu
@@ -2870,7 +2885,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Neplatný limit {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Seznam typů dokumentů
DocType: Event,Ref Type,Typ reference
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný."
DocType: Data Migration Run,Current Mapping Delete Start,Aktuální mapování Odstranit start
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Chyby v pozadí akce
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Počet sloupců
@@ -2882,22 +2897,22 @@ DocType: Website Settings,Website Theme Image,Internetové stránky Téma Image
DocType: Workflow State,road,road
DocType: LDAP Settings,Organizational Unit,Organizační jednotka
DocType: User,Timezone,Časové pásmo
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Nemohu nahrát: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},Nemohu nahrát: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,Zálohování
DocType: DocField,Read Only,Pouze pro čtení
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,New Newsletter
DocType: Print Settings,Send Print as PDF,Odeslat tisk jako PDF
DocType: Web Form,Amount,Částka
DocType: Workflow Transition,Allowed,Povoleno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Nelze zapsat formát souboru pro {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Obnovit výchozí nastavení?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neplatná domovská stránka
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Neplatné přihlášení. Zkus to znovu.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Neplatné přihlášení. Zkus to znovu.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1}
DocType: Auto Email Report,Send only if there is any data,"Zaslat pouze tehdy, pokud existuje údaje"
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Obnovit filtry
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Úkol uzavřen {0}
DocType: Integration Request,Remote,Dálkový
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Vypočítat
@@ -2908,7 +2923,6 @@ DocType: Error Snapshot,Locals,Místní obyvatelé
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Předávány prostřednictvím {0} z {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} se o vás zmínil v komentáři v {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,například (55 + 434) / 4 nebo = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> Email> E-mailový účet
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} je vyžadováno
DocType: Integration Request,Integration Type,integrace Type
DocType: Newsletter,Send Attachements,odeslat přílohy
@@ -2918,16 +2932,15 @@ DocType: DocField,Perm Level,úroveň oprávnění
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Dnešní události v kalendáři
DocType: Web Page,Web Page,Www stránky
DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Přeskočte řádky s chybami.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Zobrazit seznam
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Zobrazit seznam
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Datum musí být ve formátu: {0}
DocType: Workflow,Don't Override Status,Nepotlačí Stav
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Uveďte prosím hodnocení.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Poptávka
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Hledaný výraz
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,První Uživatel: Vy
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Vyberte sloupce
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,První Uživatel: Vy
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Vyberte sloupce
DocType: Translation,Source Text,Zdroj Text
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Chybějící parametry pro přihlášení
DocType: Workflow State,folder-open,folder-open
@@ -2939,18 +2952,17 @@ DocType: Page,No,Ne
DocType: Property Setter,Set Value,Nastavit hodnotu
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Skrýt pole ve formuláři
DocType: Webhook,Webhook Data,Webhook Data
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím zkuste to znovu
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím zkuste to znovu
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Aplikace byl aktualizován na novou verzi, prosím, aktualizujte tuto stránku"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Přeposlat
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Volitelné: Upozornění bude zasláno pokud je tento výraz pravdivý
DocType: Data Migration Plan,Plan Name,Název plánu
DocType: Print Settings,Print with letterhead,Tisk s hlavičkový
DocType: Unhandled Email,Raw Email,Raw Email
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Vyberte záznamy pro přiřazení
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Import
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Vyberte záznamy pro přiřazení
DocType: ToDo,Assigned By,přidělené
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Můžete použít Formulář Přizpůsobení pro nastavení úrovní na polích.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Vyberte oblast
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Vyberte oblast
DocType: Custom DocPerm,Level,Úroveň
DocType: Custom DocPerm,Report,Report
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Množství musí být větší než 0 ° C.
@@ -2969,7 +2981,7 @@ DocType: Website Theme,Background,Pozadí
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON sezam DocTypes použitých pro aplikování uživatelských oprávnění. Pakliže je prázdný, všechny provázané DocTypes budou použity pro aplikování uživatelských oprávnění."
DocType: Report,Ref DocType,Referenční DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,Přidejte hodnocení
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Full Page
DocType: DocType,Is Child Table,Je podtabulka
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} musí být jedno ze {1}
@@ -2981,7 +2993,7 @@ DocType: Workflow State,chevron-left,chevron-left
DocType: Communication,Sending,Odeslání
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Není povoleno z této IP adresy
DocType: Website Slideshow,This goes above the slideshow.,Toto přijde nad promítání obrázků.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Instaluje aplikace
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Instaluje aplikace
DocType: Contact,Last Name,Příjmení
DocType: Event,Private,Soukromé
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Žádné upozornění na dnešek
@@ -2998,19 +3010,19 @@ DocType: Event,Send an email reminder in the morning,Ráno odeslat upozornění
DocType: Blog Post,Published On,Publikováno (kdy)
DocType: Contact,Gender,Pohlaví
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Povinné nebo chybějící údaje:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty"
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Zkontrolujte adresu URL požadavku
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Pouhých 200 vložky povoleno v jedné žádosti
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,Vraťte se na obrazovku Ověření a zadejte kód zobrazený vaší autentizační aplikací
DocType: ToDo,Reference Type,Typ reference
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,"Chcete-li vytvořit nové připojení, povolte režim pro vývojáře"
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,"Chcete-li vytvořit nové připojení, povolte režim pro vývojáře"
DocType: Event,Repeat On,Opakovat na
DocType: SMS Parameter,SMS Parameter,SMS parametr
DocType: Communication,Marked As Spam,Označena jako spam
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Tam je nějaký problém s URL souboru: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Strom
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,Nejste oprávněn tisknout tuto zprávu
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,Nejste oprávněn tisknout tuto zprávu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Uživatelská oprávnění
DocType: Workflow State,warning-sign,warning-sign
DocType: Workflow State,User,Uživatel
@@ -3042,64 +3054,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Výchozí
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0}: přidáno
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Hledat '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Prosím, uložte sestavu jako první"
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,"Prosím, uložte sestavu jako první"
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} odběratelé přidáni
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne V
DocType: Workflow State,star,star
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,hodnoty oddělené čárkami
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,hodnoty oddělené čárkami
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Prosím, podělte se o své zpětnou vazbu pro {0}"
apps/frappe/frappe/config/website.py +13,Content web page.,Obsah www stránky.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Přidat novou roli
DocType: Deleted Document,Deleted Document,vypouští Document
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :(
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :(
DocType: Help Article,Category,Kategorie
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Rozšíření na straně klienta skriptu v jazyce JavaScript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Pokyny k instalaci ldap odvislé a Python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Představení blogu
DocType: Address,Office,Kancelář
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,To Kanban Board budou soukromé
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,To Kanban Board budou soukromé
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardní výpisy
DocType: User,Email Settings,Nastavení emailu
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,"Prosím, zadejte heslo pro pokračování"
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Není platný uživatel LDAP
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} není validní stav
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',"Prosím, vyberte jiný způsob platby. PayPal nepodporuje transakcí s oběživem ‚{0}‘"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Vyhledávací pole {0} není platný
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Vyhledávací pole {0} není platný
DocType: Workflow State,ok-circle,ok-circle
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Můžete najít věci tím, že žádá "najít oranžovou zákazníků '"
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Je nám líto! Uživatel by měl mít kompletní přístup k vlastnímu záznamu.
,Usage Info,využití Info
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Neplatný Token
DocType: Email Account,Email Server,Email Server
-DocType: DocShare,Document Type,Typ dokumentu
+DocType: Data Import,Document Type,Typ dokumentu
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Popisek je vyžadován
DocType: PayPal Settings,API Username,API Uživatelské jméno
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Půl den
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Půl den
DocType: Communication,Communication Type,Typ komunikace
DocType: DocField,Unique,Jedinečný
-DocType: Data Migration Run,Partial Success,Částečný úspěch
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Částečný úspěch
DocType: Email Account,Service,Služba
DocType: File,File Name,Název souboru
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),Nenalezeno {0} pro {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),Nenalezeno {0} pro {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Jejda, už není dovoleno vědět, že"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Další
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Další
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Byli jste úspěšně odhlášeni
DocType: Calendar View,Calendar View,Zobrazení kalendáře
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edit Format
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Dokončit registraci
DocType: GSuite Settings,Enable,Zapnout
+DocType: Google Maps,Home Address,Domácí adresa
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Nová {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Top Bar barev a Barva textu jsou stejné. Měly by být mít dobrý kontrast, aby byl čitelný."
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Můžete nahrát nejvýše 5000 záznamů najednou. (může být i méně v některých případech)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Můžete nahrát nejvýše 5000 záznamů najednou. (může být i méně v některých případech)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Nedostatečné oprávnění pro {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Výpis nebyl uložen (byly tam chyby)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Výpis nebyl uložen (byly tam chyby)
DocType: Print Settings,Print Style,Styl tisku
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Není propojen s žádným záznamem
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Není propojen s žádným záznamem
DocType: Custom DocPerm,Import,Importovat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,řádek {0}: Nelze povolit při vkládání pro standardní pole
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Importovat / exportovat
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Importovat / exportovat
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardní role nemůže být přejmenován
DocType: Communication,To and CC,To a CC
DocType: SMS Settings,Static Parameters,Statické parametry
@@ -3121,18 +3134,17 @@ DocType: Web Page,Header and Description,Záhlaví a popis
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,"Obojí, přihlašovací jméno a heslo je vyžadováno"
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,Prosím klikněte na obnovit pro získání nejnovějšího dokumentu.
DocType: User,Security Settings,Nastavení zabezpečení
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Přidat sloupec
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Přidat sloupec
,Desktop,Pracovní plocha
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Exportní přehled: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Exportní přehled: {0}
DocType: Auto Email Report,Filter Meta,Filtr Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text k zobrazení k prolinkování www stránky pokud má tento formulář www stránku. Cesta odkazu bude automaticky generována na základě `page_name` a `parent_website_route`
DocType: Feedback Request,Feedback Trigger,Zpětná vazba Trigger
DocType: S3 Backup Settings,Backup Limit,Záložní limit
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,Prosím nejprve nastavte {0}
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,Prosím nejprve nastavte {0}
DocType: Unhandled Email,Message-id,Message-id
DocType: Patch Log,Patch,Záplata
-DocType: Async Task,Failed,Nepodařilo
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Nenalezena žádná data
+DocType: Activity Log,Failed,Nepodařilo
DocType: Web Form,Allow Comments,Povolit komentáře
DocType: User,Background Style,Styl pozadí
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,"Bypass Two Factor Auth pro uživatele, kteří se přihlásí z omezené IP adresy"
@@ -3141,7 +3153,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},sloučeny {0} do {1}
DocType: System Settings,mm-dd-yyyy,mm-dd-rrrr
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Nové připojení
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} přihlášeni
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} přihlášeni
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Vaše přihlašovací id je
DocType: OAuth Client,Skip Authorization,přeskočit Authorization
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Standardní upozornění e-mailu nelze upravit. Chcete-li jej upravit, deaktivujte jej a zopakujte jej"
diff --git a/frappe/translations/da-DK.csv b/frappe/translations/da-DK.csv
index fc0ec27135..4fa43ddc55 100644
--- a/frappe/translations/da-DK.csv
+++ b/frappe/translations/da-DK.csv
@@ -1,4 +1,4 @@
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en blad node, da den har undernoder"
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en blad node, da den har undernoder"
apps/frappe/frappe/utils/csvutils.py +52,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Ukendt fil kodning. Prøvede utf-8, vinduer-1250, vinduer-1252."
DocType: About Us Settings,"""Company History""",'Virksomhedshistorie'
DocType: Currency,"1 Currency = [?] Fraction
@@ -6,4 +6,4 @@ For e.g. 1 USD = 100 Cent",1 Valuta = [?] Fraktion For eksempel 1 USD = 100 Cent
DocType: Workflow State,zoom-in,zoom-in
DocType: Workflow State,zoom-out,zoom-out
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,af rolle
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Half Day
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Half Day
diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv
index 910c40fca5..6d3751fcde 100644
--- a/frappe/translations/da.csv
+++ b/frappe/translations/da.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","En ny opgave, {0}, er blevet tildelt til dig af {1}. {2}"
DocType: Email Queue,Email Queue records.,Email Queue optegnelser.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Indlæg
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Vælg Party Type først
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Vælg Party Type først
DocType: Address,Punjab,Punjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Omdøb mange varer ved at uploade en .csv-fil.
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Omdøb mange varer ved at uploade en .csv-fil.
DocType: Workflow State,pause,pause
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Du har ikke tilladelse til at få adgang til denne side.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Ingen resultater fundet for '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Dine oplysninger er blevet godkendt apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Bruger {0} kan ikke slettes DocType: System Settings,Currency Precision,Valutapræcision @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Attachment DocType: Communication,Message ID,Message-ID DocType: Property Setter,Field Name,Feltnavn apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite er ikke konfigureret. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,eller +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,eller apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modul navn ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsætte DocType: Custom Field,Fieldname,Feltnavn DocType: Workflow State,certificate,certifikat DocType: User,Tile,Tile apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Bekræfter ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Første data kolonne skal være tom. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Første data kolonne skal være tom. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Vis alle versioner DocType: Workflow State,Print,Udskriv DocType: User,Restrict IP,Begræns IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,instrumentbræt apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Kan ikke sende e-mails på dette tidspunkt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Søg eller indtast en kommando -DocType: Communication,Timeline Name,Tidslinje navn +DocType: Activity Log,Timeline Name,Tidslinje navn DocType: Email Account,e.g. smtp.gmail.com,fx smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Tilføj en ny regel DocType: Contact,Sales Master Manager,Salg Master manager @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,S DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Din forespørgsel er modtaget. Vi vil svare tilbage inden længe. Hvis du har yderligere oplysninger, bedes du besvare denne mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Tilladelser er automatisk oversat til Standard Rapporter og Søgninger. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Login token kræves +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} er et obligatorisk felt +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Login token kræves DocType: Event,Repeat Till,Gentag til apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Ny apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Indstil script-URL på Gsuite-indstillinger @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Kommende begivenheder i dag DocType: Email Alert Recipient,Email By Document Field,E-mail ved dokumentfelt DocType: Domain Settings,Domain Settings,Domæneindstillinger -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Filstørrelse: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Filstørrelse: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Upgrade apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Kan ikke forbinde: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Et ord i sig selv er let at gætte. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Fraktion Enheder apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} fra {1} til {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Marker som udført DocType: Communication,Type,Type -DocType: Authentication Log,Subject,Emne +DocType: Activity Log,Subject,Emne DocType: Web Form,Amount Based On Field,Beløb baseret på Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Bruger er obligatorisk for Share DocType: DocField,Hidden,Skjult @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Tillad Ufuldstændige formularer apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} skal indstilles først apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Brug et par ord, undgå almindelige sætninger." DocType: Workflow State,plane,fly -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du uploader nye rekorder, "Navngivning Series" bliver obligatorisk, hvis den findes." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du uploader nye rekorder, "Navngivning Series" bliver obligatorisk, hvis den findes." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Få Advarsler for dag apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType kan kun blive omdøbt af Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},ændrede værdi af {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Hvis brugeren har nogen rolle kontrolleret, bliver brugeren en "systembruger". "Systembruger" har adgang til skrivebordet" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Tjek din e-mail til verifikation -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen DocType: Communication,Bounced,Afviste DocType: Deleted Document,Deleted Name,slettet Navn apps/frappe/frappe/config/setup.py +14,System and Website Users,System- og hjemmesidebrugere @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Træk opdatering DocType: Auto Email Report,No of Rows (Max 500),Antal rækker (Max 500) DocType: Language,Language Code,Sprogkode apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Din download bliver bygget, kan det tage et øjeblik ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Tilføj filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Tilføj filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS sendt til følgende numre: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Din bedømmelse: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} og {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} og {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Tilføj altid ""Udkast"" som overskrift til udskrivning af kladder" DocType: Data Migration Run,Current Mapping Start,Nuværende Kortlægning Start apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,E-mail er blevet markeret som spam DocType: About Us Settings,Website Manager,Webmaster apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Filoverførsel frakoblet. Prøv igen. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Du har valgt Udkast eller Annullerede dokumenter -apps/frappe/frappe/model/document.py +1180,Document Queued,dokument kø +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Du har valgt Udkast eller Annullerede dokumenter +apps/frappe/frappe/model/document.py +1186,Document Queued,dokument kø DocType: GSuite Templates,Destination ID,Destinations-id DocType: Desktop Icon,List,Liste -DocType: Communication,Link Name,Link Navn -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard +DocType: Activity Log,Link Name,Link Navn +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard DocType: System Settings,mm/dd/yyyy,dd/mm/åååå -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Forkert adgangskode: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Forkert adgangskode: DocType: Print Settings,Send document web view link in email,Send dokument web view link i e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Din feedback til dokument {0} er gemt -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Forrige +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Forrige apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Sv: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} rækker for {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. For eksempel "Cent" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Vælg uploadet fil DocType: Letter Head,Check this to make this the default letter head in all prints,Afkryds dette for at gøre dette til den standard brev hovedet i alle udskrifter DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Ny kanbantavle +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Ny kanbantavle DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +111,No file attached,Ingen fil vedhæftet DocType: Version,Version,Version DocType: User,Fill Screen,Udfyld skærm -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette træ rapport, på grund af manglende data. Mest sandsynligt er det at blive filtreret ud på grund af tilladelser." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vælg Filer +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette træ rapport, på grund af manglende data. Mest sandsynligt er det at blive filtreret ud på grund af tilladelser." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Upload mislykkedes -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Edit via Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Edit via Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumenttype ..., fx kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tilstanden '{0}' er ugyldig DocType: Workflow State,barcode,stregkode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Tilføj dine egne oversættelser +apps/frappe/frappe/config/setup.py +242,Add your own translations,Tilføj dine egne oversættelser DocType: Country,Country Name,Landenavn DocType: About Us Team Member,About Us Team Member,Om os Team medlem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Tilladelser er indstillet på Roller og dokumenttyper (kaldet doctypes) ved at indstille rettigheder som Læs, Skriv, Opret, Slet, Send, Annuller, Tekst, Rapport, import, eksport, Print, E-mail og Set User Tilladelser." DocType: Event,Wednesday,Onsdag -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (navn) på den virksomhed, hvis ejendommen skal indstilles" apps/frappe/frappe/limits.py +84,"To renew, {0}.","For at forny, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} er allere apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Ingen forhåndsvisning DocType: Workflow State,exclamation-sign,udråbstegn-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Vis Tilladelser -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datointerval -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Side {0} af {1} DocType: About Us Settings,Introduce your company to the website visitor.,Introducere din virksomhed til hjemmesiden besøgende. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json",Krypteringsnøglen er ugyldig. Kontroller site_config.json @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 kommentar DocType: Email Alert,Days Before,Dage før DocType: Workflow State,volume-down,volumen-down -apps/frappe/frappe/desk/reportview.py +262,No Tags,Ingen tags +apps/frappe/frappe/desk/reportview.py +266,No Tags,Ingen tags DocType: DocType,List View Settings,List Vis Indstillinger DocType: Email Account,Send Notification to,Send meddelelse til DocType: DocField,Collapsible,Sammenklappelig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gemt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Hvad har du brug for hjælp til? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Muligheder for at vælge. Hver option på en ny linje. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Permanent Annuller {0}? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Permanent Annuller {0}? DocType: Workflow State,music,musik apps/frappe/frappe/www/qrcode.html +3,QR Code,QR kode apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Senest ændret dato DocType: Web Page,Settings,Indstillinger apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Angiv venligst DOCTYPE DocType: Print Format,Style Settings,style Indstillinger -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mere +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Mere DocType: Contact,Sales Manager,Salgschef -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Omdøb +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Omdøb DocType: Print Format,Format Data,Format af data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Lignende +apps/frappe/frappe/utils/bot.py +91,Like,Lignende DocType: Customize Form Field,Customize Form Field,Tilpas Form Field DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Kontrollere, hvilke dokumenter er læses af en bruger" apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Listing app ikke tilladt DocType: Deleted Document,Hub Sync ID,Hub Sync ID -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,bruge% som wildcard +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,bruge% som wildcard apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail Domæne ikke konfigureret til denne konto, Opret en?" DocType: User,Reset Password Key,Nulstil adgangskode DocType: Email Account,Enable Auto Reply,Aktiver autosvar @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Mindste adgangskode score DocType: DocType,Fields,Felter DocType: System Settings,Your organization name and address for the email footer.,Dit firmas navn og adresse til e-mail-sidefoden. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Parent Table +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Parent Table apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup komplet! apps/frappe/frappe/config/desktop.py +60,Developer,Udvikler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Oprettet @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Sæt kun én gang DocType: Email Queue Recipient,Email Queue Recipient,Email Kø Modtager DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Brugernavn {0} findes allerede -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indføres +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indporteres apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Der er en fejl i din adresseskabelon {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Høj DocType: S3 Backup Settings,Secret Access Key,Secret Access Key apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Mand -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret er blevet nulstillet. Re-registrering vil blive påkrævet ved næste login. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret er blevet nulstillet. Re-registrering vil blive påkrævet ved næste login. DocType: Communication,From Full Name,Fra Navn apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Du behøver ikke have adgang til Rapporter: {0} DocType: User,Send Welcome Email,Send velkomst-e-mail -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Fjern Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Fjern Filter DocType: Address,Daman and Diu,Daman og Diu DocType: Address,Personal,Personlig -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Bulk Omdøb +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Bulk Omdøb DocType: Email Queue,Show as cc,Vis som cc DocType: DocField,Heading,Overskrift DocType: Workflow State,resize-vertical,resize-lodret -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Upload DocType: Contact Us Settings,Introductory information for the Contact Us Page,Indledende informationer til Kontakt os Side DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,tommelfingeren nedad @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,I Global Search DocType: Workflow State,indent-left,led-venstre apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,Det er risikabelt at slette denne fil: {0}. Kontakt din systemadministrator. DocType: Currency,Currency Name,Valuta Navn -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,Ingen e-mails +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,Ingen e-mails DocType: Report,Javascript,Javascript DocType: File,Content Hash,Indhold Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Gemmer JSON af sidste kendte versioner af forskellige installerede apps. Det bruges til at vise release notes. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke have standard udskriftsformat, brug Tilpas formular" DocType: Report,Query,Forespørgsel DocType: DocType,Sort Order,Sorteringsrækkefølge -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Vælg den etiket, hvorefter du vil indsætte nyt felt." ,Document Share Report,Dokument Del Report DocType: User,Last Login,Sidste log ind -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Feltnavn kræves i række {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Feltnavn kræves i række {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonne DocType: Custom Field,Adds a custom field to a DocType,Tilføjer et brugerdefineret felt til et DocType DocType: File,Is Home Folder,Er Home Folder apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ikke en gyldig e-mailadresse -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Vælg mindst en post til udskrivning +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Vælg mindst en post til udskrivning apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Bruger '{0}' har allerede rollen '{1}' DocType: System Settings,Two Factor Authentication method,Two Factor Authentication metode apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Afmeld abonnement -DocType: Communication,Reference Name,Henvisning Navn +DocType: Activity Log,Reference Name,Henvisning Navn apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Chat Support DocType: Error Snapshot,Exception,Undtagelse -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Ingen resultater fundet for '
DocType: Email Account,Use IMAP,Brug IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Kan ikke gøre anmodning til Frappe Server-URL +DocType: Activity Log,Activity Log,Activity Log DocType: Integration Request,Authorized,autoriseret DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Enkelte typer har kun én record ingen tabeller forbundet. Værdier lagres i tabSingles DocType: System Settings,Enable Password Policy,Aktivér adgangskodepolitik @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","List apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Feltype kan ikke ændres for {0} DocType: Workflow,Rules defining transition of state in the workflow.,"Regler, der definerer overgang stat i arbejdsprocessen." DocType: File,Folder,Folder +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Importer / eksporter data fra CSV- og Excel-filer. DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Nyhedsbrev manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Mulighed 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} til {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} til {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Log af fejl under anmodninger. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} er blevet føjet til e-mailgruppen. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,"Rediger ikke overskrifter, der er forudindstillet i skabelonen" +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,"Rediger ikke overskrifter, der er forudindstillet i skabelonen" apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Login Bekræftelseskode fra {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Lav fil (er) private eller offentlige? +DocType: Data Import,Import Status,Importstatus +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Lav fil (er) private eller offentlige? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Planlagt at sende til {0} DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Alle DocType: Workflow State,backward,bagud -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én tilladt med samme rolle, Level og hersk {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én regel tilladt med samme rolle, niveau og {1}" DocType: Email Queue,Add Unsubscribe Link,Tilføj Afmeld link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ingen kommentarer endnu. Start en ny diskussion. DocType: Workflow State,share,andel apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Dit abonnement udløb den {0}. For at forny, så send en e-mail til {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Sæt nummerering serie til transaktioner. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Sæt nummerering serie til transaktioner. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,"Du kan ikke lide noget, du har oprettet" apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC & Standard Svar" DocType: User,Last IP,Sidste IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filter records baseret på User Tilladelser defineret for en bruger DocType: Note,Notify Users On Every Login,Underrette brugere om hver login DocType: PayPal Settings,API Password,API adgangskode -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Indtast python-modul eller vælg forbindelsestype +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Indtast python-modul eller vælg forbindelsestype apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Feltnavn ikke indstillet til Tilpasset felt apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Sidst opdateret af apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,er ikke tilladt. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Kan ikke slette filen, da den tilhører {0} {1}, som du ikke har tilladelser til" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fru DocType: Website Theme,Background Color,Baggrundsfarve -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Der var fejl under afsendelse af e-mail. Prøv venligst igen. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Der var fejl under afsendelse af e-mail. Prøv venligst igen. DocType: Portal Settings,Portal Settings,Portal Indstillinger DocType: Data Migration Mapping,Mapping,Kortlægning DocType: Web Page,0 is highest,0 er højest @@ -667,6 +668,7 @@ DocType: Language,Language Name,Sprognavn DocType: Email Group Member,Email Group Member,E-mailgruppemedlem DocType: Email Alert,Value Changed,Værdi ændret apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Duplicate navn {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Prøve igen DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Skjul feltet i rapportgeneratoren apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Rediger HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Butik DocType: DocField,Button,Knap apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} er nu standard printformat til {1} doktype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Arkiverede kolonner +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Arkiverede kolonner DocType: Email Account,Default Outgoing,Standard Udgående DocType: Workflow State,play,spille apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Klik på linket nedenfor for at fuldføre din registrering og angive en ny adgangskode apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Ikke tilføje -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Ingen e-mail konti Tildelt +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Ingen e-mail konti Tildelt DocType: Contact Us Settings,Contact Us Settings,Kontakt os Indstillinger apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Søger ... DocType: Workflow State,text-width,tekst-bredde @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Tjek kommunikation DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapportgeneratorens rapporter administreres direkte af rapportgeneratoren. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Bekræft din e-mail adresse -apps/frappe/frappe/model/document.py +1039,none of,ingen af +apps/frappe/frappe/model/document.py +1045,none of,ingen af apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Send mig en kopi DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Internetside apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Markerede elementer vil blive vist på skrivebordet -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanbantavle {0} findes ikke. -apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} læser dette dokument +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanbantavle {0} findes ikke. +DocType: Data Import,Data Import,Dataimport +apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} kigger i øjeblikket på dette dokument DocType: ToDo,Assigned By Full Name,Tildelt af navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} opdateret -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dage siden DocType: Email Account,Awaiting Password,Afventer adgangskode DocType: Address,Address Line 1,Adresse DocType: Custom DocPerm,Role,Rolle apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Indstillinger ... -apps/frappe/frappe/utils/data.py +459,Cent,Cent -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Compose Email -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater for workflow (f.eks Udkast, Godkendt, Annulleret)." +apps/frappe/frappe/utils/data.py +464,Cent,Cent +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,Compose Email +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater for workflow (f.eks Udkast, Godkendt, Annulleret)." DocType: Print Settings,Allow Print for Draft,Tillad Print til Udkast apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Sæt Mængde -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Godkend dette dokument for at bekræfte +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Godkend dette dokument for at bekræfte DocType: Contact,Unsubscribed,Afmeldt apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Indstil brugerdefinerede roller for side og rapport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Bedømmelse: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Kan ikke finde UIDVALIDITY i imap status svar -,Data Import Tool,Data Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra og Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Venligst opsæt standard e-mail-konto fra Opsætning> Email> E-mail-konto apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Overførsel af filer skal du vente et par sekunder. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Vedhæft dit billede +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Vedhæft dit billede apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Værdier Ændret DocType: Workflow State,Stop,Stands DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link til den side, du vil åbne. Efterlad tom, hvis du ønsker at gøre det til en gruppe forældre." @@ -747,7 +748,7 @@ DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,Scopes DocType: About Us Settings,Company Introduction,Firma Introduktion DocType: DocField,Length,Længde -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Gendan eller permanent slet et dokument. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Gendan eller permanent slet et dokument. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite test udført med succes. GSuite integration er korrekt konfigureret DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} fjernet DocType: Custom DocPerm,Apply User Permissions,Tilføj brugertilladelser DocType: User,Modules HTML,Moduler HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Manglende værdier skal angives +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Manglende værdier skal angives DocType: DocType,Other Settings,Andre indstillinger DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Marker som ulæst apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} er ikke indstillet -DocType: Authentication Log,Operation,Operation +DocType: Activity Log,Operation,Operation DocType: Customize Form,Change Label (via Custom Translation),Skift Label (via brugerdefineret Translation) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Ingen tilladelse til {0} {1} {2} DocType: Address,Permanent,Permanent apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Bemærk: Andre tilladelser kan også gælde apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Ingen adgang til {0} med {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Hvis dette er markeret, importeres rækker med gyldige data, og ugyldige rækker bliver dumpet til en ny fil, som du kan importere senere." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Se i din browser DocType: DocType,Search Fields,Søg Felter DocType: System Settings,OTP Issuer Name,OTP Udsteder Navn @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bærer token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ingen dokument valgt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr. DocType: Event,Event,Begivenhed -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","Den {0}, {1} skrev:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","Den {0}, {1} skrev:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Kan ikke slette standard felt. Du kan skjule det, hvis du ønsker" DocType: Top Bar Item,For top bar,For top bar apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Kø for backup. Du modtager en email med downloadlinket @@ -789,35 +792,34 @@ DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,Spand apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Serverfejl: Kontroller dine serverlogfiler eller kontakt teknisk support. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Velkomst-e-mail sendt -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Lad os forberede systemet til første brug. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Lad os forberede systemet til første brug. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Udvalgte apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Allerede registreret DocType: System Settings,Float Precision,Float Precision apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Kun Administrator kan redigere -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Filnavn +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Filnavn DocType: DocType,Editable Grid,Redigerbar Grid DocType: Property Setter,Property Setter,Ejendom Setter DocType: Web Form,Allow Print,Tillad Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ingen Apps Installeret apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Markere feltet som Obligatorisk DocType: Communication,Clicked,Klikkede -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} DocType: User,Google User ID,Google bruger-id apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planlagt til at sende DocType: DocType,Track Seen,Track Set apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Denne fremgangsmåde kan kun bruges til at oprette en kommentar med DocType: Kanban Board Column,orange,orange -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Ingen {0} fundet -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Tilføj brugerdefinerede formularer. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Ingen {0} fundet +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Tilføj brugerdefinerede formularer. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} i {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,godkendte dette dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systemet giver mange foruddefinerede roller. Du kan tilføje nye roller at indstille finere tilladelser. DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,Domæner +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Domæner DocType: Blog Category,Blog Category,Blog Kategori apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Kan ikke kort, fordi følgende betingelse mislykkes:" -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Roller HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Vælg først et varemærkebillede. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktiv @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Blå apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,Alle tilpasninger vil blive fjernet. Bekræft venligst. DocType: Page,Page HTML,Side HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,Yderligere noder kan kun oprettes under 'koncernens typen noder +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,Yderligere noder kan kun oprettes under 'koncernens typen noder DocType: SMS Parameter,Header,Overskrift -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Ukendt kolonne: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Ukendt kolonne: {0} DocType: Email Alert Recipient,Email By Role,E-mail Ved Rolle apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Brugere med rollen {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Installation App {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Repræsenterer en bruger i system DocType: Communication,Label,Label apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Opgaven {0}, som du har tildelt til {1}, er blevet lukket." DocType: User,Modules Access,Adgang til moduler -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Luk dette vindue +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Luk dette vindue DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,Et emne med denne e-mailadresse skal eksistere apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source-løsninger til internettet DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Tilføj navnet på en "Google Web Font" fx "Open Sans" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Opstod timeout for anmodningen +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Aktivér / deaktiver domæner DocType: Role Permission for Page and Report,Allow Roles,Tillad Roller DocType: DocType,Hide Toolbar,Skjul værktøjslinje DocType: User,Last Active,Sidst aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP Indstillinger for udgående e-mails -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Import mislykkedes apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Dit password er blevet opdateret. Her er din nye adgangskode DocType: Email Account,Auto Reply Message,Autosvarbesked DocType: Feedback Trigger,Condition,Tilstand -apps/frappe/frappe/utils/data.py +564,{0} hours ago,{0} timer siden -apps/frappe/frappe/utils/data.py +574,1 month ago,1 måned siden +apps/frappe/frappe/utils/data.py +576,{0} hours ago,{0} timer siden +apps/frappe/frappe/utils/data.py +586,1 month ago,1 måned siden DocType: Contact,User ID,Bruger-id DocType: Communication,Sent,Sent DocType: Address,Kerala,Kerala @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Dit abonnement udløber i morgen. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Gemt! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} er ikke en gyldig hex farve apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Fru apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Opdateret {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Master DocType: DocType,User Cannot Create,Brugeren må ikke oprette apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Folder {0} findes ikke -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,Dropbox adgang er godkendt! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,Dropbox adgang er godkendt! DocType: Customize Form,Enter Form Type,Indtast Form Type +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ingen poster markeret. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Fjern Field DocType: User,Send Password Update Notification,Send meddelelse vedr. opdateret adgangskode @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Grøn DocType: Custom DocPerm,Additional Permissions,Yderligere tilladelser DocType: Email Account,Always use Account's Email Address as Sender,Brug altid kontos e-mail-adresse som afsender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Login for at kommentere -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Begynde at indtaste data under denne linje +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Begynde at indtaste data under denne linje apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},ændrede værdier for {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Tilpas ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Deaktiveret DocType: Workflow State,eye-close,eye-close DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Indstillinger -apps/frappe/frappe/config/setup.py +257,Applications,Applikationer +apps/frappe/frappe/config/setup.py +264,Applications,Applikationer apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Rapporter dette problem DocType: Custom Script,Adds a custom script (client or server) to a DocType,Tilføjer en brugerdefineret script (klient eller server) til en DocType DocType: Address,City/Town,By @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Er din virksomhedsadresse apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Redigering af række DocType: Workflow Action,Workflow Action Master,Workflow Action Master DocType: Custom Field,Field Type,Field Type -apps/frappe/frappe/utils/data.py +489,only.,alene. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP-hemmeligheden kan kun nulstilles af administratoren. +apps/frappe/frappe/utils/data.py +494,only.,alene. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP-hemmeligheden kan kun nulstilles af administratoren. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,"Undgå år, der er forbundet med dig." DocType: GSuite Templates,GSuite Templates,GSuite Skabeloner -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Faldende apps/frappe/frappe/utils/goal.py +109,Goal,Goal apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,"Ugyldig Mail Server. Venligst rette, og prøv igen." DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Ingen tilladelse til at læse {0} apps/frappe/frappe/config/desktop.py +8,Tools,Værktøj apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Undgå senere år. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Flere root noder er ikke tilladt. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Flere root noder er ikke tilladt. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Hvis aktiveret, vil brugerne blive underrettet hver gang de logger ind. Hvis ikke aktiveret, meddeles brugerne kun en gang." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Ugyldig {0} betingelse +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Ugyldig {0} betingelse DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Hvis markeret, vil brugerne ikke se dialogboksen Bekræft Access." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID felt er påkrævet at redigere værdier ved hjælp af rapporten. Vælg ID-feltet ved hjælp af kolonne Picker apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Kommentarer apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Bekræft apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Skjul alle @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Redigér brugertilladelser DocType: Email Account,Email Account Name,E-mailkontonavn apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Vælg dokumenttyper -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,"Noget gik galt, mens du genererede dropbox access token. Kontroller fejllogg for flere detaljer." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,"Noget gik galt, mens du genererede dropbox access token. Kontroller fejllogg for flere detaljer." DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Nyhedsbreve til kontakter, emner." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","fx "Support", "Salg", "Jerry Yang"" @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook Bruger-id DocType: Workflow State,fast-forward,hurtigt fremad DocType: Communication,Communication,Kommunikation apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Tjek kolonner for at vælge, trække for at sætte orden." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,"Dette er PERMANENT handling, og du kan ikke fortryde. Fortsæt?" DocType: Event,Every Day,Hver dag DocType: LDAP Settings,Password for Base DN,Password til Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,tabel Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Kolonner baseret på +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Kolonner baseret på apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Indtast nøgler for at aktivere integration med Google GSuite DocType: Workflow State,move,flytte -apps/frappe/frappe/model/document.py +1223,Action Failed,Handling mislykkedes +apps/frappe/frappe/model/document.py +1229,Action Failed,Handling mislykkedes apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,For bruger -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Kontoplan +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Kontoplan DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,Du har {0} dage tilbage i dit abonnement +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Du har {0} dage tilbage i dit abonnement apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Udgående e-mail-konto er ikke korrekt apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,Temperorily Disabled apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Installeret -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Angiv e-mail adresse +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Angiv e-mail adresse DocType: System Settings,Date and Number Format,Dato og nummerformat apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Max vedhæftet størrelse er {0} MB -apps/frappe/frappe/model/document.py +1038,one of,en af -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Vælg venligst en fil, der skal kopieres" +apps/frappe/frappe/model/document.py +1044,one of,en af apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrol ene øjeblik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Vis Tags DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Hvis Anvend Strengt Bruger Tilladelse er markeret, og Bruger Tilladelse er defineret for en DocType til en Bruger, vil alle de dokumenter, hvor værdien af linket er tom, ikke blive vist til den bruger" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Handlinger DocType: Workflow State,align-justify,tilpasse-retfærdiggøre DocType: User,Middle Name (Optional),Mellemnavn (valgfrit) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Ikke Tilladt -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Følgende felter skal udfyldes: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,Du har ikke rettigheder til at fuldføre handlingen +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Følgende felter skal udfyldes: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,Du har ikke rettigheder til at fuldføre handlingen apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Ingen resultater DocType: System Settings,Security,Sikkerhed apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Planlagt at sende til {0} modtagere +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Skære apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},omdøbt fra {0} til {1} DocType: Currency,**Currency** Master,** Valuta ** Master DocType: Email Account,No of emails remaining to be synced,Ingen af emails der mangler at blive synkroniseret -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,Upload +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,Upload apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Gem venligst dokumentet, før opgaven" apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klik her for at sende fejl og forslag DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adresse og andre juridiske oplysninger, du måske ønsker at sætte i sidefoden." @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} minutter siden DocType: Kanban Board Column,lightblue,lyseblå apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Samme felt er indtastet mere end én gang -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Vælg kolonner apps/frappe/frappe/templates/includes/list/filters.html +19,clear,klar apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Hverdagsbegivenheder skal starte og slutte på samme dag. DocType: Communication,User Tags,User Tags @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Log ind DocType: Web Page,Main Section,Main Section DocType: Page,Icon,Ikon apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,at filtrere værdier mellem 5 & 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Tip: Medtag symboler, tal og store bogstaver i adgangskoden" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Tip: Medtag symboler, tal og store bogstaver i adgangskoden" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Opsætning> Brugerrettigheder apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/åååå apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite script test @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Copyright apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gå DocType: OAuth Authorization Code,Invalid,Ugyldigt DocType: ToDo,Due Date,Forfaldsdato -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Quarter Dag +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Quarter Dag DocType: Social Login Keys,Google Client Secret,Google Client Secret DocType: Website Settings,Hide Footer Signup,Skjul Footer Tilmelding apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,annulleret dette dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Skriv en Python-fil i den samme mappe, hvor det er gemt og returnere kolonnen og resultat." DocType: DocType,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Indstillinger -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Rediger filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Rediger filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Tilføj mere DocType: System Settings,Session Expiry Mobile,Session Udløb Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Søgeresultater for apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Vælg Download: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Hvis {0} er tilladt DocType: Custom DocPerm,If user is the owner,Hvis bruger er ejeren +apps/frappe/frappe/config/integrations.py +88,Maps,Kort ,Activity,Aktivitet DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: At linke til en anden post i systemet, skal du bruge "# Form / Note / [Note navn]" som Link URL. (Brug ikke "http: //")" DocType: User Permission,Allow,Give lov til apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Undgå gentagne ord og tegn DocType: Communication,Delayed,Forsinket -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Liste over sikkerhedskopier til rådighed for download +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Liste over sikkerhedskopier til rådighed for download apps/frappe/frappe/www/login.html +86,Sign up,Tilmeld dig DocType: Test Runner,Output,Produktion DocType: Email Alert,Set Property After Alert,Indstil ejendom efter advarsel -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Tilføj felter til formularer. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Tilføj felter til formularer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,"Det ser ud til, at noget er galt med denne websteds Paypal-konfiguration." DocType: File,rgt,RGT DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Filtype DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: Contact Us Settings,Email ID,E-mail-id +DocType: Activity Log,Keep track of all update feeds,Hold styr på alle opdateringsfeeds DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Hvis Anvend brugertilladelser er markeret for Rapport DocType, men der ikke er defineret brugerautorisationer for Rapport til en bruger, vises alle rapporter til den bruger" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,Protip: Tilføj Reference: {{ reference_doctype }} {{ reference_name }}
at sende dokumenthenvisning
apps/frappe/frappe/modules/utils.py +196,App not found,App ikke fundet
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kan ikke oprette en {0} mod et barn dokument: {1}
@@ -1898,7 +1902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Inaktiv
DocType: Contact,Accounts Manager,Regnskabschef
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Din betaling er annulleret.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Vælg filtype
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Vælg filtype
DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Siden blev ikke fundet
DocType: DocField,Precision,Precision
@@ -1925,12 +1929,12 @@ DocType: Property Setter,Property Type,Ejendom Type
DocType: Workflow State,screenshot,screenshot
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Kun Administratoren kan gemme en standard rapport. Omdøb venligst og gem.
DocType: System Settings,Background Workers,Baggrund Arbejdere
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Feltnavn {0} står i konflikt med metaobjekt
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Feltnavn {0} står i konflikt med metaobjekt
DocType: Deleted Document,Data,Data
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument status
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Du har foretaget {0} af {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Ikke tilladt at importere
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Ikke tilladt at importere
DocType: Social Login Keys,Frappe Client Secret,Frappe Client Secret
DocType: Deleted Document,Deleted DocType,slettet DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Tilladelsesniveauer
@@ -1938,11 +1942,11 @@ DocType: Workflow State,Warning,Advarsel
DocType: Data Migration Run,Percent Complete,Procent fuldført
DocType: Tag Category,Tag Category,tag Kategori
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Ignorerer Item {0}, fordi en gruppe eksisterer med samme navn!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Hjælp
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Hjælp
DocType: User,Login Before,Log ind før
DocType: Web Page,Insert Style,Indsæt Style
-apps/frappe/frappe/config/setup.py +262,Application Installer,Application Installer
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Ny rapport navn
+apps/frappe/frappe/config/setup.py +269,Application Installer,Application Installer
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Ny rapport navn
DocType: Workflow State,info-sign,info-skilt
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Værdi for {0} kan ikke være en liste
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valuta formateres? Hvis ikke angivet, vil bruge systemets standardindstillinger"
@@ -1955,6 +1959,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Rolle Tilladelser
DocType: Help Article,Intermediate,mellemniveau
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Annulleret dokument genoprettet som Udkast
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3} {4}
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kan Læs
DocType: Custom Role,Response,Respons
DocType: DocField,Geolocation,Geolocation
@@ -1978,8 +1983,8 @@ DocType: OAuth Client,Default Redirect URI,Standard Redirect URI
DocType: Email Alert,Recipients,Modtagere
DocType: System Settings,Choose authentication method to be used by all users,"Vælg godkendelsesmetode, der skal bruges af alle brugere"
DocType: Workflow State,ok-sign,ok-tegn
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Slette dokumenter
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,CSV-formatet er store bogstaver
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Slette dokumenter
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,CSV-formatet er store bogstaver
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Desktop-ikonet eksisterer allerede
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikér
DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve
@@ -1987,14 +1992,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Andaman og Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Angiv venligst hvilken værdi felt skal kontrolleres
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kan ikke sende denne email. Du har krydset sendegrænsen for {0} e-mails for denne dag.
DocType: Website Theme,Apply Style,Anvend Style
DocType: Feedback Request,Feedback Rating,Feedback Rating
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Delt med
DocType: Help Category,Help Articles,Hjælp artikler
,Modules Setup,Opsætning af moduler
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Type:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Type:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Din betaling er mislykket.
DocType: Communication,Unshared,udelt
DocType: Address,Karnataka,Karnataka
@@ -2003,12 +2008,11 @@ DocType: User,Location,Lokation
,Permitted Documents For User,Tilladte dokumenter for bruger
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Du skal have "Del" tilladelsen
DocType: Communication,Assignment Completed,Overdragelse Afsluttet
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Bulk Edit {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Bulk Edit {0}
DocType: Email Alert Recipient,Email Alert Recipient,E-mail advarselsmodtager
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ikke aktiv
DocType: About Us Settings,Settings for the About Us Page,Indstillinger for Om os Page
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Stripe betalings gateway indstillinger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Vælg type af dokument til Download
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,fx pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Brug feltet til at filtrere poster
DocType: DocType,View Settings,Se Indstillinger
@@ -2031,6 +2035,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Kan ikk
DocType: Unhandled Email,Unhandled Email,Ubehandlet Email
DocType: Event,Monday,Mandag
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Gør brug af længere tastatur mønstre
+DocType: Data Import,Don't create new records,Opret ikke nye poster
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Nesting set fejl. Kontakt venligst administratoren.
DocType: Workflow State,envelope,kuvert
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Mulighed 2
@@ -2041,41 +2046,41 @@ DocType: Website Settings,Brand Image,Varemærkelogo
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opsætning af øverste navigationslinje, sidefod og logo."
DocType: Web Form Field,Max Value,Maksimal værdi
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3}
DocType: Contact,All,Alle
DocType: Email Queue,Recipient,Modtager
DocType: Communication,Has Attachment,har Attachment
DocType: Address,Sales User,Salgsbruger
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Træk og slip værktøj til at opbygge og tilpasse Print formater.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Træk og slip værktøj til at opbygge og tilpasse Print formater.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Udvid
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Sæt
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Denne forespørgselsstil ophører
DocType: Email Alert,Trigger Method,Trigger Method
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Operatøren skal være en af {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Operatøren skal være en af {0}
DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token
DocType: Workflow State,align-right,justere højre
DocType: Auto Email Report,Email To,E-mail Til
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Folder {0} er ikke tom
DocType: Page,Roles,Roller
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fejl: Værdi mangler for {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Field {0} kan ikke vælges.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Field {0} kan ikke vælges.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Session Udløb
DocType: Workflow State,ban-circle,ban-cirkel
DocType: Email Flag Queue,Unread,Ulæst
DocType: Bulk Update,Desk,Skrivebord
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Filter skal være en tuple eller liste (i en liste)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Filter skal være en tuple eller liste (i en liste)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skriv en SELECT forespørgsel. Bemærk resultat ikke søges (alle data sendes på én gang).
DocType: Email Account,Attachment Limit (MB),Attachment Grænse (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Opsætning Auto Email
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Opsætning Auto Email
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Dette er en top-10 fælles adgangskode.
DocType: User,User Defaults,User Defaults
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Opret ny(t)
DocType: Workflow State,chevron-down,chevron-down
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),E-mail ikke sendt til {0} (afmeldt / deaktiveret)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),E-mail ikke sendt til {0} (afmeldt / deaktiveret)
DocType: Async Task,Traceback,Spore tilbage
DocType: Currency,Smallest Currency Fraction Value,Mindste Valuta Fraktion Værdi
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Tildel til
@@ -2095,7 +2100,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Migrations-id-felt
DocType: Communication,Comment Type,Kommentar Type
DocType: OAuth Client,OAuth Client,OAuth Client
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Brugere
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Brugere
DocType: Communication,Timeline field Name,Tidslinje felt Navn
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Kontotype
@@ -2105,7 +2110,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Indtast tasterne for at aktivere login via Facebook, Google, GitHub."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Kan ikke læse filformat for {0}
DocType: Auto Email Report,Filter Data,Filtreringsdata
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Tilføj et tag
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Vedhæft en fil først.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Der var nogle fejl indstilling navnet, skal du kontakte administratoren"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Indkommende e-mail-konto er ikke korrekt
@@ -2128,7 +2132,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Sen
DocType: Website Theme,Link Color,Link Color
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Bruger {0} kan ikke deaktiveres
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Kære Systemadministrator,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Dit land
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Dit land
DocType: Event,Sunday,Søndag
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,I Grid View
DocType: Address Template,Template,Skabelon
@@ -2153,7 +2157,7 @@ DocType: DocField,Table,Tabel
DocType: File,File Size,Filstørrelse
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Du skal logge ind for at indsende denne formular
DocType: User,Background Image,Baggrundsbillede
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mellem
DocType: Async Task,Queued,Sat i kø
@@ -2165,14 +2169,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Fi
DocType: Email Account,no failed attempts,ingen mislykkede forsøg
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
-DocType: OAuth Bearer Token,Access Token,Access Token
+DocType: OAuth Bearer Token,Access Token,Adgangs token
DocType: About Us Settings,Org History,Org History
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Backup størrelse:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Backup størrelse:
DocType: Workflow,Workflow Name,Workflow Navn
DocType: DocShare,Notify by Email,Give besked på e-mail
DocType: DocField,In Standard Filter,I Standard Filter
DocType: Web Form,Allow Edit,Tillad Edit
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Sæt ind
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Sæt ind
DocType: Webhook,Doc Events,Doc Events
DocType: Auto Email Report,Based on Permissions For User,Baseret på tilladelser til Bruger
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Kan ikke ændre tilstand af Annulleret dokument. Overgang rækken {0}
@@ -2185,10 +2189,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tal og store bogstaver i adgangskoden"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Indsæt Efter feltet '{0}' er nævnt i brugerdefinerede Field '{1}', med etiketten '{2}', eksisterer ikke"
DocType: Workflow State,signal,signal
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Har vedhæftede filer
DocType: DocType,Show Print First,Vis Print First
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter for at skrive
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Opret ny(t) {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Ny e-mail-konto
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Ny e-mail-konto
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument gendannet
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Vælg sprog...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Du kan ikke angive 'Valg' for felt {0}
@@ -2209,13 +2214,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Flytte til skrald
DocType: Web Form,Web Form Fields,Felter Web Form
DocType: Website Theme,Top Bar Text Color,Top Bar Tekstfarve
+DocType: Data Import,Amended From,Ændret Fra
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Advarsel: Kan ikke finde {0} i enhver tabel relateret til {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Dette dokument er i øjeblikket i kø til udførelse. Prøv igen
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Dette dokument er i øjeblikket i kø til udførelse. Prøv igen
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Fil '{0}' blev ikke fundet
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Fjern Sektion
DocType: User,Change Password,Skift adgangskode
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Ugyldig E-mail: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Hej!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Hej!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Begivenhed ende skal være efter start
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dette logger ud {0} fra alle andre enheder
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Du har ikke tilladelse til at få en rapport om: {0}
@@ -2224,26 +2230,27 @@ DocType: DocField,Allow Bulk Edit,Tillad Bulk Edit
DocType: Blog Post,Blog Post,Blog-indlæg
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Avanceret søgning
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Du har ikke lov til at se nyhedsbrevet.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Niveau 0 er til dokumentniveau tilladelser, \ højere niveauer for tilladelser på feltniveau."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Sorter efter
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,"Kan ikke gemme formularen, da dataimporten pågår."
DocType: Workflow,States,Anvendes ikke
DocType: Email Alert,Attach Print,Vedhæft Print
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Foreslået Brugernavn: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,Dag
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,Dag
,Modules,Moduler
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Angiv ikoner til skrivebordet
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,Betaling gennemført
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Ingen {0} mail
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Fejl ved upload af filer
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Ingen {0} mail
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Fejl ved upload af filer
DocType: OAuth Bearer Token,Revoked,Tilbagekaldt
DocType: Web Page,Sidebar and Comments,Sidebar og Kommentarer
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Når du Ændres et dokument, efter Annuller og gemme det, vil det få et nyt nummer, der er en version af det gamle nummer."
DocType: Stripe Settings,Publishable Key,Offentlig nøgle
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Start import
DocType: Workflow State,circle-arrow-left,cirkel-pil-venstre
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis cache serveren ikke kører. Kontakt venligst Administrator / Tech support
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Name
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Party Name
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Opret ny post
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Søger
DocType: Currency,Fraction,Fraktion
@@ -2268,8 +2275,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Hent varer
DocType: Contact,Image,Billede
DocType: Workflow State,remove-sign,fjern-sign
+DocType: Domain Settings,Domains HTML,Domæner HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Skriv noget i søgefeltet for at søge
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Definer arbejdsgange for formularer.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Definer arbejdsgange for formularer.
DocType: Address,Other,Andre
DocType: S3 Backup Settings,Access Key ID,Adgangskode ID
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Start ny Format
@@ -2282,6 +2290,7 @@ DocType: Customize Form Field,Is Custom Field,Er Tilpasset Field
DocType: Workflow,"If checked, all other workflows become inactive.","Hvis markeret, alle andre arbejdsgange bliver inaktive."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Navn]: [FeltType] / [Valg]: [Bredde]
DocType: Workflow State,folder-close,mappe-close
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Rapport:
DocType: Print Settings,Print taxes with zero amount,Udskriv skatter med nul beløb
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} må ikke omdøbes
DocType: Custom Script,Custom Script,Tilpasset Script
@@ -2293,32 +2302,35 @@ DocType: Email Flag Queue,Action,Handling
DocType: GSuite Settings,Script URL,Script URL
apps/frappe/frappe/www/update-password.html +111,Please enter the password,Indtast venligst adgangskoden
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Ikke tilladt at udskrive annullerede dokumenter
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Du har ikke lov til at oprette kolonner
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Info:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Du har ikke lov til at oprette kolonner
+DocType: Data Import,If you don't want to create any new records while updating the older records.,"Hvis du ikke vil oprette nye poster, mens du opdaterer de ældre poster."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info:
DocType: Custom Field,Permission Level,Tilladelsesniveau
DocType: User,Send Notifications for Transactions I Follow,Send meddelelser til transaktioner jeg følger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, Tekst uden Write"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, uden skriv"
+DocType: Google Maps,Client Key,Client Key
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Er du sikker på, at du vil slette den vedhæftede fil?"
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Tak
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Gemmer
DocType: Print Settings,Print Style Preview,Print Style Eksempel
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Du har ikke tilladelse til at opdatere dette Webform-dokument
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,E-mails
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-mails
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Vælg Document Type først
DocType: About Us Settings,About Us Settings,Om os Indstillinger
DocType: Website Settings,Website Theme,Website Tema
DocType: DocField,In List View,I Listevisning
DocType: Email Account,Use TLS,Brug TLS
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ugyldigt brugernavn eller adgangskode
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Tilføj brugerdefinerede javascript til formularer.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Linjenr.
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Hent skabelon
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Tilføj brugerdefinerede javascript til formularer.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Linjenr.
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto
,Role Permissions Manager,Rolleadministrator
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Navnet på det nye udskrivningsformat
DocType: Data Migration Run,Pull Insert,Træk indsæt
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,Klar Attachment
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Obligatorisk:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Obligatorisk:
,User Permissions Manager,Brugeradministrator
DocType: Property Setter,New value to be set,Indtast ny værdi
DocType: Email Alert,Days Before or After,Dage før eller efter
@@ -2328,7 +2340,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & robotter
DocType: User Permission,User Permission,Brugertilladelse
apps/frappe/frappe/config/website.py +32,Blog,Blog
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP ikke installeret
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Hent med data
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Hent med data
DocType: Workflow State,hand-right,hånd-ret
DocType: Website Settings,Subdomain,Subdomæne
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Indstillinger for OAuth Provider
@@ -2344,21 +2356,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Vælg bedømmelse
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Nulstil OTP Secret
DocType: Email Account,Notify if unreplied for (in mins),"Informer, hvis unreplied for (i minutter)"
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,2 dage siden
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,2 dage siden
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisér blogindlæg.
DocType: Workflow State,Time,Tid
DocType: DocField,Attach,Vedhæft
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Send feedback Anmodning, hvis der er mindst én kommunikation er tilgængelig for dokumentet."
DocType: Custom Role,Permission Rules,Tilladelsesregler
DocType: GSuite Settings,GSuite Settings,GSuite Indstillinger
DocType: Address,Links,Links
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Vælg dokumenttype.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Værdi mangler for
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Tilføj ny
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes.
DocType: GSuite Templates,Template Name,Skabelonnavn
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ny dokumenttype
DocType: Custom DocPerm,Read,Læs
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Venligst opsæt standard e-mail-konto fra Opsætning> Email> E-mail-konto
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rolle Tilladelse til side og rapport
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Juster Value
@@ -2366,18 +2380,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Gammel adgangskode
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Meddelelser fra {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","For at formatere kolonner, giver kolonneetiketter i forespørgslen."
DocType: Has Domain,Has Domain,Har Domæne
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Skjule
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Skjule
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Har du ikke en konto? Tilmeld dig her
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sætte Tildel Tekst hvis ikke Submittable
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,Kan ikke fjerne ID-feltet
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kan ikke indstille tildeling - Ændre, hvis det ikke kan indsendes."
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,Link DocType
+DocType: Activity Log,Link DocType,Link DocType
DocType: Social Login Keys,Social Login Keys,Social Login Keys
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Fjern alle tilpasninger?
DocType: Website Slideshow,Slideshow Name,Slideshow Navn
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Annullerer
DocType: DocType,Allow Rename,Tillad Omdøb
-DocType: Authentication Log,Full Name,Navn
+DocType: Activity Log,Full Name,Navn
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Child Tabeller er vist som en Grid i andre doctypes.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Den side, du er på udkig efter mangler. Dette kan skyldes den flyttes, eller der er en tastefejl i linket."
apps/frappe/frappe/www/404.html +25,Error Code: {0},Fejlkode: {0}
@@ -2407,18 +2422,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!",Indtast venligst både din email og din meddelelse - så kommer vi tilbage til dig. Tak!
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Kunne ikke forbinde til udgående e-mail-server
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Tak for din interesse i at abonnere på vores opdateringer
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Tilpasset kolonne
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Tilpasset kolonne
DocType: Workflow State,resize-full,resize-fuld
DocType: Workflow State,off,af
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Rapport {0} er deaktiveret
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Anbefales til at indsætte nye poster.
-DocType: Async Task,Core,Core
+DocType: Activity Log,Core,Core
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Set tilladelser
DocType: DocField,Set non-standard precision for a Float or Currency field,Sæt ikke-standard præcision for en Float eller valuta felt
DocType: Email Account,Ignore attachments over this size,Ignorér vedhæftede filer større end denne størrelse
DocType: Address,Preferred Billing Address,Foretruken faktureringsadresse
apps/frappe/frappe/config/integrations.py +68,External Documents,Eksterne dokumenter
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år siden
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Alt for mange skriver i en anmodning. Send venligst mindre anmodninger
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Værdier ændret
DocType: Workflow State,arrow-up,arrow-up
@@ -2426,18 +2439,17 @@ DocType: OAuth Bearer Token,Expires In,udløber I
DocType: DocField,Allow on Submit,Tillad på Godkend
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Undtagelsestype
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Vælg kolonner
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Vælg kolonner
DocType: Web Page,Add code as <script>,Føje kode som <script>
DocType: Webhook,Headers,headers
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Vælg type
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,Indtast værdier for App adgangsnøgle og App Secret Key
DocType: Web Form,Accept Payment,Godkend betaling
-apps/frappe/frappe/config/core.py +62,A log of request errors,En log over anmodning fejl
+apps/frappe/frappe/config/core.py +62,A log of request errors,En log over anmodnings fejl
DocType: Report,Letter Head,Brevhoved
DocType: DocType,Quick Entry,Hurtig indtastning
DocType: Web Form,Button Label,Button Label
DocType: Website Theme,UPPERCASE,STORE BOGSTAVER
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} varer er valgt
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} varer er valgt
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,Suspend afsendelse
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Træk elementer fra indholdsoversigten at tilføje. Trække dem tilbage til papirkurven.
DocType: Workflow State,resize-small,resize-small
@@ -2463,21 +2475,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},Tilpasnin
DocType: Workflow State,Edit,Redigér
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Tilladelser kan styres via Setup> Rolleadministrator
DocType: Contact Us Settings,Pincode,Pinkode
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,"Sørg for, at der ikke er nogen tomme kolonner i filen."
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,"Sørg for, at der ikke er nogen tomme kolonner i filen."
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,"Sørg for, at din profil har en e-mailadresse"
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,Du har ikke-gemte ændringer i dette skærmbillede. Gem før du fortsætter.
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Standard for {0} skal være en mulighed
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Standard for {0} skal være en mulighed
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori
DocType: User,User Image,Brugerbillede
apps/frappe/frappe/email/queue.py +336,Emails are muted,E-mails er slået fra
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Overskrift Style
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,En ny sag med dette navn vil blive oprettet
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,1 uge siden
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,En ny sag med dette navn vil blive oprettet
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,1 uge siden
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Du kan ikke installere denne app
DocType: Communication,Error,Fejl
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Send ikke e-mails.
+DocType: Data Import,Ignore encoding errors,Ignorer kodningsfejl
DocType: DocField,Column Break,Kolonne Break
DocType: Event,Thursday,Torsdag
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Du har ikke tilladelse til at få adgang til denne fil
@@ -2504,7 +2516,6 @@ DocType: Webhook,Webhook Request,Webhook Request
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Udgiver
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Mislykket: {0} til {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Kortlægningstype
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Vælg Obligatorisk
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Gennemse
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Intet behov for symboler, tal eller store bogstaver."
DocType: DocField,Currency,Valuta
@@ -2514,10 +2525,11 @@ DocType: Async Task,Running,Løb
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Nulstil adgangskode
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Venligst Opgrader for at tilføje flere end {0} abonnenter
DocType: Workflow State,hand-left,hånd-venstre
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik
+DocType: Data Import,If you are updating/overwriting already created records.,Hvis du opdaterer / overskriver allerede oprettede poster.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik
DocType: Email Account,Use SSL,Brug SSL
DocType: Workflow State,play-circle,play-cirkel
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression",Ugyldigt "depends_on" udtryk
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression",Ugyldigt "depends_on" udtryk
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Vælg Print Format til Edit
DocType: Address,Shipping,Forsendelse
DocType: Workflow State,circle-arrow-down,cirkel-pil-ned
@@ -2529,25 +2541,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,arrow-ret
DocType: Workflow State,Workflow state represents the current state of a document.,Workflow tilstand repræsenterer den aktuelle tilstand af et dokument.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token mangler
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,"Bemærk: Hvis du ændrer sidenavnet, slettes den tidligere URL til denne side."
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,"Bemærk: Hvis du ændrer sidenavnet, slettes den tidligere URL til denne side."
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},Fjernet {0}
DocType: SMS Settings,SMS Settings,SMS-indstillinger
DocType: Company History,Highlight,Fremhæv
DocType: OAuth Provider Settings,Force,Kraft
DocType: DocField,Fold,Fold
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Stigende
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard Print Format kan ikke opdateres
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Gå glip af
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,Angiv venligst
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,Angiv venligst
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Hjælp artikel
DocType: Page,Page Name,Sidenavn
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Help: Field Properties
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,importerer ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Unzip
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Forkert værdi i række {0}: {1} skal være {2} {3}
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Forkert værdi i række {0}: {1} skal være {2} {3}
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Sletning {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Sletning {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Vælg en eksisterende format for at redigere eller starte et nyt format.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Oprettet Brugerdefineret felt {0} i {1}
DocType: System Settings,Time Zone,Tidszone
@@ -2563,16 +2573,19 @@ DocType: Workflow State,Home,Hjem
DocType: OAuth Provider Settings,Auto,Auto
DocType: System Settings,User can login using Email id or User Name,Bruger kan logge ind med e-mail-id eller brugernavn
DocType: Workflow State,question-sign,spørgsmålstegn
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Indsæt kolonne inden {0}
DocType: Email Account,Add Signature,Tilføj signatur
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Forladt denne samtale
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Ikke indstillet
,Background Jobs,Baggrundsjobs
DocType: ToDo,ToDo,Opgave
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Opsætning> Bruger
DocType: DocField,No Copy,Ingen kopi
DocType: Workflow State,qrcode,QR-code
+DocType: Data Import,Submit after importing,Indsend efter import
apps/frappe/frappe/www/login.html +31,Login with LDAP,Login med LDAP
DocType: Web Form,Breadcrumbs,Rasp
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Hvis ejer
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Hvis ejer
DocType: Data Migration Mapping,Push,Skubbe
DocType: OAuth Authorization Code,Expiration time,udløb tid
DocType: Web Page,Website Sidebar,Website Sidebar
@@ -2588,6 +2601,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Udskriftsindstillinger
DocType: Page,Yes,Ja
DocType: DocType,Max Attachments,Maks Vedhæftede
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klientnøgle er påkrævet
DocType: Calendar View,End Date Field,Slutdato Field
DocType: Desktop Icon,Page,Side
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kunne ikke finde {0} i {1}
@@ -2598,18 +2612,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},Værdi
DocType: Feedback Request,Is Manual,er Manual
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style repræsenterer knap farve: Succes - Grøn, Danger - Rød, Inverse - Sort, Primary - Mørkeblå, Info - Lyseblå, Advarsel - Orange"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ingen Rapport. Brug venligst forespørgsels-rapport / [Forkert navn] for at køre en rapport.
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Row Status
DocType: Workflow Transition,Workflow Transition,Workflow Transition
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} måneder siden
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Oprettet af
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Dropbox Setup
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Dropbox Setup
DocType: Workflow State,resize-horizontal,resize-horisontale
DocType: Note,Content,Indhold
DocType: Data Migration Run,Push Insert,Skub Indsæt
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Gruppe Node
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Gruppe Node
DocType: Communication,Notification,Notifikation
DocType: DocType,Document,Dokument
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Serien {0} allerede anvendes i {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Ikke-understøttet filformat
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Ikke-understøttet filformat
DocType: DocField,Code,Kode
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle mulige Workflow stater og roller arbejdsgangen. Docstatus Valg: 0 er "frelst", 1 "Indsendte" og 2 "Annulleret""
DocType: Website Theme,Footer Text Color,Footer Tekstfarve
@@ -2617,6 +2632,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Sidst æ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Tilladelser på niveau 0 er Document Level tilladelser, dvs. de er primært for at få adgang til dokumentet."
DocType: Email Alert,Print Format,Print Format
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ugyldige betaling gateway legitimationsoplysninger
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dette er skabelonfilen, der genereres med kun rækkerne, der har en vis fejl. Du skal bruge denne fil til rettelse og import."
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Set Tilladelser om dokumenttyper og roller
apps/frappe/frappe/model/meta.py +159,No Label,ingen Label
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Opdaterer ...
@@ -2641,15 +2657,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,Svar
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Sider i Desk (pladsholdere)
DocType: DocField,Collapsible Depends On,Sammenklappelig Afhænger On
DocType: Print Style,Print Style Name,Udskriv stilnavn
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,Ved
DocType: Print Settings,Allow page break inside tables,Tillad sideskift inde i tabeller
DocType: Email Account,SMTP Server,SMTP-server
DocType: Print Format,Print Format Help,Print Format Hjælp
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,"Opdater skabelonen og gem det i downloadet format, inden du vedhæfter."
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,Med grupper
DocType: DocType,Beta,Beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restaureret {0} som {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Hvis du opdaterer, skal du vælge "Overskriv" vil ellers eksisterende rækker ikke slettes."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Hvis du opdaterer, skal du vælge "Overskriv" vil ellers eksisterende rækker ikke slettes."
DocType: Event,Every Month,Hver måned
DocType: Letter Head,Letter Head in HTML,Brevhoved i HTML
DocType: Web Form,Web Form,Web Form
@@ -2659,15 +2675,15 @@ DocType: Print Settings,Allow Print for Cancelled,Tillad Print til Annulleret
DocType: Communication,Integrations can use this field to set email delivery status,Integrationer kan bruge dette felt til at indstille e-mail-leveringsstatus
DocType: Web Form,Web Page Link Text,Hjemmeside Link-tekst
DocType: Page,System Page,System side
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Sæt standard format, side størrelse, print stil etc."
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Sæt standard format, side størrelse, print stil etc."
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Medtag Søg i Top Bar
DocType: GSuite Settings,Allow GSuite access,Tillad GSuite adgang
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Navngivning
DocType: Event,Every Year,Hvert år
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Vælg alt
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Brugerdefinerede Oversættelser
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Vælg alt
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Brugerdefinerede Oversættelser
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Fremskridt
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,efter rolle
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,manglende felter
@@ -2679,14 +2695,13 @@ DocType: File,Thumbnail URL,Thumbnail URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Tilpassede rapporter
DocType: Website Script,Website Script,Website Script
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Hvis du ikke bruger eget publiceret Google Apps Script-webapp, kan du bruge standard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec"
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Tilpassede HTML-skabeloner til udskrivning af transaktioner.
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Tilpassede HTML-skabeloner til udskrivning af transaktioner.
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,Orientering
DocType: Workflow,Is Active,Er Aktiv
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Ikke flere poster
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Opsætning> Brugerrettigheder
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Ikke flere poster
DocType: DocField,Long Text,Lang tekst
DocType: Workflow State,Primary,Primær
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},Du må ikke ændre rækkerne ovenfor {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},Du må ikke ændre rækkerne ovenfor {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gå til denne webadresse efter at have udfyldt formularen (kun for gæstebrugere)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Ctrl + G)
DocType: Contact,More Information,Mere information
@@ -2698,7 +2713,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,klokke
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Fejl i Email Alert
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Del dette dokument med
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en undernode, da den har undernoder"
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en undernode, da den har undernoder"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Tilføj vedhæftet fil
DocType: Data Migration Mapping,Sync,Synkronisere
@@ -2738,7 +2753,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Betaling Gateway
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","At give acess til en rolle for kun specifikke poster, skal du kontrollere Anvend User Tilladelser. User Tilladelser til at begrænse brugere med sådan rolle til bestemte poster."
DocType: Portal Settings,Hide Standard Menu,Skjul Standardmenuen
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Tilføj / Administrer e-mail domæner.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Tilføj / Administrer e-mail domæner.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Kan ikke annullere inden godkendelse. Se Overgang {0}
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} er deaktiveret
DocType: Email Alert,Send days before or after the reference date,Send dage før eller efter skæringsdatoen
@@ -2747,7 +2762,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Værdi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Klik her for at verificere
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Forudsigelige udskiftninger som '@' i stedet for 'a' ikke hjælper meget.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Tildelt af mig
-apps/frappe/frappe/utils/data.py +480,Zero,Nul
+apps/frappe/frappe/utils/data.py +485,Zero,Nul
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i Udviklings-tilstand! Sat i site_config.json eller lav 'Brugerdefineret' DocType.
DocType: Workflow State,globe,kloden
DocType: System Settings,dd.mm.yyyy,dd.mm.åååå
@@ -2767,11 +2782,12 @@ DocType: Module Def,Module Name,Modulnavn
DocType: DocType,DocType is a Table / Form in the application.,DocType er en tabel / formular i ansøgningen.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Rapport
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Rapport
DocType: SMS Settings,Use POST,Brug POST
DocType: Communication,SMS,SMS
DocType: DocType,Web View,Web View
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,Advarsel: dette Print Format er gamle stil og kan ikke genereres via API.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Totaler
DocType: DocField,Print Width,Print Bredde
,Setup Wizard,Setup Wizard
DocType: Address,GST State Number,GST-nummer
@@ -2797,26 +2813,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Opdatér venligst SMS-indstillinger
DocType: Event,Event Type,Begivenhed Type
DocType: User,Last Known Versions,Sidst kendte versioner
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Tilføj / Håndter e-mail-konti.
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Tilføj / Håndter e-mail-konti.
DocType: Newsletter,Published,Udgivet
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Tak for din e-mail
DocType: DocField,Small Text,Lille tekst
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Lig
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType'
DocType: About Us Settings,Team Members Heading,Team Members Udgifts
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Ugyldigt CSV-format
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Angiv antal sikkerhedskopier
DocType: DocField,Do not allow user to change after set the first time,Tillad ikke brugeren at ændre sig efter indstille den første gang
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Privat eller offentlig?
-apps/frappe/frappe/utils/data.py +578,1 year ago,1 år siden
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat eller offentlig?
+apps/frappe/frappe/utils/data.py +590,1 year ago,1 år siden
DocType: Contact,Contact,Kontakt
DocType: User,Third Party Authentication,Third Party Authentication
DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over den øverste menubjælke.
DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Udlæs rapport:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} findes ikke
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Udlæs rapport:
DocType: Data Migration Run,Push Update,Tryk opdatering
DocType: Email Account,Port,Port
DocType: Print Format,Arial,Arial
@@ -2833,15 +2848,15 @@ DocType: Dropbox Settings,Dropbox Settings,Dropbox Indstillinger
DocType: About Us Settings,More content for the bottom of the page.,Mere indhold til bunden af siden.
DocType: Workflow,DocType on which this Workflow is applicable.,DocType for denne Workflow er gældende.
DocType: Feedback Trigger,Enabled,Aktiv
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Kunne ikke fuldføre opsætningen
DocType: Tag Category,Category Name,Kategori Navn
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Import Abonnenter
DocType: Print Settings,PDF Settings,PDF-indstillinger
DocType: Kanban Board Column,Column Name,Kolonnenavn
DocType: Language,Based On,Baseret på
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Du er klar!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Gør til standard
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Tjek Frappe-Server URL
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres
DocType: Communication,Email Account,E-mailkonto
DocType: Workflow State,Download,Hent
DocType: Blog Post,Blog Intro,Blog Intro
@@ -2857,7 +2872,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ugyldig grænse {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Liste en dokumenttype
DocType: Event,Ref Type,Ref Type
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du uploader nye rekorder, forlader "navn" (ID) søjle tom."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du uploader nye rekorder, forlader "navn" (ID) søjle tom."
DocType: Data Migration Run,Current Mapping Delete Start,Aktuel kortlægning Slet start
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Fejl i baggrunds-begivenheder
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Antal kolonner
@@ -2869,22 +2884,22 @@ DocType: Website Settings,Website Theme Image,Website Tema Billede
DocType: Workflow State,road,vej
DocType: LDAP Settings,Organizational Unit,Organisatorisk enhed
DocType: User,Timezone,Tidszone
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Kunne ikke indlæse: {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},Kunne ikke indlæse: {0}
apps/frappe/frappe/config/integrations.py +28,Backup,Sikkerhedskopi
DocType: DocField,Read Only,Skrivebeskyttet
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Nyt nyhedsbrev
DocType: Print Settings,Send Print as PDF,Send udskrift som PDF
DocType: Web Form,Amount,Beløb
DocType: Workflow Transition,Allowed,Tilladt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Der kan kun være én Fold i en form
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Der kan kun være én Fold i en form
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Kan ikke skrive filformat til {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Gendan til standardindstillinger?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ugyldig Home Page
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Ugyldigt login. Prøv igen.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Ugyldigt login. Prøv igen.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1}
DocType: Auto Email Report,Send only if there is any data,Send kun hvis der er nogen data
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Nulstil filtre
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer"
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opgave lukket af {0}
DocType: Integration Request,Remote,Fjern
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beregn
@@ -2895,7 +2910,6 @@ DocType: Error Snapshot,Locals,Lokale
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeres via {0} på {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} omtalte dig i en kommentar i {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,f.eks (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} er påkrævet
DocType: Integration Request,Integration Type,Integration Type
DocType: Newsletter,Send Attachements,Send vedhæftede filer
@@ -2905,16 +2919,15 @@ DocType: DocField,Perm Level,Perm Level
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Begivenheder ifølge dagens kalender
DocType: Web Page,Web Page,Hjemmeside
DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Spring rækker med fejl.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Se liste
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Se liste
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Dato skal være i format: {0}
DocType: Workflow,Don't Override Status,Må ikke Tilsidesæt status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Giv en rating.
-apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Request
+apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback anmodning
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Søgeord
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,Den første bruger: dig selv
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Vælg kolonner
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,Den første bruger: dig selv
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Vælg kolonner
DocType: Translation,Source Text,Kilde Tekst
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Manglende parametre for login
DocType: Workflow State,folder-open,mappe-open
@@ -2926,18 +2939,17 @@ DocType: Page,No,Nej
DocType: Property Setter,Set Value,Set Value
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Skjul felt i formular
DocType: Webhook,Webhook Data,Webhook Data
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Ulovlig adgangs-token. Prøv igen
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Ulovlig adgangs-token. Prøv igen
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Ansøgningen er blevet opdateret til en ny version, skal du opdatere denne side"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Send igen
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"Valgfrit: Alarmen vil blive sendt, hvis dette udtryk er sand"
DocType: Data Migration Plan,Plan Name,Plan navn
DocType: Print Settings,Print with letterhead,Udskriv med brevhoved
DocType: Unhandled Email,Raw Email,Udkast til e-mail
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Vælg rækker der skal tildeles
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Import
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Vælg rækker der skal tildeles
DocType: ToDo,Assigned By,Tildelt af
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Du kan bruge Tilpas Form til at indstille niveauet på marker.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Vælg din region
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Vælg din region
DocType: Custom DocPerm,Level,Niveau
DocType: Custom DocPerm,Report,Rapport
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Beløb skal være større end 0.
@@ -2956,7 +2968,7 @@ DocType: Website Theme,Background,Baggrund
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON liste over doctypes bruges til at anvende Bruger Tilladelser. Hvis tom, vil alle tilknyttede doctypes bruges til at anvende Bruger Tilladelser."
DocType: Report,Ref DocType,Ref DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,Tilføj venligst en bedømmelse
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,{0}: Kan ikke sætte Amend uden Annuller
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,{0}: Kan ikke indstille ændre uden annuller
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Fuld side
DocType: DocType,Is Child Table,Er Child Table
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} skal være en af {1}
@@ -2968,7 +2980,7 @@ DocType: Workflow State,chevron-left,chevron-venstre
DocType: Communication,Sending,Sender
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Ikke tilladt fra denne IP-adresse
DocType: Website Slideshow,This goes above the slideshow.,Dette går over diasshowet.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Installer applikationer.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Installer applikationer.
DocType: Contact,Last Name,Efternavn
DocType: Event,Private,Privat
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Ingen advarsler for dag
@@ -2985,19 +2997,19 @@ DocType: Event,Send an email reminder in the morning,Send en e-mail påmindelse
DocType: Blog Post,Published On,Udgivet d.
DocType: Contact,Gender,Køn
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,mangler Obligatorisk information:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier"
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Tjek forespørgselswebadresse
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Kun 200 indsatse tilladt i én anmodning
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,"Gå tilbage til verifikationsskærmen og indtast koden, der vises af din godkendelsesapp"
DocType: ToDo,Reference Type,Henvisning Type
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,Aktivér udviklertilstand for at oprette en ny forbindelse
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,Aktivér udviklertilstand for at oprette en ny forbindelse
DocType: Event,Repeat On,Gentag den
DocType: SMS Parameter,SMS Parameter,SMS Parameter
DocType: Communication,Marked As Spam,Markeret som spam
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Der er nogle problemer med filen url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Træ
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,Du har ikke tilladelse til at udskrive denne rapport
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,Du har ikke tilladelse til at udskrive denne rapport
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Brugertilladelser
DocType: Workflow State,warning-sign,advarsel-skilt
DocType: Workflow State,User,Bruger
@@ -3029,64 +3041,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Standard
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} tilføjet
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Søg efter '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Venligst gemme rapporten først
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,Venligst gemme rapporten først
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnenter tilføjet
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ikke I
DocType: Workflow State,star,stjerne
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,værdier adskilt af kommaer
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,værdier adskilt af kommaer
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Venligst dele din feedback til {0}
apps/frappe/frappe/config/website.py +13,Content web page.,Hjemmeside-indhold.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Tilføj en ny rolle
DocType: Deleted Document,Deleted Document,slettet dokument
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Ups! noget gik galt
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Ups! noget gik galt
DocType: Help Article,Category,Kategori
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Client side script udvidelser i Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Retningslinjer for at installere LDAP afhængigheder og python
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Blog Introduktion
DocType: Address,Office,Kontor
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Denne kanbantavle vil være privat
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Denne kanbantavle vil være privat
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standard rapporter
DocType: User,Email Settings,E-mail-indstillinger
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,Indtast venligst din adgangskode for at fortsætte
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ikke et gyldigt LDAP bruger
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ikke en gyldig stat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',Vælg en anden betalingsmetode. PayPal understøtter ikke transaktioner i sedler '{0}'
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Søgefelt {0} er ikke gyldig
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Søgefelt {0} er ikke gyldig
DocType: Workflow State,ok-circle,ok-cirkel
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Du kan finde ting ved at spørge "finde orange i kundernes
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Undskyld! Bruger skal have fuld adgang til deres egen rekord.
,Usage Info,Brugerstatistik
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Ugyldig Token
DocType: Email Account,Email Server,E-mail-server
-DocType: DocShare,Document Type,Dokumenttype
+DocType: Data Import,Document Type,Dokumenttype
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Label er obligatorisk
DocType: PayPal Settings,API Username,API-brugernavn
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Halv dag
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Halv dag
DocType: Communication,Communication Type,Kommunikation Type
DocType: DocField,Unique,Unik
-DocType: Data Migration Run,Partial Success,Delvis succes
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Delvis succes
DocType: Email Account,Service,Service
DocType: File,File Name,Filnavn
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),Fandt du ikke {0} for {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),Fandt du ikke {0} for {0} ({1})
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Ups, er det ikke tilladt at vide, at"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Næste
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Næste
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Du er blevet logget ud
DocType: Calendar View,Calendar View,Kalendervisning
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Rediger Format
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Komplet Registrering
DocType: GSuite Settings,Enable,Aktiver
+DocType: Google Maps,Home Address,Hjemmeadresse
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Ny {0} (Ctrl + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Top Bar Farve og tekstfarve er de samme. De bør have god kontrast, der skal læses."
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan kun uploade op til 5000 poster på én gang. (Kan være mindre i nogle tilfælde)
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan kun uploade op til 5000 poster på én gang. (Kan være mindre i nogle tilfælde)
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Utilstrækkelig tilladelse til {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Rapporten blev ikke gemt (der var fejl)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Rapporten blev ikke gemt (der var fejl)
DocType: Print Settings,Print Style,Print Style
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Ikke knyttet til nogen post
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Ikke knyttet til nogen post
DocType: Custom DocPerm,Import,Import
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,Række {0}: Ikke tilladt at aktivere Tillad på Send til standard felter
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Indlæs / udlæs data
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Indlæs / udlæs data
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standard roller kan ikke omdøbes
DocType: Communication,To and CC,Til og CC
DocType: SMS Settings,Static Parameters,Statiske parametre
@@ -3107,18 +3120,17 @@ DocType: Web Page,Header and Description,Overskrift og beskrivelse
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Både brugernavn og adgangskode kræves
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,Venligst Opdater for at få den nyeste dokument.
DocType: User,Security Settings,Sikkerhedsindstillinger
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Tilføj kolonne
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Tilføj kolonne
,Desktop,Skrivebord
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Eksportrapport: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Eksportrapport: {0}
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, der skal vises for Link til webside, hvis denne form har en webside. Link rute automatisk genereret baseret på `page_name` og` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Feedback Trigger
DocType: S3 Backup Settings,Backup Limit,Backup Limit
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,Indstil {0} først
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,Indstil {0} først
DocType: Unhandled Email,Message-id,Message-id
DocType: Patch Log,Patch,Patch
-DocType: Async Task,Failed,Mislykkedes
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Ingen data fundet
+DocType: Activity Log,Failed,Mislykkedes
DocType: Web Form,Allow Comments,Tillad kommentarer
DocType: User,Background Style,Baggrund Style
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,"Bypass Two Factor Auth for brugere, der logger ind fra begrænset IP-adresse"
@@ -3127,7 +3139,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},fusioneret {0} i {1}
DocType: System Settings,mm-dd-yyyy,mm-dd-åååå
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Ny forbindelse
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} logget ind
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} logget ind
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Dit login-id er
DocType: OAuth Client,Skip Authorization,Skip Authorization
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Kan ikke redigere Standard Email Alert. For at redigere, skal du deaktivere dette og duplikere det"
diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv
index bfa2af6b5b..6eff228a8d 100644
--- a/frappe/translations/de.csv
+++ b/frappe/translations/de.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}",Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2}
DocType: Email Queue,Email Queue records.,E-Mail-Queue Aufzeichnungen.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Absenden
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Bitte zuerst Gruppentyp auswählen
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Bitte zuerst Gruppentyp auswählen
DocType: Address,Punjab,Punjab
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Viele Elemente auf einmal umbenennen durch Hochladen einer .CSV-Datei
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Viele Elemente auf einmal umbenennen durch Hochladen einer .CSV-Datei
DocType: Workflow State,pause,Anhalten
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Sie sind nicht berechtigt auf diese Seite zuzugreifen.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Keine Ergebnisse gefunden für '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Ihre Information wurde eingereicht apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Benutzer {0} kann nicht gelöscht werden DocType: System Settings,Currency Precision,Währungsgenauigkeit @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Anhang DocType: Communication,Message ID,Message-ID DocType: Property Setter,Field Name,Feldname apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ist nicht konfiguriert. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,oder +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,oder apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Modulname ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsetzen DocType: Custom Field,Fieldname,Feldname DocType: Workflow State,certificate,Zertifikat DocType: User,Tile,Kachel apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Überprüfen ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Erste Datenspalte muss leer sein. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Erste Datenspalte muss leer sein. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Alle Versionen DocType: Workflow State,Print,Drucken DocType: User,Restrict IP,IP beschränken apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,Instrumententafel apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,E-Mails können zur Zeit nicht versendet werden apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Suchen oder Befehl eingeben -DocType: Communication,Timeline Name,Timeline-Name +DocType: Activity Log,Timeline Name,Timeline-Name DocType: Email Account,e.g. smtp.gmail.com,z. B. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Neue Regel hinzufügen DocType: Contact,Sales Master Manager,Hauptvertriebsleiter @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,H DocType: Top Bar Item,Parent Label,Übergeordnete Bezeichnung apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Berechtigungen werden automatisch auf Standardberichte und -suchen übertragen. -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Login-Token erforderlich +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,{0} ist ein Pflichtfeld +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Login-Token erforderlich DocType: Event,Repeat Till,Wiederholen bis apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Neu apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Bitte setzen Sie die Skript-URL auf die Gsuite-Einstellungen @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Bevorstehenden Veranstaltungen für heute DocType: Email Alert Recipient,Email By Document Field,E-Mail nach Dokumentenfeld DocType: Domain Settings,Domain Settings,Domäneneinstellungen -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Dateigröße: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Dateigröße: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Aktualisierung apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Verbindung kann nicht hergestellt werden: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Ein Wort allein ist leicht zu erraten. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Teileinheiten apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} von {1} bis {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Als erledigt markieren DocType: Communication,Type,Typ -DocType: Authentication Log,Subject,Betreff +DocType: Activity Log,Subject,Betreff DocType: Web Form,Amount Based On Field,"Menge, bezogen auf Feld" apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Benutzer für Freigabe zwingend erforderlich DocType: DocField,Hidden,Ausgeblendet @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Unvollständige Formulare zulassen apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} muss als erstes gesetzt sein apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Verwenden Sie ein paar Worte, vermeiden gemeinsame Phrasen." DocType: Workflow State,plane,eben -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Wenn neue Datensätze hochgeladen werden, ist - falls vorhanden - ""Bezeichnung von Serien"" Pflicht." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Wenn neue Datensätze hochgeladen werden, ist - falls vorhanden - ""Bezeichnung von Serien"" Pflicht." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Alarme für heute apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType darf nur vom Administrator umbenannt werden apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},Wert von {0} geändert DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Wenn der Benutzer eine Rolle überprüft hat, wird der Benutzer ein "Systembenutzer". "System User" hat Zugriff auf den Desktop" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Bitte überprüfen Sie Ihre E-Mail für die Überprüfung -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein DocType: Communication,Bounced,Gesprungen DocType: Deleted Document,Deleted Name,Gelöschte Namen apps/frappe/frappe/config/setup.py +14,System and Website Users,System- und Webseitenbenutzer @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Pull-Aktualisierung DocType: Auto Email Report,No of Rows (Max 500),Keine der Zeilen (Max 500) DocType: Language,Language Code,Sprachcode apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Ihr Download wird erstellt, dies kann einige Sekunden dauern ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Filter hinzufügen +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Filter hinzufügen apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS an folgende Nummern verschickt: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Ihre Bewertung: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} und {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} und {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Entwürfe beim Drucken in der Kopfzeile kennzeichnen DocType: Data Migration Run,Current Mapping Start,Aktueller Mapping-Start apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,E-Mail wurde als Spam markiert DocType: About Us Settings,Website Manager,Webseiten-Administrator apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Datei hochladen getrennt. Bitte versuche es erneut. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Sie haben Entwürfe oder abgebrochene Dokumente ausgewählt -apps/frappe/frappe/model/document.py +1180,Document Queued,anstehendes Dokument +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Sie haben Entwürfe oder abgebrochene Dokumente ausgewählt +apps/frappe/frappe/model/document.py +1186,Document Queued,anstehendes Dokument DocType: GSuite Templates,Destination ID,Ziel-ID DocType: Desktop Icon,List,Listenansicht -DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" +DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" DocType: System Settings,mm/dd/yyyy,MM/TT/JJJJ -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Ungültiges Passwort: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Ungültiges Passwort: DocType: Print Settings,Send document web view link in email,Link zur Dokumenten Web-Ansicht in E-Mail senden. apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ihr Feedback für Dokument {0} erfolgreich gespeichert -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Vorhergehende +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Vorhergehende apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Zurück: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} Zeilen für {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Unterwährung, z. B. ""Cent""" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Wählen Sie Datei uploaded DocType: Letter Head,Check this to make this the default letter head in all prints,"Hier aktivieren, damit dieser Briefkopf der Standardbriefkopf aller Ausdrucke wird" DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,New Kanbantafel +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,New Kanbantafel DocType: Desktop Icon,Link,Verknüpfung apps/frappe/frappe/utils/file_manager.py +111,No file attached,Keine Datei angehängt DocType: Version,Version,Version DocType: User,Fill Screen,Bildschirm ausfüllen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Der Bericht zu dieser Struktur kann aufgrund fehlender Daten nicht angezeigt werden. Am häufigsten passiert dieser Fehler, weil die Daten aufgrund fehlender Benutzerrechte ausgefiltert werden." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Wählen Sie Datei +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Der Bericht zu dieser Struktur kann aufgrund fehlender Daten nicht angezeigt werden. Am häufigsten passiert dieser Fehler, weil die Daten aufgrund fehlender Benutzerrechte ausgefiltert werden." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Upload fehlgeschlagen -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Über einen Hochladevorgang bearbeiten +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Über einen Hochladevorgang bearbeiten apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Dokumententyp ..., z. B. Kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Der Zustand '{0}' ist ungültig DocType: Workflow State,barcode,Barcode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Eigene Übersetzungen hinzufügen +apps/frappe/frappe/config/setup.py +242,Add your own translations,Eigene Übersetzungen hinzufügen DocType: Country,Country Name,Ländername DocType: About Us Team Member,About Us Team Member,Informationen über die Teammitglieder apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Berechtigungen werden für Rollen und Dokumenttypen (sogenannte DocTypes ) eingerichtet, indem Rechte wie ""Lesen"", ""Schreiben"", ""Erstellen"", ""Löschen"", ""Übertragen"", ""Stornieren"", ""Ändern"", ""Bericht"", ""Import"", ""Export"", ""Drucken"", ""E-Mail"" und ""Benutzerberechtigungen setzen"" gesetzt werden." DocType: Event,Wednesday,Mittwoch -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein DocType: OAuth Client,Token,Zeichen DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss" apps/frappe/frappe/limits.py +84,"To renew, {0}.","So erneuern, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} bereits i apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Keine Vorschau DocType: Workflow State,exclamation-sign,Ausrufezeichen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Berechtigungen anzeigen -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumspanne -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt-Diagramm +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt-Diagramm apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Seite {0} von {1} DocType: About Us Settings,Introduce your company to the website visitor.,Vorstellung des Unternehmens für Besucher der Webseite. apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","Verschlüsselungsschlüssel ist ungültig, bitte check site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,Apple FaceTime-Video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 Kommentar DocType: Email Alert,Days Before,Tage vor DocType: Workflow State,volume-down,Lautstärke verringern -apps/frappe/frappe/desk/reportview.py +262,No Tags,No Tags +apps/frappe/frappe/desk/reportview.py +266,No Tags,No Tags DocType: DocType,List View Settings,Einstellungen zu Listenansicht DocType: Email Account,Send Notification to,Benachrichtigung senden an DocType: DocField,Collapsible,Faltbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gespeichert apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Wozu benötigen Sie Hilfe? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Optionen zum Auswählen. Jede Option in einer neuen Zeile. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,{0} endgültig abbrechen? +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,{0} endgültig abbrechen? DocType: Workflow State,music,Musik apps/frappe/frappe/www/qrcode.html +3,QR Code,QR-Code apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Zuletzt geändertes Datum DocType: Web Page,Settings,Einstellungen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Bitte Doctype angeben DocType: Print Format,Style Settings,Stileinstellungen -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Weiter +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Weiter DocType: Contact,Sales Manager,Vertriebsleiter -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Umbenennen +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Umbenennen DocType: Print Format,Format Data,Daten formatieren -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,Wie +apps/frappe/frappe/utils/bot.py +91,Like,Wie DocType: Customize Form Field,Customize Form Field,Formularfeld anpassen DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Prüfen, welche Dokumente von einem Nutzer lesbar sind" apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Listing App nicht erlaubt DocType: Deleted Document,Hub Sync ID,Hub-Synchronisierungs-ID -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,% als Platzhalter benutzen +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,% als Platzhalter benutzen apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",E-Mail-Domain existiert für diesen Account noch nicht. Jetzt Erstellen? DocType: User,Reset Password Key,Passwortschlüssel zurücksetzen DocType: Email Account,Enable Auto Reply,Automatische Rückantwort aktivieren @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Mindest-Passwort-Score DocType: DocType,Fields,Felder DocType: System Settings,Your organization name and address for the email footer.,Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Übergeordnete Tabelle +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Übergeordnete Tabelle apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3-Sicherung abgeschlossen! apps/frappe/frappe/config/desktop.py +60,Developer,Entwickler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Erstellt @@ -521,7 +522,7 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,No apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +126,Both DocType and Name required,DocType und Name sind beide erforderlich apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 1 to 0,DocStatus kann nicht von 1 auf 0 geändert werden -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +40,Take Backup Now,Nehmen Backup Now +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +40,Take Backup Now,Jetzt Backup durchführen apps/frappe/frappe/desk/page/applications/applications.js +95,Installed Apps,Installierte Apps DocType: Contact,Open,Offen DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,"Definiert Maßnahmen bei bestimmten Zuständen, den nächsten Schritt und erlaubte Rollen." @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Nur einmal festlegen DocType: Email Queue Recipient,Email Queue Recipient,E-Mail-Queue Empfänger DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Benutzername {0} ist bereits vorhanden -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Es befindet sich ein Fehler in der Adressvorlage {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Hoch DocType: S3 Backup Settings,Secret Access Key,Geheimer Zugriffsschlüssel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Männlich -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anmeldung erforderlich. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anmeldung erforderlich. DocType: Communication,From Full Name,Von Vor- und Nachname apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Sie haben keine Zugriffsrechte für den Bericht: {0} DocType: User,Send Welcome Email,Willkommens-E-Mail senden -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Es wurde keine Standardadressvorlage gefunden. Bitte erstellen Sie eine neue unter Setup> Drucken und Branding> Adressvorlage. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Filter entfernen +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Filter entfernen DocType: Address,Daman and Diu,Daman und Diu DocType: Address,Personal,Persönlich -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Werkzeug zum Massen-Umbenennen +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Werkzeug zum Massen-Umbenennen DocType: Email Queue,Show as cc,Stellen Sie als cc DocType: DocField,Heading,Überschrift DocType: Workflow State,resize-vertical,anpassen-vertikal -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Hochladen DocType: Contact Us Settings,Introductory information for the Contact Us Page,Einleitende Informationen für die Kontaktseite DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Bild-nach-unten @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,In globaler Suche DocType: Workflow State,indent-left,Einzug links apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,"Es ist riskant, diese Datei zu löschen: {0}. Bitte kontaktieren Sie Ihren System-Manager." DocType: Currency,Currency Name,Währungsbezeichnung -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,keine E-Mails +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,keine E-Mails DocType: Report,Javascript,JavaScript DocType: File,Content Hash,Inhalts-Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,"Speichert die JSON (JavaScript Object Notation) der letzten bekannten Versionen von verschiedenen installierten Apps. Wird verwendet, um Veröffentlichungs-Informationen zu zeigen." @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" DocType: Report,Query,Abfrage DocType: DocType,Sort Order,Sortierung -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Bitte Element auswählen, nach dem ein neues Feld eingefügt werden soll." ,Document Share Report,Dokumentenfreigabebericht DocType: User,Last Login,Letzte Anmeldung -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalte DocType: Custom Field,Adds a custom field to a DocType,Fügt einem DocType ein benutzerdefiniertes Feld hinzu DocType: File,Is Home Folder,Ist Ordner für Startseite apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ist keine gültige E-Mail-Adresse -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Wählen Sie mindestens einen Datensatz für den Druck +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Wählen Sie mindestens einen Datensatz für den Druck apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Benutzer '{0}' hat bereits die Rolle '{1}' DocType: System Settings,Two Factor Authentication method,Zwei Faktor-Authentifizierungsmethode apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Freigegeben für {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Abmelden -DocType: Communication,Reference Name,Referenzname +DocType: Activity Log,Reference Name,Referenzname apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Support per Chat DocType: Error Snapshot,Exception,Ausnahme -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Keine Ergebnisse für '
DocType: Email Account,Use IMAP,Bitte IMAP verwenden apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Anfrage an Frappe-Server URL nicht mögich +DocType: Activity Log,Activity Log,Aktivitätsprotokoll DocType: Integration Request,Authorized,Autorisiert DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,"Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die Werte werden in tabSingles gespeichert" DocType: System Settings,Enable Password Policy,Kennwortrichtlinie aktivieren @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","List apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Feldtyp kann nicht für {0} geändert werden DocType: Workflow,Rules defining transition of state in the workflow.,"Regeln, die den Übergang des Zustands im Workflow definieren." DocType: File,Folder,Ordner +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Importieren / Exportieren von Daten aus CSV- und Excel-Dateien. DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter-Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Option 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} bis {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} bis {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Melden von Fehlern während Anfragen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} wurde zur E-Mail-Gruppe hinzugefügt. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,"Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,"Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Login-Bestätigungscode von {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Datei(en) privat oder öffentlich machen? +DocType: Data Import,Import Status,Importstatus +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Datei(en) privat oder öffentlich machen? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Geplant zum Versand an {0} DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Jeder DocType: Workflow State,backward,Zurück -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" DocType: Email Queue,Add Unsubscribe Link,Abmelde-Link hinzufügen apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Noch keine Kommentare. Starten Sie eine neue Diskussion. DocType: Workflow State,share,Freigeben apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.",Ihr Abonnement ist abgelaufen am {0}. Zum erneuern bitte eine E-Mail an {1} senden. -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Seriennummerierung für Transaktionen einstellen +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Seriennummerierung für Transaktionen einstellen apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,"Sie können nicht liken, was Sie selbst erstellt haben." apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC-, BCC- und Standardantwort" DocType: User,Last IP,Letzte IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Datenmigrations-Conne DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filtern von Datensätzen basierend auf für einen Benutzer definierten Benutzerberechtigungen DocType: Note,Notify Users On Every Login,Benachrichtige Benutzer bei jeder Anmeldung DocType: PayPal Settings,API Password,API Passwort -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Python-Modul eingeben oder Verbindungstyp auswählen +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Python-Modul eingeben oder Verbindungstyp auswählen apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Feldname für benutzerdefiniertes Feld nicht gesetzt apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Zuletzt aktualisiert von apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,Ist nicht zulässig. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Kann die Datei nicht löschen, da sie zu {0} {1} gehört, für die Sie keine Berechtigungen haben" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fr. DocType: Website Theme,Background Color,Hintergrundfarbe -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut. +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut. DocType: Portal Settings,Portal Settings,Portaleinstellungen DocType: Data Migration Mapping,Mapping,Kartierung DocType: Web Page,0 is highest,Höchstwert ist 0 @@ -667,6 +668,7 @@ DocType: Language,Language Name,Sprache Name DocType: Email Group Member,Email Group Member,Eine E-Mail-Gruppen Mitglied DocType: Email Alert,Value Changed,Wert geändert apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Doppelter Namen {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Wiederholen DocType: Web Form Field,Web Form Field,Web-Formularfeld apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Feld im Berichtserstellungswerkzeug ausblenden apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML bearbeiten @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Laden DocType: DocField,Button,Schaltfläche apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} ist jetzt das Standard-Druckformat für {1} doctype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Archivierte Spalten +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Archivierte Spalten DocType: Email Account,Default Outgoing,Standard-Ausgang DocType: Workflow State,play,spielen apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,"Auf den Link unten klicken, um die Registrierung abzuschließen und ein neues Passwort zu setzen" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Wurde nicht hinzugefügt -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Keine E-Mail-Konten zugewiesen +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Keine E-Mail-Konten zugewiesen DocType: Contact Us Settings,Contact Us Settings,Einstellungen zu „Kontaktieren Sie uns“ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Suchen ... DocType: Workflow State,text-width,Textbreite @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Überprüfe Kommunikation DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Berichte des Berichts-Generators werden direkt von diesem verwaltet. Nichts zu tun. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Bitte bestätige deine Email Adresse -apps/frappe/frappe/model/document.py +1039,none of,keiner von +apps/frappe/frappe/model/document.py +1045,none of,keiner von apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Kopie an mich senden DocType: Dropbox Settings,App Secret Key,App geheimer Schlüssel DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web-Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Die markierten Elemente werden auf dem Desktop angezeigt -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban-Tafel {0} ist nicht vorhanden. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban-Tafel {0} ist nicht vorhanden. +DocType: Data Import,Data Import,Datenimport apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} betrachten derzeit dieses Dokument DocType: ToDo,Assigned By Full Name,Zugewiesen von Vollständiger Name apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} aktualisiert -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,vor {0} Tag(en) DocType: Email Account,Awaiting Password,ausstehendes Passwort DocType: Address,Address Line 1,Adresse Zeile 1 DocType: Custom DocPerm,Role,Rolle apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Einstellungen ... -apps/frappe/frappe/utils/data.py +459,Cent,Cent -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,E-Mail verfassen -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Zustände für Workflows (z. B. Entwurf, Genehmigt, Gelöscht)" +apps/frappe/frappe/utils/data.py +464,Cent,Cent +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,E-Mail verfassen +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Zustände für Workflows (z. B. Entwurf, Genehmigt, Gelöscht)" DocType: Print Settings,Allow Print for Draft,Drucken von Entwürfen erlauben apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Anzahl festlegen -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen" +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen" DocType: Contact,Unsubscribed,Abgemeldet apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Legen Sie benutzerdefinierte Rollen für Seite und Bericht apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Bewertung: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Kann UIDVALIDITY in imap Status Antwort nicht finden -,Data Import Tool,Daten-Import-Werkzeug DocType: Address,Dadra and Nagar Haveli,Dadra und Nagar Haveli -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Hochladen von Dateien bitte für ein paar Sekunden warten. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Eigenes Bild anhängen +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Eigenes Bild anhängen apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Zeilenwerte wurden geändert DocType: Workflow State,Stop,Anhalten DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Mit der Seite, die geöffnet werden soll, verknüpfen. Leer lassen, wenn eine übergeordnete Gruppe daraus gemacht werden soll." @@ -747,7 +748,7 @@ DocType: Report,Script Report,Skriptbericht DocType: OAuth Authorization Code,Scopes,Scopes DocType: About Us Settings,Company Introduction,Vorstellung des Unternehmens DocType: DocField,Length,Länge -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Wiederherstellen oder dauerhaft löschen eines Dokuments. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Wiederherstellen oder dauerhaft löschen eines Dokuments. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite-Test mit Erfolg durchgeführt Die GSuite-Integration ist korrekt konfiguriert DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} entfernt DocType: Custom DocPerm,Apply User Permissions,Benutzerberechtigungen anwenden DocType: User,Modules HTML,Modul-HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Angaben zu fehlenden Werten erforderlich +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Angaben zu fehlenden Werten erforderlich DocType: DocType,Other Settings,Weitere Einstellungen DocType: Data Migration Connector,Frappe,Frappé apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Als ungelesen markieren apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} ist nicht gesetzt -DocType: Authentication Log,Operation,Arbeitsgang +DocType: Activity Log,Operation,Arbeitsgang DocType: Customize Form,Change Label (via Custom Translation),Bezeichnung ändern (über Benutzerdefinierte Übersetzung) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Keine Berechtigung um {0} {1} {2} DocType: Address,Permanent,Dauerhaft apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Hinweis: Andere Berechtigungsregeln können ebenfalls gelten apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Zugriff auf {0} mit {1} = {2} nicht erlaubt +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Wenn dies aktiviert ist, werden Zeilen mit gültigen Daten importiert, und ungültige Zeilen werden in eine neue Datei ausgegeben, die Sie später importieren können." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Inhalt im Browser anzeigen DocType: DocType,Search Fields,Suchfelder DocType: System Settings,OTP Issuer Name,Name des OTP-Emittenten @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Kein Dokument ausgewählt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Soll DocType: Event,Event,Ereignis -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Standardfeld kann nicht gelöscht werden. Sie können es aber verbergen, wenn Sie wollen." DocType: Top Bar Item,For top bar,Für die Kopfleiste apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link @@ -789,35 +792,34 @@ DocType: Workflow State,minus,Minus DocType: S3 Backup Settings,Bucket,Löffel apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Server-Fehler: Bitte die Serverprotokolle überprüfen oder den technischen Support kontaktieren. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Willkommens-E-Mail versenden -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Lassen Sie uns das System für die erste Nutzung vorbereiten. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Lassen Sie uns das System für die erste Nutzung vorbereiten. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Hervorgehoben apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Bereits registriert DocType: System Settings,Float Precision,Wechselkurs-Genauigkeit apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Kann nur vom Administrator bearbeitet werden -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Dateiname +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Dateiname DocType: DocType,Editable Grid,Editierbares Raster DocType: Property Setter,Property Setter,Einstellprogramm für Eigenschaften DocType: Web Form,Allow Print,Drucken erlauben apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Keine Apps installiert apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Feld als Pflichtfeld markieren DocType: Communication,Clicked,Angeklickt -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} DocType: User,Google User ID,Google-Nutzer-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,in Sendewarteschlange DocType: DocType,Track Seen,Spur gesehen apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,"Diese Methode kann nur verwendet werden, um einen Kommentar zu erstellen" DocType: Kanban Board Column,orange,Orange -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Kein(e) {0} gefunden -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Benutzerdefinierte Formulare hinzufügen +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Kein(e) {0} gefunden +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Benutzerdefinierte Formulare hinzufügen apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,Dieses Dokument eingereicht apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Das System bietet viele vordefinierte Rollen. Es können neue Rollen hinzugefügt werden, um feinere Berechtigungen festzulegen." DocType: Communication,CC,CC DocType: Country,Geo,Geo -DocType: Domain Settings,Domains,Domainen +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Domainen DocType: Blog Category,Blog Category,Blog-Kategorie apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Kann nicht zugeordnet werden, da folgende Bedingung nicht erfüllt ist:" -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Rollen-HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Wählen Sie eine Marke Bild zuerst. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktiv @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Blau apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,Alle Anpassungen werden entfernt. Bitte bestätigen. DocType: Page,Page HTML,HTML-Seite -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,"Weitere Knoten können nur unter Knoten vom Typ ""Gruppe"" erstellt werden" +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,"Weitere Knoten können nur unter Knoten vom Typ ""Gruppe"" erstellt werden" DocType: SMS Parameter,Header,Kopfzeile -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Unbekannte Spalte: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Unbekannte Spalte: {0} DocType: Email Alert Recipient,Email By Role,E-Mail nach Rollen apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Benutzer in der Rolle {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},installiere App {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Repräsentiert einen Nutzer im Sy DocType: Communication,Label,Bezeichnung apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde geschlossen." DocType: User,Modules Access,Modulzugriff -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Bitte schließen Sie dieses Fenster +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Bitte schließen Sie dieses Fenster DocType: Print Format,Print Format Type,Druckformattyp DocType: Newsletter,A Lead with this Email Address should exist,Ein Lead mit dieser E-Mail-Adresse sollte vorhanden sein apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Quellanwendungen für das Internet öffnen DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","Bezeichnung eines ""Google Web Font"" hinzufügen, z. B. ""Open Sans""" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Zeitüberschreitung der Anfrage +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Aktivieren / Deaktivieren von Domänen DocType: Role Permission for Page and Report,Allow Roles,Rollen erlauben DocType: DocType,Hide Toolbar,Werkzeugleiste ausblenden DocType: User,Last Active,Zuletzt aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP-Einstellungen für ausgehende E-Mails -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Import fehlgeschlagen apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Ihr Passwort wurde aktualisiert. Hier ist Ihr neues Passwort DocType: Email Account,Auto Reply Message,Automatische Rückantwort DocType: Feedback Trigger,Condition,Zustand -apps/frappe/frappe/utils/data.py +564,{0} hours ago,vor {0} Stunden -apps/frappe/frappe/utils/data.py +574,1 month ago,vor 1 Monat +apps/frappe/frappe/utils/data.py +576,{0} hours ago,vor {0} Stunden +apps/frappe/frappe/utils/data.py +586,1 month ago,vor 1 Monat DocType: Contact,User ID,Benutzer-ID DocType: Communication,Sent,Gesendet DocType: Address,Kerala,Kerala @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Ihr Abonnement wird morgen auslaufen. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Gespeichert! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,{0} ist keine gültige Hex-Farbe apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gnädige Frau apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualisiert {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Vorlage DocType: DocType,User Cannot Create,Kann nicht von einem Benutzer erstellt werden apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Ordner {0} existiert nicht -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,Dropbox Zugriff genehmigt wird! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,Dropbox Zugriff genehmigt wird! DocType: Customize Form,Enter Form Type,Formulartyp eingeben +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Fehlender Parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Keine Datensätze markiert. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Feld entfernen DocType: User,Send Password Update Notification,Mitteilung über Passwort-Aktualisierung senden @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Grün DocType: Custom DocPerm,Additional Permissions,Zusätzliche Berechtigungen DocType: Email Account,Always use Account's Email Address as Sender,E-Mail-Adresse des Benutzers als Absender verwenden apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Anmelden um Kommentieren zu können -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Eingabe von Daten unterhalb dieser Linie beginnen +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Eingabe von Daten unterhalb dieser Linie beginnen apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},Werte von {0} geändert DocType: Workflow State,retweet,Erneut tweeten apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Anpassen... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Deaktiviert DocType: Workflow State,eye-close,geschlossenen Auges DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth-Provider-Einstellungen -apps/frappe/frappe/config/setup.py +257,Applications,Anwendungen +apps/frappe/frappe/config/setup.py +264,Applications,Anwendungen apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Diesen Fall melden DocType: Custom Script,Adds a custom script (client or server) to a DocType,Fügt ein benutzerdefiniertes Skript (Client oder Server) zu einem DocType hinzu DocType: Address,City/Town,Ort/ Wohnort @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Ist Ihre Unternehmensadresse apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Zeile bearbeiten DocType: Workflow Action,Workflow Action Master,Stammdaten zu Workflow-Aktionen DocType: Custom Field,Field Type,Feldtyp -apps/frappe/frappe/utils/data.py +489,only.,nur. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,OTP-Geheimnis kann nur vom Administrator zurückgesetzt werden. +apps/frappe/frappe/utils/data.py +494,only.,nur. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,OTP-Geheimnis kann nur vom Administrator zurückgesetzt werden. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,"Vermeiden Jahren, die mit Ihnen verbunden sind." DocType: GSuite Templates,GSuite Templates,GSuite Vorlagen -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,absteigend apps/frappe/frappe/utils/goal.py +109,Goal,Ziel apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,Ungültiger E-Mail-Server. Bitte Angaben korrigieren und erneut versuchen. DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,Film apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Keine Berechtigung zum Lesen {0} apps/frappe/frappe/config/desktop.py +8,Tools,Werkzeuge apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Vermeiden Sie den letzten Jahren. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Mehrere Rootknoten sind nicht zulässig. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Mehrere Rootknoten sind nicht zulässig. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Wenn aktiviert, werden die Benutzer jedes Mal benachrichtigt, wenn sie sich anmelden. Wenn nicht aktiviert, werden die Benutzer nur einmal benachrichtigt." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Ungültige {0} Bedingung +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Ungültige {0} Bedingung DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Wenn diese Option aktiviert, werden die Nutzer nicht den Zugriff bestätigen Dialog zu sehen." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID-Feld muss zur Bearbeitung der Werte in Berichten angegeben werden. Bitte das ID-Feld aus der Spaltenauswahl auswählen. apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Kommentare apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Bestätigen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Alles schließen @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Nutzer-Berechtigungen setzen DocType: Email Account,Email Account Name,E-Mail-Konten-Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Dokumententypen auswählen -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,Bei der Erstellung von Dropbox-Zugriffstoken ist etwas schiefgegangen. Bitte überprüfen Sie das Fehlerprotokoll für weitere Details. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,Bei der Erstellung von Dropbox-Zugriffstoken ist etwas schiefgegangen. Bitte überprüfen Sie das Fehlerprotokoll für weitere Details. DocType: File,old_parent,Altes übergeordnetes Element apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Newsletter an Kontakte und Leads DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","z. B. ""Support"", ""Vertrieb"", ""Jerry Yang""" @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook-Nutzer-ID DocType: Workflow State,fast-forward,Schnellvorlauf DocType: Communication,Communication,Kommunikation apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.",Zum Auswählen Spalten markieren. Ziehen um eine Bestellung zu platzieren. -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Dies ist eine permanente Einstellung und kann nicht rückgängig gemacht werden. Weiter? DocType: Event,Every Day,Täglich DocType: LDAP Settings,Password for Base DN,Kennwort für Basis-DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabellenfeld -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Spalten basierend auf +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Spalten basierend auf apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,"Geben Sie die Schlüssel ein, um die Integration in Google GSuite zu ermöglichen" DocType: Workflow State,move,Bewegen -apps/frappe/frappe/model/document.py +1223,Action Failed,Aktion fehlgeschlagen +apps/frappe/frappe/model/document.py +1229,Action Failed,Aktion fehlgeschlagen apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,Für Benutzer -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Kontenplan +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Kontenplan DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,Sie haben noch {0} Tage in Ihrem Abonnement +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Sie haben noch {0} Tage in Ihrem Abonnement apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Ausgehende E-Mail-Konto nicht korrekt apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,vorläufig außer Betrieb apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} installiert -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Bitte setzen Sie E-Mail-Adresse +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Bitte setzen Sie E-Mail-Adresse DocType: System Settings,Date and Number Format,Datums- und Zahlenformat apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Maximale Anhanggröße ist {0} MB -apps/frappe/frappe/model/document.py +1038,one of,eine(r/s) von -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Bitte wählen Sie die zu kopierende Datei aus +apps/frappe/frappe/model/document.py +1044,one of,eine(r/s) von apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,"Einen Moment bitte, Überprüfung läuft." apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Schlagwörter anzeigen DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerberechtigung für einen DocType für einen Benutzer definiert ist, werden alle Dokumente, deren Wert der Link leer ist, diesem Benutzer nicht angezeigt" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Aktionen DocType: Workflow State,align-justify,Blocksatz DocType: User,Middle Name (Optional),Weiterer Vorname (optional) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Nicht zulässig -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Folgende Felder haben fehlende Werte: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,"Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Folgende Felder haben fehlende Werte: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,"Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Keine Ergebnisse DocType: System Settings,Security,Sicherheit apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Geplant zum Versand an {0} Empfänger +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Schnitt apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},umbenannt von {0} {1} DocType: Currency,**Currency** Master,**Währungs**-Stammdaten DocType: Email Account,No of emails remaining to be synced,Keine E-Mails verbleibenden werden synchronisiert -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,läd hoch +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,läd hoch apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Bitte das Dokument vor der Zuweisung abspeichern apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,"Klicken Sie hier, um Bugs und Vorschläge zu veröffentlichen" DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adresse und andere rechtliche Informationen, die Sie in die Fußzeile setzen können." @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,vor {0} Minute(n) DocType: Kanban Board Column,lightblue,hellblau apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Gleiches Feld wird mehrmals eingegeben -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Wählen Sie Spalten apps/frappe/frappe/templates/includes/list/filters.html +19,clear,bereinigen apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Täglich wiederkehrende Veranstaltungen sollten am selben Tag enden. DocType: Communication,User Tags,Schlagworte zum Benutzer @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Anmelden DocType: Web Page,Main Section,Hauptbereich DocType: Page,Icon,Symbol apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,Um Werte zwischen 5 und 10 zu filtern -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Benutzerberechtigungsmanager apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,TT/MM/JJJJ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite-Skript-Test @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Copyright apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gehen DocType: OAuth Authorization Code,Invalid,Ungültig DocType: ToDo,Due Date,Fälligkeitsdatum -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Quartalstag +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Quartalstag DocType: Social Login Keys,Google Client Secret,Google-Passwort DocType: Website Settings,Hide Footer Signup,Fußzeilen-Anmeldung ausblenden apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,brach die Arbeit an diesem Dokument ab apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Python-Datei in den selben Ordner schreiben, in dem dieser Inhalt gespeichert wird, und Spalte und Ergebnis zurückgeben." DocType: DocType,Sort Field,Sortierfeld DocType: Razorpay Settings,Razorpay Settings,Razorpay Einstellungen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Filter bearbeiten -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Filter bearbeiten +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Weitere hinzufügen DocType: System Settings,Session Expiry Mobile,Sitzung verfällt für mobil apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Suchergebnisse für apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Bitte zum Herunterladen wählen: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Wenn {0} erlaubt ist DocType: Custom DocPerm,If user is the owner,Wenn der Benutzer der Inhaber ist +apps/frappe/frappe/config/integrations.py +88,Maps,Karten ,Activity,Aktivität DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hilfe: Um eine Verknüpfung mit einem anderen Datensatz im System zu erstellen, bitte ""#Formular/Anmerkung/[Anmerkungsname]"" als Verknüpfungs-URL verwenden (kein ""http://""!)." DocType: User Permission,Allow,Zulassen apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Wiederholte Worte und Buchstaben sollten vermieden werden DocType: Communication,Delayed,Verzögert -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Datensicherungen herunterladen +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Datensicherungen herunterladen apps/frappe/frappe/www/login.html +86,Sign up,Anmeldung DocType: Test Runner,Output,Ausgabe DocType: Email Alert,Set Property After Alert,Setzen Sie die Eigenschaft nach Alert -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Felder zu Formularen hinzufügen +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Felder zu Formularen hinzufügen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,Sieht aus wie etwas ist falsch mit dieser Website Paypal-Konfiguration. DocType: File,rgt,rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Dateityp DocType: Workflow State,leaf,Blatt DocType: Portal Menu Item,Portal Menu Item,Portal Menüpunkt DocType: Contact Us Settings,Email ID,E-Mail-ID +DocType: Activity Log,Keep track of all update feeds,Verfolgen Sie alle Update-Feeds DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Wenn Anwenden von Benutzerberechtigungen auf Bericht DocType geprüft wird, aber keine Benutzerberechtigungen für Bericht für einen Benutzer definiert sind, werden alle Berichte dem Benutzer angezeigt" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,Protip: In Reference: {{ reference_doctype }} {{ reference_name }}
senden Dokumentverweis
apps/frappe/frappe/modules/utils.py +196,App not found,App nicht gefunden
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kann {0} nicht gegen ein Kind Dokument erstellen: {1}
@@ -1899,7 +1903,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Passiv
DocType: Contact,Accounts Manager,Kontenmanager
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ihre Zahlung wird storniert.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Dateityp auswählen
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Dateityp auswählen
DocType: Help Article,Knowledge Base Editor,Wissensdatenbank Bearbeiter/-in
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Seite nicht gefunden
DocType: DocField,Precision,Genauigkeit
@@ -1926,12 +1930,12 @@ DocType: Property Setter,Property Type,Eigenschaftstyp
DocType: Workflow State,screenshot,Screenshot
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern.
DocType: System Settings,Background Workers,Hintergrundaktivitäten
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Feldname {0} im Konflikt mit Meta-Objekt
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Feldname {0} im Konflikt mit Meta-Objekt
DocType: Deleted Document,Data,Daten
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentenstatus
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Sie haben {0} von {1} gemacht
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth-Autorisierungscode
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Import nicht erlaubt
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Import nicht erlaubt
DocType: Social Login Keys,Frappe Client Secret,Frappe Client-Geheimnis
DocType: Deleted Document,Deleted DocType,Gelöschtes DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Berechtigungsebenen
@@ -1939,11 +1943,11 @@ DocType: Workflow State,Warning,Warnung
DocType: Data Migration Run,Percent Complete,Prozent abgeschlossen
DocType: Tag Category,Tag Category,Tag Kategorie
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Artikel {0} wird ignoriert, weil eine Gruppe mit dem gleichen Namen existiert!"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Hilfe
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Hilfe
DocType: User,Login Before,Anmelden vor
DocType: Web Page,Insert Style,Stil einfügen
-apps/frappe/frappe/config/setup.py +262,Application Installer,Einrichtungsprogramm für Anwendungen
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Neuer Berichtsname
+apps/frappe/frappe/config/setup.py +269,Application Installer,Einrichtungsprogramm für Anwendungen
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Neuer Berichtsname
DocType: Workflow State,info-sign,Info-Zeichen
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Wert für {0} kann keine Liste
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet"
@@ -1956,6 +1960,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Rollenberechtigungen
DocType: Help Article,Intermediate,Mittlere
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Abgebrochenes Dokument als Entwurf wiederhergestellt
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist"
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kann Lesen
DocType: Custom Role,Response,Antwort
DocType: DocField,Geolocation,Geolokalisierung
@@ -1979,8 +1984,8 @@ DocType: OAuth Client,Default Redirect URI,Standard Weiterleitungs URI
DocType: Email Alert,Recipients,Empfänger
DocType: System Settings,Choose authentication method to be used by all users,"Wählen Sie die Authentifizierungsmethode, die von allen Benutzern verwendet werden soll"
DocType: Workflow State,ok-sign,OK-Zeichen
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Gelöschte Dokumente
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Gelöschte Dokumente
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Desktop Icon existiert bereits
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplizieren
DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und senden
@@ -1988,14 +1993,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Andamanen und Nikobaren
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,"Bitte angeben, welches Wertefeld überprüft werden muss"
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Übergeordnet"" bezeichnet die übergeordnete Tabelle, in der diese Zeile hinzugefügt werden muss"
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Übergeordnet"" bezeichnet die übergeordnete Tabelle, in der diese Zeile hinzugefügt werden muss"
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kann diese E-Mail nicht senden. Sie haben das Sendelimit von {0} E-Mails für diesen Tag überschritten.
DocType: Website Theme,Apply Style,Stil anwenden
DocType: Feedback Request,Feedback Rating,Feedback-Bewertung
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Freigegeben für
DocType: Help Category,Help Articles,Hilfeartikel
,Modules Setup,Moduleinstellungen
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Typ:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Typ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ihre Zahlung ist fehlgeschlagen.
DocType: Communication,Unshared,ungeteilten
DocType: Address,Karnataka,Karnataka
@@ -2004,12 +2009,11 @@ DocType: User,Location,Ort
,Permitted Documents For User,Zulässige Dokumente für Benutzer
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Sie müssen die Berechtigung zum ""Freigeben"" haben"
DocType: Communication,Assignment Completed,Auftrag abgeschlossen
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Massen-Bearbeitung {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Massen-Bearbeitung {0}
DocType: Email Alert Recipient,Email Alert Recipient,Empfänger der E-Mail-Benachrichtigung
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Nicht aktiv
DocType: About Us Settings,Settings for the About Us Page,"Einstellungen ""Über uns"""
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Stripe Payment Gateway Einstellungen
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Typ des Dokumentes zum Herunterladen auswählen
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,z.B. pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Feld benutzen um Datensätze zu filtern
DocType: DocType,View Settings,Einstellungen anzeigen
@@ -2023,7 +2027,7 @@ DocType: OAuth Client,App Client ID,App Client-ID
DocType: Kanban Board,Kanban Board Name,Kanban-Tafel Name
DocType: Email Alert Recipient,"Expression, Optional","Ausdruck, Optional"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopiere und füge diesen Code in eine leere Code.gs in deinem Projekt auf script.google.com ein
-apps/frappe/frappe/email/queue.py +504,This email was sent to {0},Diese E-Mail wurde gesendet an {0}
+apps/frappe/frappe/email/queue.py +504,This email was sent to {0},Diese E-Mail wurde an {0} versandt
DocType: System Settings,Hide footer in auto email reports,Fußzeile in automatischen E-Mail-Berichten ausblenden
DocType: DocField,Remember Last Selected Value,"Denken Sie daran, Zuletzt gewählte Wert"
DocType: Email Account,Check this to pull emails from your mailbox,"Hier aktivieren, um E-Mails aus Ihrem Postfach abzurufen"
@@ -2032,6 +2036,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Aufgeho
DocType: Unhandled Email,Unhandled Email,Nicht verarbeitete E-Mail
DocType: Event,Monday,Montag
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Nutzen Sie mehr Tastaturmuster
+DocType: Data Import,Don't create new records,Erstellen Sie keine neuen Datensätze
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Schachtelfehler. Bitte den Administrator kontaktieren.
DocType: Workflow State,envelope,Umschlag
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Option 2
@@ -2042,41 +2047,41 @@ DocType: Website Settings,Brand Image,Markenzeichen
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Einrichten der oberen Navigationsleiste, der Fußzeile und des Logos"
DocType: Web Form Field,Max Value,Max Value
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3}
DocType: Contact,All,Alle
DocType: Email Queue,Recipient,Empfänger
DocType: Communication,Has Attachment,Hat Anhang
DocType: Address,Sales User,Nutzer Vertrieb
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Drag & Drop-Werkzeug zum Erstellen und Anpassen von Druckformaten
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Drag & Drop-Werkzeug zum Erstellen und Anpassen von Druckformaten
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Erweitern
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Menge
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Dieser Abfragestil wird eingestellt
DocType: Email Alert,Trigger Method,Trigger-Methode
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Betreiber muss einer von {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Betreiber muss einer von {0}
DocType: Dropbox Settings,Dropbox Access Token,Dropbox-Zugriffs-Token
DocType: Workflow State,align-right,rechtsbündig
DocType: Auto Email Report,Email To,E-Mail an
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Ordner {0} ist nicht leer
DocType: Page,Roles,Rollen
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fehler: Wert fehlt für {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Feld {0} ist nicht auswählbar.
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Feld {0} ist nicht auswählbar.
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Sitzungsende
DocType: Workflow State,ban-circle,Bannkreis
DocType: Email Flag Queue,Unread,Ungelesen
DocType: Bulk Update,Desk,Schreibtisch
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Filter muss ein Tupel oder eine Liste sein (in einer Liste)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Filter muss ein Tupel oder eine Liste sein (in einer Liste)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,"SELECT-Abfrage schreiben. Bitte beachten, dass das Ergebnis nicht aufgeteilt wird (alle Daten werden in einem Rutsch gesendet)."
DocType: Email Account,Attachment Limit (MB),Beschränkung der Größe des Anhangs (MB)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Einstellungen Auto E-Mail
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Einstellungen Auto E-Mail
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Strg + Ab
-apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Dies ist ein Top-10 gemeinsames Passwort.
+apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Dies ist ein eines der 10 meist genutzten Passwörter.
DocType: User,User Defaults,Benutzer-Voreinstellungen
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Neuen Eintrag erstellen
DocType: Workflow State,chevron-down,Winkel nach unten
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)
DocType: Async Task,Traceback,Zurück verfolgen
DocType: Currency,Smallest Currency Fraction Value,Kleinste Währungsanteilwert
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Zuweisen zu
@@ -2096,7 +2101,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Migrations-ID-Feld
DocType: Communication,Comment Type,Kommentarart
DocType: OAuth Client,OAuth Client,OAuth-Client
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Benutzer
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Benutzer
DocType: Communication,Timeline field Name,Timeline Feld Name
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Berichtstyp
@@ -2106,7 +2111,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Zugangsdaten eingeben um auf Facebook, Google und GitHub zuzugreifen"
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Das Dateiformat für {0} kann nicht gelesen werden
DocType: Auto Email Report,Filter Data,Filterdaten
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Eine Markierung hinzufügen
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Bitte zuerst eine Datei anhängen.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator",Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,falsches Konto für eingehende E-Mails
@@ -2129,7 +2133,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Als
DocType: Website Theme,Link Color,Farbe der Verknüpfung
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Benutzer {0} kann nicht deaktiviert werden
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Sehr geehrter System Manager,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Ihr Land
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Ihr Land
DocType: Event,Sunday,Sonntag
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,In der Rasteransicht
DocType: Address Template,Template,Vorlage
@@ -2154,7 +2158,7 @@ DocType: DocField,Table,Tabelle
DocType: File,File Size,Dateigröße
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Anmeldung erforderlich, um dieses Formular zu übermitteln"
DocType: User,Background Image,Hintergrundbild
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency","Bitte Land, Zeitzone und Währung auswählen"
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency","Bitte Land, Zeitzone und Währung auswählen"
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Zwischen
DocType: Async Task,Queued,Warteschlange
@@ -2168,12 +2172,12 @@ DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,App Zugriffsschlüssel
DocType: OAuth Bearer Token,Access Token,Zugriffstoken
DocType: About Us Settings,Org History,Unternehmensgeschichte
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Sicherungsgröße:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Sicherungsgröße:
DocType: Workflow,Workflow Name,Workflow-Name
DocType: DocShare,Notify by Email,Per E-Mail benachrichtigen
DocType: DocField,In Standard Filter,Im Standard-Filter
DocType: Web Form,Allow Edit,Bearbeitung zulassen
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Einfügen
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Einfügen
DocType: Webhook,Doc Events,Doc Veranstaltungen
DocType: Auto Email Report,Based on Permissions For User,Basierend auf Benutzerberechtigungen
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Zustand des aufgehobenen Dokumentes kann nicht geändert werden. Übergangszeile {0}
@@ -2186,10 +2190,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Dahinter einfügen Feld '{0}' in benutzerdefinierten Feld erwähnt '{1}', mit dem Label '{2}' existiert nicht"
DocType: Workflow State,signal,Signal
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Hat Anhänge
DocType: DocType,Show Print First,Ausdruck zuerst anzeigen
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"""Strg + Enter"" um zu Posten"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},{0} neu erstellen
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Neues E-Mail-Konto
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Neues E-Mail-Konto
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument wiederhergestellt
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Sprache auswählen...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Sie können 'Optionen' nicht für das Feld {0} setzen
@@ -2210,13 +2215,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,In den Papierkorb verschieben
DocType: Web Form,Web Form Fields,Web-Formularfelder
DocType: Website Theme,Top Bar Text Color,Kopfleisten-Textfarbe
+DocType: Data Import,Amended From,Abgeändert von
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Achtung: {0} in keiner verwandten Tabelle von {1} gefunden
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Dieses Dokument ist derzeit für die Ausführung der Warteschlange. Bitte versuche es erneut
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Dieses Dokument ist derzeit für die Ausführung der Warteschlange. Bitte versuche es erneut
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Datei '{0}' nicht gefunden
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Aufteilung entfernen
DocType: User,Change Password,Kennwort ändern
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Ungültige E-Mail: {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Hallo!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Hallo!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Das Ende des Ereignisses muss nach dem Ereignis-Anfang liegen
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dadurch wird {0} von allen anderen Geräten abgemeldet
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten
@@ -2225,26 +2231,27 @@ DocType: DocField,Allow Bulk Edit,Massenbearbeitung zulassen
DocType: Blog Post,Blog Post,Blog-Eintrag
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Erweiterte Suche
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,"Sie sind nicht berechtigt, den Newsletter zu sehen."
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Level 0 ist für Dokumentebene Berechtigungen, \ höhere Ebenen für Feldebene Berechtigungen."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Sortieren nach
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,"Das Formular kann nicht gespeichert werden, da der Datenimport gerade ausgeführt wird."
DocType: Workflow,States,Zustände
DocType: Email Alert,Attach Print,Ausdruck anhängen
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Empfohlener Benutzername: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,Tag
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,Tag
,Modules,Module
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Desktopsymbole anpassen
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,Zahlungserfolg
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Nein {0} mail
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Fehler beim Hochladen von Dateien
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Nein {0} mail
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Fehler beim Hochladen von Dateien
DocType: OAuth Bearer Token,Revoked,Gesperrte
DocType: Web Page,Sidebar and Comments,Sidebar und Kommentare
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wenn ein Dokument nach dem Stornieren geändert und abgespeichert wird, bekommt es eine neue Versionsnummer der alten Nummer."
DocType: Stripe Settings,Publishable Key,Veröffentlichender Schlüssel
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Starten Sie den Import
DocType: Workflow State,circle-arrow-left,Kreis-Pfeil-nach-links
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Redis Cache-Server läuft nicht. Bitte Administrator/Technischen Support kontaktieren
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Name
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Name
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Einen neuen Datensatz erstellen
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Suchen
DocType: Currency,Fraction,Teil
@@ -2269,13 +2276,14 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Artikel aufrufen
DocType: Contact,Image,Bild
DocType: Workflow State,remove-sign,Entfernen-Zeichen
+DocType: Domain Settings,Domains HTML,Domänen HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Geben Sie etwas in das Suchfeld zu suchen
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Workflows für Formulare definieren
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Workflows für Formulare definieren
DocType: Address,Other,Sonstige(s)
DocType: S3 Backup Settings,Access Key ID,Zugriffsschlüssel-ID
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Neues Format starten
DocType: Workflow State,font,Schriftart
-apps/frappe/frappe/utils/password_strength.py +171,This is a top-100 common password.,Dies ist ein Top-100 gemeinsames Passwort.
+apps/frappe/frappe/utils/password_strength.py +171,This is a top-100 common password.,Dies ist ein eines der 100 meist genutzten Passwörter.
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +30,Please enable pop-ups,Bitte Pop-ups aktivieren
DocType: Contact,Mobile No,Mobilfunknummer
DocType: Communication,Text Content,Text Inhalt
@@ -2283,6 +2291,7 @@ DocType: Customize Form Field,Is Custom Field,Ist benutzerdefiniertes Feld
DocType: Workflow,"If checked, all other workflows become inactive.","Wenn aktiviert, werden alle anderen Workflows inaktiv."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]:[Field Type]/[Options]:[Width]
DocType: Workflow State,folder-close,geschlossener Ordner
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Bericht:
DocType: Print Settings,Print taxes with zero amount,Steuern mit null Betrag drucken
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} darf nicht umbenannt werden
DocType: Custom Script,Custom Script,Benutzerdefiniertes Skript
@@ -2294,32 +2303,35 @@ DocType: Email Flag Queue,Action,Aktion
DocType: GSuite Settings,Script URL,Skript-URL
apps/frappe/frappe/www/update-password.html +111,Please enter the password,Bitte Passwort eingeben
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Das Drucken von abgebrochen Dokumenten ist nicht erlaubt.
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Sie sind nicht berechtigt Spalten zu erstellen
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Info:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Sie sind nicht berechtigt Spalten zu erstellen
+DocType: Data Import,If you don't want to create any new records while updating the older records.,Wenn Sie beim Aktualisieren der älteren Datensätze keine neuen Datensätze erstellen möchten.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info:
DocType: Custom Field,Permission Level,Berechtigungsebene
DocType: User,Send Notifications for Transactions I Follow,"Benachrichtigungen für Transaktionen, denen Sie folgen, senden"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben"""
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben"""
+DocType: Google Maps,Client Key,Clientschlüssel
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden?
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kann nicht löschen oder zu stornieren , weil {0} {1} mit verknüpft ist {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Danke
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Speichere
DocType: Print Settings,Print Style Preview,Druckstil-Vorschau
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Ordner
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,"Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren"
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,E-Mails
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-Mails
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Bitte wählen Sie Dokumenttyp zuerst
DocType: About Us Settings,About Us Settings,"Einstellungen zu ""Über uns"""
DocType: Website Settings,Website Theme,Webseiten-Thema
DocType: DocField,In List View,In der Listenansicht
DocType: Email Account,Use TLS,TLS verwenden
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ungültige Benutzerkennung oder ungültiges Passwort
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Benutzerdefiniertes Javascript zum Formular hinzufügen
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Lf. Nr.
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Vorlage herunterladen
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Benutzerdefiniertes Javascript zum Formular hinzufügen
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Lf. Nr.
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto
,Role Permissions Manager,Rollenberechtigungen-Manager
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Name des neuen Druckformats
DocType: Data Migration Run,Pull Insert,Zugeinsatz
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,Anlage beseitigen
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Zwingend erforderlich:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Zwingend erforderlich:
,User Permissions Manager,Benutzerrechte-Manager
DocType: Property Setter,New value to be set,Neuer Wert muss gesetzt werden
DocType: Email Alert,Days Before or After,Tage vorher oder nachher
@@ -2329,7 +2341,7 @@ DocType: Website Settings,HTML Header & Robots,HTML-Header und Robots
DocType: User Permission,User Permission,Benutzerberechtigung
apps/frappe/frappe/config/website.py +32,Blog,Blog
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP nicht installiert
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Mit Daten herunterladen
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Mit Daten herunterladen
DocType: Workflow State,hand-right,Pfeil-nach-rechts
DocType: Website Settings,Subdomain,Unterdomäne
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Einstellungen für OAuth Provider
@@ -2345,21 +2357,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Bitte wählen Sie eine Bewertung
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,OTP-Geheimnis zurücksetzen
DocType: Email Account,Notify if unreplied for (in mins),"Benachrichtigen, wenn unbeantwortet für (in Minuten)"
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,vor 2 Tagen
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,vor 2 Tagen
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blog-Einträge kategorisieren
DocType: Workflow State,Time,Zeit
DocType: DocField,Attach,Anhängen
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Feedback Anfrage nur dann senden, wenn mindestens eine Kommunikation ist für das Dokument vorhanden ist."
DocType: Custom Role,Permission Rules,Berechtigungsregeln
DocType: GSuite Settings,GSuite Settings,GSuite Einstellungen
DocType: Address,Links,Verknüpfungen
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Bitte wählen Sie den Dokumententyp.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Wert fehlt für
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Unterpunkt hinzufügen
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden.
DocType: GSuite Templates,Template Name,Vorlagenname
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,neuer Dokumententyp
DocType: Custom DocPerm,Read,Lesen
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto ein
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rollengenehmigung Seite und Bericht
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Wert anordnen
@@ -2367,18 +2381,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Altes Passwort
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Beiträge von {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Um Spalten zu formatieren, geben Sie die Spaltenbeschriftungen in der Abfrage ein."
DocType: Has Domain,Has Domain,Hat Domain
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Verstecken
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Verstecken
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Sie haben noch kein Konto? Konto erstellen
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar"
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,ID-Feld kann nicht entfernt werden
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar"
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,Link DocType
+DocType: Activity Log,Link DocType,Link DocType
DocType: Social Login Keys,Social Login Keys,Zugangsdaten für Anmeldungen an sozialen Netzwerken
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Alle Anpassungen entfernen?
DocType: Website Slideshow,Slideshow Name,Name der Diaschau
DocType: Address,Andhra Pradesh,Andhra Pradesh
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Stornierung
DocType: DocType,Allow Rename,Umbenennen zulassen
-DocType: Authentication Log,Full Name,Vollständiger Name
+DocType: Activity Log,Full Name,Vollständiger Name
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Untertabellen werden in anderen Dokumententypen als Verzeichnis angezeigt.
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die Seite, die Sie suchen fehlt. Dies könnte sein, weil es bewegt wird, oder es ist ein Tippfehler in der Verbindung."
apps/frappe/frappe/www/404.html +25,Error Code: {0},Fehlercode: {0}
@@ -2408,18 +2423,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Bitte sowohl die E-Mail-Adresse als auch die Nachricht eingeben, damit wir antworten können. Danke!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Konnte keine Verbindung zum Postausgangsserver herstellen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,benutzerdefinierte Spalte
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,benutzerdefinierte Spalte
DocType: Workflow State,resize-full,anpassen-voll
DocType: Workflow State,off,aus
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Bericht {0} ist deaktiviert
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Empfohlen für das Einfügen neuer Datensätze.
-DocType: Async Task,Core,Kern
+DocType: Activity Log,Core,Kern
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Festlegen von Berechtigungen
DocType: DocField,Set non-standard precision for a Float or Currency field,Keine Standard-Genauigkeit für ein Float- oder Währungsfeld einstellen
DocType: Email Account,Ignore attachments over this size,Anhänge mit einer Größe über diesem Wert ignorieren
DocType: Address,Preferred Billing Address,Bevorzugte Rechnungsadresse
apps/frappe/frappe/config/integrations.py +68,External Documents,Externe Dokumente
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} Jahr (en)
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Zu viel Text für eine Anfrage. Bitte kleinere Anfragen senden
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Werte geändert
DocType: Workflow State,arrow-up,Pfeil-nach-oben
@@ -2427,10 +2440,9 @@ DocType: OAuth Bearer Token,Expires In,Verfällt in
DocType: DocField,Allow on Submit,Beim Übertragen zulassen
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Ausnahmetyp
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Spalten auswählen
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Spalten auswählen
DocType: Web Page,Add code as <script>,"Code als ""script"" hinzufügen"
DocType: Webhook,Headers,Headers
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Typ auswählen
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34,Please enter values for App Access Key and App Secret Key,Bitte geben Sie die Werte für App Access Key und App Secret Key
DocType: Web Form,Accept Payment,Zahlung akzeptieren
apps/frappe/frappe/config/core.py +62,A log of request errors,Ein Protokoll der Anfragefehler
@@ -2438,7 +2450,7 @@ DocType: Report,Letter Head,Briefkopf
DocType: DocType,Quick Entry,Schnelleingabe
DocType: Web Form,Button Label,Tastenbeschriftung
DocType: Website Theme,UPPERCASE,GROSSBUCHSTABEN
-apps/frappe/frappe/public/js/frappe/list/list_view.js +815,{0} items selected,{0} Elemente ausgewählt
+apps/frappe/frappe/public/js/frappe/list/list_view.js +697,{0} items selected,{0} Elemente ausgewählt
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +16,Suspend Sending,Suspend Senden
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,"Zum Hinzufügen, Elemente aus der Seitenleiste aufnehmen. Zum Zurücklegen auf den Papierkorb ziehen."
DocType: Workflow State,resize-small,anpassen-klein
@@ -2464,21 +2476,21 @@ apps/frappe/frappe/modules/utils.py +72,Customizations exported to {0},"Anpassun
DocType: Workflow State,Edit,Bearbeiten
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Berechtigungen können über Setup > Rollenberechtigungs-Manager verwaltet werden
DocType: Contact Us Settings,Pincode,Postleitzahl (PLZ)
-apps/frappe/frappe/core/page/data_import_tool/importer.py +85,Please make sure that there are no empty columns in the file.,"Bitte sicher stellen, dass es keine leeren Spalten in der Datei gibt."
+apps/frappe/frappe/core/doctype/data_import/importer.py +102,Please make sure that there are no empty columns in the file.,"Bitte sicher stellen, dass es keine leeren Spalten in der Datei gibt."
apps/frappe/frappe/utils/oauth.py +233,Please ensure that your profile has an email address,"Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat"
apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Sie haben noch nicht gespeicherte Änderungen in diesem Formular. Bitte speichern Sie diese, bevor Sie fortfahren."
DocType: Address,Telangana,Telangana
-apps/frappe/frappe/core/doctype/doctype/doctype.py +466,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein
+apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie
DocType: User,User Image,Bild des Benutzers
apps/frappe/frappe/email/queue.py +336,Emails are muted,E-Mails sind stumm geschaltet
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Strg + Auf
DocType: Website Theme,Heading Style,Gestaltung der Überschrift
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +190,A new Project with this name will be created,Ein neues Projekt mit diesem Namen wird erstellt
-apps/frappe/frappe/utils/data.py +570,1 weeks ago,vor 1 Woche
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +191,A new Project with this name will be created,Ein neues Projekt mit diesem Namen wird erstellt
+apps/frappe/frappe/utils/data.py +582,1 weeks ago,vor 1 Woche
apps/frappe/frappe/desk/page/applications/applications.py +76,You cannot install this app,Sie können diese App nicht installieren
DocType: Communication,Error,Fehler
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +105,Do not send Emails.,Keine E-Mails senden.
+DocType: Data Import,Ignore encoding errors,Ignoriere Codierungsfehler
DocType: DocField,Column Break,Spaltenumbruch
DocType: Event,Thursday,Donnerstag
apps/frappe/frappe/utils/response.py +145,You don't have permission to access this file,Keine Berechtigung für den Zugriff auf diese Datei vorhanden
@@ -2505,7 +2517,6 @@ DocType: Webhook,Webhook Request,Webhook Anfrage
apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Herausgeber
apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Fehlgeschlagen: {0} um {1}: {2}
DocType: Data Migration Mapping,Mapping Type,Kartentyp
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Wählen Pflicht
apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Durchsuchen
apps/frappe/frappe/utils/password_strength.py +35,"No need for symbols, digits, or uppercase letters.","Keine Notwendigkeit für Symbole, Ziffern oder Großbuchstaben."
DocType: DocField,Currency,Währung
@@ -2515,10 +2526,11 @@ DocType: Async Task,Running,Laufend
apps/frappe/frappe/core/doctype/user/user.js +97,Reset Password,Passwort zurücksetzen
apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Bitte Upgrade auf mehr als {0} Abonnenten hinzufügen
DocType: Workflow State,hand-left,Pfeil-nach-links
-apps/frappe/frappe/core/doctype/doctype/doctype.py +479,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein
+DocType: Data Import,If you are updating/overwriting already created records.,Wenn Sie bereits erstellte Datensätze aktualisieren / überschreiben.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +481,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein
DocType: Email Account,Use SSL,SSL verwenden
DocType: Workflow State,play-circle,Spielplatz
-apps/frappe/frappe/public/js/frappe/form/layout.js +469,"Invalid ""depends_on"" expression","Ungültiger ""depends_on"" Ausdruck"
+apps/frappe/frappe/public/js/frappe/form/layout.js +489,"Invalid ""depends_on"" expression","Ungültiger ""depends_on"" Ausdruck"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zu bearbeitendes Druckformat wählen
DocType: Address,Shipping,Versand
DocType: Workflow State,circle-arrow-down,Kreis-Pfeil-nach-unten
@@ -2530,25 +2542,23 @@ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a
DocType: Workflow State,arrow-right,Pfeil-nach-rechts
DocType: Workflow State,Workflow state represents the current state of a document.,Workflow-Zustand stellt den aktuellen Status eines Dokuments dar.
apps/frappe/frappe/utils/oauth.py +222,Token is missing,Token fehlt
-apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,"Hinweis: Wenn Sie den Seitennamen ändern, wird die vorherige URL auf diese Seite gelegt."
+apps/frappe/frappe/public/js/frappe/misc/utils.js +523,Note: Changing the Page Name will break previous URL to this page.,"Hinweis: Wenn Sie den Seitennamen ändern, wird die vorherige URL auf diese Seite gelegt."
apps/frappe/frappe/utils/file_manager.py +237,Removed {0},{0} entfernt
DocType: SMS Settings,SMS Settings,SMS-Einstellungen
DocType: Company History,Highlight,Hervorheben
DocType: OAuth Provider Settings,Force,Kraft
DocType: DocField,Fold,Falz
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +658,Ascending,Aufsteigend
apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard-Druckformat kann nicht aktualisiert werden
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Fräulein
-apps/frappe/frappe/public/js/frappe/model/model.js +559,Please specify,Bitte angeben
+apps/frappe/frappe/public/js/frappe/model/model.js +569,Please specify,Bitte angeben
DocType: Communication,Bot,Bot
DocType: Help Article,Help Article,Hilfe Artikel
DocType: Page,Page Name,Seitenname
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Hilfe: Feldeigenschaften
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +139,Importing...,Importiere ...
apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Dekomprimieren
-apps/frappe/frappe/model/document.py +1055,Incorrect value in row {0}: {1} must be {2} {3},Falscher Wert in Zeile {0}: {1} muss {2} {3} sein
+apps/frappe/frappe/model/document.py +1061,Incorrect value in row {0}: {1} must be {2} {3},Falscher Wert in Zeile {0}: {1} muss {2} {3} sein
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0}
-apps/frappe/frappe/desk/reportview.py +223,Deleting {0},Löscht {0}
+apps/frappe/frappe/desk/reportview.py +225,Deleting {0},Löscht {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Vorhandenes Format zum Bearbeiten wählen oder neues Format erstellen.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},benutzerdefiniertes Feld {0} in {1} erstellt
DocType: System Settings,Time Zone,Zeitzone
@@ -2564,16 +2574,19 @@ DocType: Workflow State,Home,Startseite
DocType: OAuth Provider Settings,Auto,Auto
DocType: System Settings,User can login using Email id or User Name,Benutzer können sich entweder mit E-Mail-Adresse oder Benutzername anmelden
DocType: Workflow State,question-sign,Fragezeichen
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +159,Insert Column Before {0},Spalte vor {0} einfügen
DocType: Email Account,Add Signature,Signatur hinzufügen
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Hat diese Unterhaltung verlassen
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Did not set,Wurde nicht übernommen
,Background Jobs,Hintergrundprozesse
DocType: ToDo,ToDo,Aufgabe
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer
DocType: DocField,No Copy,Keine Kopie
DocType: Workflow State,qrcode,QR-Code
+DocType: Data Import,Submit after importing,Nach dem Importieren einreichen
apps/frappe/frappe/www/login.html +31,Login with LDAP,Einloggen mit LDAP
DocType: Web Form,Breadcrumbs,Breadcrumbs
-apps/frappe/frappe/core/doctype/doctype/doctype.py +695,If Owner,Wenn Inhaber
+apps/frappe/frappe/core/doctype/doctype/doctype.py +697,If Owner,Wenn Inhaber
DocType: Data Migration Mapping,Push,drücken
DocType: OAuth Authorization Code,Expiration time,Ablaufzeit
DocType: Web Page,Website Sidebar,Webseite Sidebar
@@ -2589,6 +2602,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id mu
DocType: Email Alert,Print Settings,Druckeinstellungen
DocType: Page,Yes,Ja
DocType: DocType,Max Attachments,Maximale Anzahl an Anhängen
+apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Clientschlüssel ist erforderlich
DocType: Calendar View,End Date Field,Enddatum Feld
DocType: Desktop Icon,Page,Seite
apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{0} konnte in {1} nicht gefunden werden
@@ -2599,18 +2613,19 @@ apps/frappe/frappe/model/document.py +481,Value cannot be changed for {0},Wert k
DocType: Feedback Request,Is Manual,ist Handbuch
DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil stellt die Farbe der Schaltfläche dar: Erfolg - Grün, Gefahr - Rot, Kehrwert - Schwarz, Primär - Dunkelblau, Info - Hellblau, Warnung - Orange"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +159,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Kein Bericht geladen. Bitte Reportabfrage query-report/[Report Name] benutzen, um einen Bericht auszuführen."
+apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Zeilenstatus
DocType: Workflow Transition,Workflow Transition,Workflow-Übergang
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,vor {0} Monate(n)
apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Erstellt von
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +268,Dropbox Setup,Dropbox-Setup
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +271,Dropbox Setup,Dropbox-Setup
DocType: Workflow State,resize-horizontal,anpassen-horizontal
DocType: Note,Content,Inhalt
DocType: Data Migration Run,Push Insert,Einschub drücken
-apps/frappe/frappe/public/js/frappe/views/treeview.js +285,Group Node,Gruppen-Knoten
+apps/frappe/frappe/public/js/frappe/views/treeview.js +277,Group Node,Gruppen-Knoten
DocType: Communication,Notification,Mitteilung
DocType: DocType,Document,Dokument
apps/frappe/frappe/core/doctype/doctype/doctype.py +201,Series {0} already used in {1},Serie {0} bereits verwendet in {1}
-apps/frappe/frappe/core/page/data_import_tool/importer.py +238,Unsupported File Format,Nicht unterstütztes Dateiformat
+apps/frappe/frappe/core/doctype/data_import/importer.py +278,Unsupported File Format,Nicht unterstütztes Dateiformat
DocType: DocField,Code,Code
DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle möglichen Zustände und Rollen des Workflows. Dokumentenstatus-Optionen sind: 0 ist ""Gespeichert"", 1 ist ""Übertragen"" und 2 ist ""Abgebrochen"""
DocType: Website Theme,Footer Text Color,Textfarbe der Fußzeile
@@ -2618,6 +2633,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Zuletzt
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Berechtigungen auf der Ebene 0 sind auf Dokumentebene angesiedelt, d. h. sie dienen vorrangig dem Zugang zum Dokument."
DocType: Email Alert,Print Format,Druckformat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ungültige Payment-Gateway-Anmeldeinformationen
+DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dies ist die Vorlagendatei, die nur mit Fehlern in den Zeilen generiert wird. Sie sollten diese Datei zur Korrektur und zum Import verwenden."
apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Berechtigungen für Dokumenttypen und Rollen setzen
apps/frappe/frappe/model/meta.py +159,No Label,No Label
apps/frappe/frappe/core/doctype/user_permission/user_permission.py +24,Updating...,Aktualisiere...
@@ -2642,15 +2658,15 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,Antwort
apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Seiten auf dem Tisch (Platzhalter)
DocType: DocField,Collapsible Depends On,"""Faltbar"" hängt ab von"
DocType: Print Style,Print Style Name,Druckstil
+apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie unter Setup> Drucken und Branding> Adressvorlage eine neue Vorlage.
apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +41,By,mit
DocType: Print Settings,Allow page break inside tables,Seitenumbruch innerhalb von Tabellen erlauben
DocType: Email Account,SMTP Server,SMTP-Server
DocType: Print Format,Print Format Help,Hilfe zu Druckformaten
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Aktualisieren Sie die Vorlage und speichern Sie im heruntergeladenen Format vor dem Anhängen.
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +853,With Groups,Mit Gruppen
DocType: DocType,Beta,Beta
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restauriert {0} als {1}
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Wenn aktualisiert wird, bitte ""Überschreiben"" wählen, sonst werden vorhandene Zeilen nicht gelöscht."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +72,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Wenn aktualisiert wird, bitte ""Überschreiben"" wählen, sonst werden vorhandene Zeilen nicht gelöscht."
DocType: Event,Every Month,Monatlich
DocType: Letter Head,Letter Head in HTML,Briefkopf in HTML
DocType: Web Form,Web Form,Web-Formular
@@ -2660,15 +2676,15 @@ DocType: Print Settings,Allow Print for Cancelled,Drucken im Zustand Abgebrochen
DocType: Communication,Integrations can use this field to set email delivery status,"Eingendene Anwendungen können dieses Feld verwenden, um den Versandstatus von E-Mails anzugeben"
DocType: Web Form,Web Page Link Text,Webseiten-Verknüpfungstext
DocType: Page,System Page,System Seite
-apps/frappe/frappe/config/setup.py +181,"Set default format, page size, print style etc.","Standardformat, Seitengröße, Druckstil usw. festlegen"
+apps/frappe/frappe/config/setup.py +188,"Set default format, page size, print style etc.","Standardformat, Seitengröße, Druckstil usw. festlegen"
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC
DocType: Website Settings,Include Search in Top Bar,Suchen In Top Bar
DocType: GSuite Settings,Allow GSuite access,GSuite-Zugang erlauben
DocType: DocType,DESC,DESC
DocType: DocType,Naming,Bezeichnung
DocType: Event,Every Year,Jährlich
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Alles auswählen
-apps/frappe/frappe/config/setup.py +233,Custom Translations,Benutzerdefinierte Übersetzungen
+apps/frappe/frappe/core/page/modules_setup/modules_setup.html +26,Select All,Alles auswählen
+apps/frappe/frappe/config/setup.py +240,Custom Translations,Benutzerdefinierte Übersetzungen
apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Fortschritt
apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,durch Rolle
apps/frappe/frappe/public/js/frappe/form/save.js +156,Missing Fields,fehlende Felder
@@ -2680,14 +2696,13 @@ DocType: File,Thumbnail URL,Thumbnail-URL
apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Benutzerdefinierte Berichte
DocType: Website Script,Website Script,Webseiten-Skript
DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Wenn Sie kein eigenes Google Apps Script Webapp verwenden, können Sie den Standard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec verwenden"
-apps/frappe/frappe/config/setup.py +186,Customized HTML Templates for printing transactions.,Benutzerdefinierte HTML-Vorlagen für Drucktransaktionen
+apps/frappe/frappe/config/setup.py +193,Customized HTML Templates for printing transactions.,Benutzerdefinierte HTML-Vorlagen für Drucktransaktionen
apps/frappe/frappe/public/js/frappe/form/print.js +266,Orientation,Orientierung
DocType: Workflow,Is Active,Ist aktiv(iert)
-apps/frappe/frappe/desk/form/utils.py +92,No further records,Keine weiteren Datensätze
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Benutzerberechtigungs-Manager
+apps/frappe/frappe/desk/form/utils.py +103,No further records,Keine weiteren Datensätze
DocType: DocField,Long Text,Langer Text
DocType: Workflow State,Primary,Primär
-apps/frappe/frappe/core/page/data_import_tool/importer.py +53,Please do not change the rows above {0},Bitte nicht die Zeilen oben ändern {0}
+apps/frappe/frappe/core/doctype/data_import/importer.py +72,Please do not change the rows above {0},Bitte nicht die Zeilen oben ändern {0}
DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gehen Sie nach Abschluss des Formulars auf diese URL (nur für Gastbenutzer)
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +101,(Ctrl + G),(Strg + G)
DocType: Contact,More Information,Mehr Informationen
@@ -2699,7 +2714,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,Glocke
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +122,Error in Email Alert,Fehler in E-Mail-Benachrichtigung
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dieses Dokument teilen mit
-apps/frappe/frappe/utils/nestedset.py +240,{0} {1} cannot be a leaf node as it has children,"{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind"
+apps/frappe/frappe/utils/nestedset.py +243,{0} {1} cannot be a leaf node as it has children,"{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +346,Add Attachment,Anhang hinzufügen
DocType: Data Migration Mapping,Sync,Synchronisieren
@@ -2750,7 +2765,7 @@ apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple t
DocType: Payment Gateway,Payment Gateway,Zahlungs-Gateways
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Um einer Rolle Zugriff nur auf bestimmte Datensätze zu geben, bitte ""Nutzerberechtigungen aktivieren"" anklicken. Benutzerrechte werden verwendet, um Benutzer mit einer solchen Rolle auf bestimmte Datensätze zu beschränken."
DocType: Portal Settings,Hide Standard Menu,Standardmenü ausblenden
-apps/frappe/frappe/config/setup.py +149,Add / Manage Email Domains.,Hinzufügen / Verwalten von Email Domänen.
+apps/frappe/frappe/config/setup.py +156,Add / Manage Email Domains.,Hinzufügen / Verwalten von Email Domänen.
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten
apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Druckformat {0} ist deaktiviert
DocType: Email Alert,Send days before or after the reference date,Tage vor oder nach dem Stichtag senden
@@ -2759,7 +2774,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Wert
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to verify,Hier klicken um die Richtigkeit zu bestätigen
apps/frappe/frappe/utils/password_strength.py +198,Predictable substitutions like '@' instead of 'a' don't help very much.,Vorhersehbare Substitutionen wie '@' anstelle von 'a' helfen nicht sehr viel.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Von mir zugewiesen
-apps/frappe/frappe/utils/data.py +480,Zero,Null
+apps/frappe/frappe/utils/data.py +485,Zero,Null
apps/frappe/frappe/core/doctype/doctype/doctype.py +95,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nicht im Entwicklungsmodus! In site_config.json erstellen oder ""Benutzerdefiniertes"" DocType erstellen."
DocType: Workflow State,globe,Globus
DocType: System Settings,dd.mm.yyyy,TT.MM.JJJJ
@@ -2779,11 +2794,12 @@ DocType: Module Def,Module Name,Modulname
DocType: DocType,DocType is a Table / Form in the application.,DocType ist eine Tabelle oder ein Formular in der Anwendung.
DocType: Email Account,GMail,GMail
DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Bericht(e)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +707,{0} Report,{0} Bericht(e)
DocType: SMS Settings,Use POST,POST verwenden
DocType: Communication,SMS,SMS
DocType: DocType,Web View,Webansicht
apps/frappe/frappe/public/js/frappe/form/print.js +184,Warning: This Print Format is in old style and cannot be generated via the API.,WARNUNG: Dieses Druckformat ist im alten Stil und kann nicht über die API generiert werden.
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +494,Totals,Summen
DocType: DocField,Print Width,Druckbreite
,Setup Wizard,Setup-Assistent
DocType: Address,GST State Number,GST Staatsnummer
@@ -2809,26 +2825,25 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0}
apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +63,Please Update SMS Settings,Bitte SMS-Einstellungen aktualisieren
DocType: Event,Event Type,Ereignistyp
DocType: User,Last Known Versions,Letzte bekannte Versionen
-apps/frappe/frappe/config/setup.py +144,Add / Manage Email Accounts.,Hinzufügen/Verwalten von E-Mail-Konten
+apps/frappe/frappe/config/setup.py +151,Add / Manage Email Accounts.,Hinzufügen/Verwalten von E-Mail-Konten
DocType: Newsletter,Published,Veröffentlicht
apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Vielen Dank für Ihre E-Mail
DocType: DocField,Small Text,Kleiner Text
DocType: Webhook,on_cancel,on_cancel
-apps/frappe/frappe/core/doctype/user/user.py +883,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}.
+apps/frappe/frappe/core/doctype/user/user.py +885,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}.
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,ist gleich
-apps/frappe/frappe/core/doctype/doctype/doctype.py +460,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen"
DocType: About Us Settings,Team Members Heading,Überschrift zu den Teammitgliedern
apps/frappe/frappe/utils/csvutils.py +36,Invalid CSV Format,Ungültige CSV-Format
apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Anzahl der Backups einstellen
DocType: DocField,Do not allow user to change after set the first time,nach dem ersten Setzen dem Benutzer nicht erlauben eine Änderung vorzunehmen
-apps/frappe/frappe/public/js/frappe/upload.js +258,Private or Public?,Privat oder öffentlich?
-apps/frappe/frappe/utils/data.py +578,1 year ago,vor 1 Jahr
+apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat oder öffentlich?
+apps/frappe/frappe/utils/data.py +590,1 year ago,vor 1 Jahr
DocType: Contact,Contact,Kontakt
DocType: User,Third Party Authentication,Drittpartei-Authentifizierung
DocType: Website Settings,Banner is above the Top Menu Bar.,Banner über der oberen Menüleiste.
DocType: Razorpay Settings,API Secret,API Geheimnis
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +917,Export Report: ,Export-Report:
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +709,{0} {1} does not exist,{0} {1} existiert nicht
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +927,Export Report: ,Export-Report:
DocType: Data Migration Run,Push Update,Push-Aktualisierung
DocType: Email Account,Port,Anschluss
DocType: Print Format,Arial,Arial
@@ -2845,15 +2860,15 @@ DocType: Dropbox Settings,Dropbox Settings,Dropbox-Einstellungen
DocType: About Us Settings,More content for the bottom of the page.,Zusätzlicher Inhalt für den unteren Teil der Seite.
DocType: Workflow,DocType on which this Workflow is applicable.,"DocType, auf den dieser Workflow anzuwenden ist."
DocType: Feedback Trigger,Enabled,Aktiviert
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +218,Failed to complete setup,Setup konnte nicht abgeschlossen werden
DocType: Tag Category,Category Name,Kategoriename
apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Import-Abonnenten
DocType: Print Settings,PDF Settings,PDF-Einstellungen
DocType: Kanban Board Column,Column Name,Spaltenname
DocType: Language,Based On,Basiert auf
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +247,You're all set!,Du bist alles eingestellt!
apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Zum Standard machen
apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +27,Check Frappe Server URL,Überprüfen Sie die Frappe Server-URL
-apps/frappe/frappe/core/doctype/doctype/doctype.py +502,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden
+apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden
DocType: Communication,Email Account,E-Mail-Konto
DocType: Workflow State,Download,Herunterladen
DocType: Blog Post,Blog Intro,Blog-Einleitung
@@ -2869,7 +2884,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +6
apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ungültige Grenze {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Einen Dokumenttyp auflisten
DocType: Event,Ref Type,Ref-Typ
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Wenn neue Datensätze hochgeladen werden, bitte die Spalte ""Bezeichnung"" (ID) leer lassen."
+apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Wenn neue Datensätze hochgeladen werden, bitte die Spalte ""Bezeichnung"" (ID) leer lassen."
DocType: Data Migration Run,Current Mapping Delete Start,Aktuelle Zuordnung Löschen Start
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Fehler in Hintergrundprozessen
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Anzahl der Spalten
@@ -2881,22 +2896,22 @@ DocType: Website Settings,Website Theme Image,Webseiten-Thema-Bild
DocType: Workflow State,road,Straße
DocType: LDAP Settings,Organizational Unit,Organisationseinheit
DocType: User,Timezone,Zeitzone
-apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},{0} kann nicht geladen werden
+apps/frappe/frappe/public/js/frappe/model/model.js +116,Unable to load: {0},{0} kann nicht geladen werden
apps/frappe/frappe/config/integrations.py +28,Backup,Sicherungskopie
DocType: DocField,Read Only,Schreibgeschützt
apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Neuer Newsletter
DocType: Print Settings,Send Print as PDF,Ausdruck als PDF senden
DocType: Web Form,Amount,Betrag
DocType: Workflow Transition,Allowed,Erlaubt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +509,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben
+apps/frappe/frappe/core/doctype/doctype/doctype.py +511,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben
apps/frappe/frappe/core/doctype/file/file.py +211,Unable to write file format for {0},Das Dateiformat kann nicht für {0}
apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Wiederherstellen der Standardeinstellungen?
apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ungültige Startseite
-apps/frappe/frappe/templates/includes/login/login.js +217,Invalid Login. Try again.,Ungültiger Login. Versuch es noch einmal.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1}
+apps/frappe/frappe/templates/includes/login/login.js +219,Invalid Login. Try again.,Ungültiger Login. Versuch es noch einmal.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1}
DocType: Auto Email Report,Send only if there is any data,"Nur dann senden, wenn Daten vorhanden sind"
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Filter zurücksetzen
-apps/frappe/frappe/core/doctype/doctype/doctype.py +712,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können
+apps/frappe/frappe/core/doctype/doctype/doctype.py +714,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zuordnung geschlossen von {0}
DocType: Integration Request,Remote,entfernt
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Berechnen
@@ -2907,7 +2922,6 @@ DocType: Error Snapshot,Locals,Einheimische
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommuniziert über {0} um {1}: {2}
apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} erwähnte Sie in einem Kommentar in {1}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,z. B. (55 + 434) / 4 oder =Math.sin(Math.PI/2)...
-apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto wurde nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto
apps/frappe/frappe/model/naming.py +45,{0} is required,{0} erforderlich
DocType: Integration Request,Integration Type,Integration Typ
DocType: Newsletter,Send Attachements,Anhänge senden
@@ -2917,16 +2931,15 @@ DocType: DocField,Perm Level,Berechtigungsebene
apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Ereignisse im heutigen Kalender
DocType: Web Page,Web Page,Webseite
DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Skip rows with errors.,Überspringen Sie Zeilen mit Fehlern.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +452,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}
-apps/frappe/frappe/public/js/frappe/views/treeview.js +333,View List,Liste anzeigen
+apps/frappe/frappe/core/doctype/doctype/doctype.py +454,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}
+apps/frappe/frappe/public/js/frappe/views/treeview.js +325,View List,Liste anzeigen
apps/frappe/frappe/public/js/frappe/form/controls/date.js +114,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0}
DocType: Workflow,Don't Override Status,Überschreiben Sie nicht-Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Bitte geben Sie eine Bewertung.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback-Anfrage
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Suchbegriff
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,The First User: You,Der erste Benutzer: Sie selbst!
-apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Spalten auswählen
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +411,The First User: You,Der erste Benutzer: Sie selbst!
+apps/frappe/frappe/core/doctype/data_import/data_import.js +156,Select Columns,Spalten auswählen
DocType: Translation,Source Text,Quellentext
apps/frappe/frappe/www/login.py +65,Missing parameters for login,Fehlende Parameter für Login
DocType: Workflow State,folder-open,geöffneter Ordner
@@ -2938,18 +2951,17 @@ DocType: Page,No,Nein
DocType: Property Setter,Set Value,Wert festlegen
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Feld in Formular ausblenden
DocType: Webhook,Webhook Data,Webhook Daten
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +269,Illegal Access Token. Please try again,Illegal Access-Token. Bitte versuche es erneut
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +272,Illegal Access Token. Please try again,Illegal Access-Token. Bitte versuche es erneut
apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Die Anwendung wurde auf eine neue Version aktualisiert, bitte aktualisieren Sie diese Seite"
apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Erneut senden
DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist"
DocType: Data Migration Plan,Plan Name,Planname
DocType: Print Settings,Print with letterhead,Drucken mit Briefpapier
DocType: Unhandled Email,Raw Email,Raw E-Mail
-apps/frappe/frappe/public/js/frappe/list/list_view.js +674,Select records for assignment,Datensätze für die Zuordnung auswählen
-apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +140,Importing,Importieren
+apps/frappe/frappe/public/js/frappe/list/list_view.js +830,Select records for assignment,Datensätze für die Zuordnung auswählen
DocType: ToDo,Assigned By,Zugewiesen von
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"Sie können ""Formular anpassen"" verwenden, um Ebenen auf Feldern zu setzen ."
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Select Your Region,Wählen Sie Ihre Region
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +380,Select Your Region,Wählen Sie Ihre Region
DocType: Custom DocPerm,Level,Ebene
DocType: Custom DocPerm,Report,Bericht
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Betrag muss größer als 0 sein.
@@ -2968,7 +2980,7 @@ DocType: Website Theme,Background,Hintergrund
DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON (JavaScript Object Notation)-Liste der DocTypes, die zur Zuordnung von Benutzerrechten verwendet werden. Sofern diese Liste leer ist, werden alle DocTypes verwendet um Benutzerrechte zuzuordnen."
DocType: Report,Ref DocType,Ref-DocType
apps/frappe/frappe/www/feedback.py +42,Please add a rating,Bitte fügen Sie eine Bewertung hinzu
-apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch"""
+apps/frappe/frappe/core/doctype/doctype/doctype.py +726,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch"""
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Ganze Seite
DocType: DocType,Is Child Table,Ist Untertabelle
apps/frappe/frappe/utils/csvutils.py +125,{0} must be one of {1},{0} muss aus {1} sein
@@ -2980,7 +2992,7 @@ DocType: Workflow State,chevron-left,Winkel nach links
DocType: Communication,Sending,Versand
apps/frappe/frappe/auth.py +247,Not allowed from this IP Address,Zugriff nicht von dieser IP- Adresse erlaubt
DocType: Website Slideshow,This goes above the slideshow.,Dies erscheint oberhalb der Diaschau.
-apps/frappe/frappe/config/setup.py +263,Install Applications.,Anwendungen installieren.
+apps/frappe/frappe/config/setup.py +270,Install Applications.,Anwendungen installieren.
DocType: Contact,Last Name,Familienname
DocType: Event,Private,Privat
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +93,No alerts for today,Keine Warnungen für heute
@@ -2997,19 +3009,19 @@ DocType: Event,Send an email reminder in the morning,Morgens eine Erinnerungemai
DocType: Blog Post,Published On,Veröffentlicht am
DocType: Contact,Gender,Geschlecht
apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Pflichtangaben fehlen:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +499,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +501,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat"
apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Check Request URL
apps/frappe/frappe/client.py +149,Only 200 inserts allowed in one request,Nur 200 Einsätze in einem Anfrage erlaubt
DocType: Footer Item,URL,URL
apps/frappe/frappe/www/qrcode.html +15,Return to the Verification screen and enter the code displayed by your authentication app,Kehren Sie zum Bestätigungsbildschirm zurück und geben Sie den von Ihrer Authentifizierungs-App angezeigten Code ein
DocType: ToDo,Reference Type,Referenz-Typ
-apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +40,Please enable developer mode to create new connection,"Bitte aktivieren Sie den Entwicklermodus, um eine neue Verbindung zu erstellen"
+apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +36,Please enable developer mode to create new connection,"Bitte aktivieren Sie den Entwicklermodus, um eine neue Verbindung zu erstellen"
DocType: Event,Repeat On,Wiederholen am
DocType: SMS Parameter,SMS Parameter,SMS-Parameter
DocType: Communication,Marked As Spam,Als Spam markiert
apps/frappe/frappe/utils/file_manager.py +301,There is some problem with the file url: {0},Es gibt irgend ein Problem mit der Datei-URL: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Baum
-apps/frappe/frappe/public/js/frappe/views/treeview.js +310,You are not allowed to print this report,Sie sind nicht berechtigt diesen Bericht zu drucken
+apps/frappe/frappe/public/js/frappe/views/treeview.js +302,You are not allowed to print this report,Sie sind nicht berechtigt diesen Bericht zu drucken
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Benutzerberechtigungen
DocType: Workflow State,warning-sign,Warnschild
DocType: Workflow State,User,Benutzer
@@ -3041,64 +3053,65 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
DocType: DocField,Default,Standard
apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} hinzugefügt
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Suche nach '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Bitte speichern Sie den Bericht zuerst
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +675,Please save the report first,Bitte speichern Sie den Bericht zuerst
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} Empfänger hinzugefügt
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nicht in
DocType: Workflow State,star,Stern
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +261,values separated by commas,Werte durch Komma getrennt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +444,Max width for type Currency is 100px in row {0},Max Breite für Typ Währung ist 100px in Zeile {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +238,values separated by commas,Werte durch Komma getrennt
+apps/frappe/frappe/core/doctype/doctype/doctype.py +446,Max width for type Currency is 100px in row {0},Max Breite für Typ Währung ist 100px in Zeile {0}
apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Bitte teilen Sie Ihr Feedback für {0}
apps/frappe/frappe/config/website.py +13,Content web page.,Inhalt der Webseite.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Neue Rolle hinzufügen
DocType: Deleted Document,Deleted Document,gelöschtes Dokument
-apps/frappe/frappe/templates/includes/login/login.js +218,Oops! Something went wrong,Hoppla! Etwas ist schiefgelaufen
+apps/frappe/frappe/templates/includes/login/login.js +220,Oops! Something went wrong,Hoppla! Etwas ist schiefgelaufen
DocType: Help Article,Category,Kategorie
apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Client-seitige Script-Erweiterungen in Javascript
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Richtlinien ldap Abhängigkeiten und Python zu installieren
DocType: Webhook,on_trash,on_trash
DocType: Blog Settings,Blog Introduction,Blog-Einleitung
DocType: Address,Office,Büro
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +194,This Kanban Board will be private,Dieser Kanbantafel wird privat
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,This Kanban Board will be private,Dieser Kanbantafel wird privat
apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardberichte
DocType: User,Email Settings,E-Mail-Einstellungen
apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to Continue,"Bitte geben Sie Ihr Passwort ein, um fortzufahren"
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Keine gültige LDAP-Benutzer
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} kein gültiger Zustand
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',Bitte wählen Sie eine andere Zahlungsmethode. PayPal bietet keine Unterstützung für Transaktionen in der Währung ‚{0}‘
-apps/frappe/frappe/core/doctype/doctype/doctype.py +532,Search field {0} is not valid,Suchfeld {0} ist nicht gültig
+apps/frappe/frappe/core/doctype/doctype/doctype.py +534,Search field {0} is not valid,Suchfeld {0} ist nicht gültig
DocType: Workflow State,ok-circle,Genehmigungs-Kreislauf
apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Sie können Informationen finden, indem Sie zum Beispiel ""suche Orange in Kunden"" eingeben."
apps/frappe/frappe/core/doctype/user/user.py +184,Sorry! User should have complete access to their own record.,Verzeihung! Benutzer sollten uneingeschränkten Zugang zu ihren eigenen Rekord zu haben.
,Usage Info,Verwendungsinfo
apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +31,Invalid Token,Ungültiges Token
DocType: Email Account,Email Server,E-Mail-Server
-DocType: DocShare,Document Type,Dokumententyp
+DocType: Data Import,Document Type,Dokumententyp
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Bezeichnung ist zwingend erforderlich
DocType: PayPal Settings,API Username,API Benutzername
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Half Day,Halbtags
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Half Day,Halbtags
DocType: Communication,Communication Type,Kommunikationsart
DocType: DocField,Unique,Einzigartig
-DocType: Data Migration Run,Partial Success,Teilerfolg
+apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Teilerfolg
DocType: Email Account,Service,Service
DocType: File,File Name,Dateiname
-apps/frappe/frappe/core/page/data_import_tool/importer.py +379,Did not find {0} for {0} ({1}),{0} wurde nicht für {0} ({1}) gefunden
+apps/frappe/frappe/core/doctype/data_import/importer.py +487,Did not find {0} for {0} ({1}),{0} wurde nicht für {0} ({1}) gefunden
apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Hoppla, dass dürften Sie garnicht wissen"
-apps/frappe/frappe/public/js/frappe/ui/slides.js +320,Next,Weiter
+apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Weiter
apps/frappe/frappe/handler.py +92,You have been successfully logged out,Sie haben sich erfolgreich abgemeldet
DocType: Calendar View,Calendar View,Kalenderansicht
apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Format bearbeiten
apps/frappe/frappe/core/doctype/user/user.py +262,Complete Registration,Anmeldung abschliessen
DocType: GSuite Settings,Enable,ermöglichen
+DocType: Google Maps,Home Address,Privatadresse
apps/frappe/frappe/public/js/frappe/form/toolbar.js +196,New {0} (Ctrl+B),Neue(s) {0} (Strg + B)
apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Farbe der Kopfleiste und Textfarbe sind gleich. Um lesbar zu sein, sollte ein guter Kontrast eingestellt sein."
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Sie können nur bis zu 5000 Datensätze auf einmal hochladen (in einigen Fällen weniger).
+apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Sie können nur bis zu 5000 Datensätze auf einmal hochladen (in einigen Fällen weniger).
apps/frappe/frappe/model/document.py +184,Insufficient Permission for {0},Unzureichende Berechtigung für {0}
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +765,Report was not saved (there were errors),Bericht wurde nicht gespeichert (es gab Fehler)
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +553,Report was not saved (there were errors),Bericht wurde nicht gespeichert (es gab Fehler)
DocType: Print Settings,Print Style,Druckstil
-apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nicht mit jedem Datensatz verknüpft
+apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nicht mit jedem Datensatz verknüpft
DocType: Custom DocPerm,Import,Import
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +177,Row {0}: Not allowed to enable Allow on Submit for standard fields,"Zeile {0}: Keine Berechtigung die Option ""Beim Übertragen erlauben"" für Standardfelder zu aktivieren"
-apps/frappe/frappe/config/setup.py +98,Import / Export Data,Import / Export von Daten
+apps/frappe/frappe/config/setup.py +105,Import / Export Data,Import / Export von Daten
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardrollen kann nicht umbenannt werden
DocType: Communication,To and CC,An und CC
DocType: SMS Settings,Static Parameters,Statische Parameter
@@ -3119,18 +3132,17 @@ DocType: Web Page,Header and Description,Kopf- und Beschreibung
apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password required,Login und Passwort sind beide erforderlich
apps/frappe/frappe/model/document.py +629,Please refresh to get the latest document.,"Bitte aktualisieren, um das neueste Dokument zu erhalten."
DocType: User,Security Settings,Sicherheitseinstellungen
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +857,Add Column,Spalte hinzufügen
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +125,Add Column,Spalte hinzufügen
,Desktop,Arbeitsoberfläche
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +728,Export Report: {0},Exportbericht: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +664,Export Report: {0},Exportbericht: {0}
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Text, der für die Verknüpfung zur Webseite angezeigt wird, wenn dieses Formular eine Webseite hat. Verknüpfungs-Pfad wird basierend auf ""page_name"" und ""parent_website_route"" automatisch generiert"
DocType: Feedback Request,Feedback Trigger,Feedback-Trigger
DocType: S3 Backup Settings,Backup Limit,Sicherungslimit
-apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +20,Please set {0} first,Bitte zuerst {0} setzen
+apps/frappe/frappe/public/js/frappe/form/controls/dynamic_link.js +26,Please set {0} first,Bitte zuerst {0} setzen
DocType: Unhandled Email,Message-id,Nachrichten ID
DocType: Patch Log,Patch,Korrektur
-DocType: Async Task,Failed,Fehlgeschlagen
-apps/frappe/frappe/core/page/data_import_tool/importer.py +58,No data found,Keine Daten gefunden
+DocType: Activity Log,Failed,Fehlgeschlagen
DocType: Web Form,Allow Comments,Kommentare zulassen
DocType: User,Background Style,Hintergrundstil
DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,Zwei Faktor Autorisierung für Benutzer aus eingeschränktem IP-Adressraum übergehen.
@@ -3139,7 +3151,7 @@ apps/frappe/frappe/www/qrcode.html +13,Open your authentication app on your mobi
apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},fusionierte {0} in {1}
DocType: System Settings,mm-dd-yyyy,MM-TT-JJJJ
apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +7,New Connection,Neue Verbindung
-apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} angemeldet
+apps/frappe/frappe/core/doctype/activity_log/feed.py +51,{0} logged in,{0} angemeldet
apps/frappe/frappe/templates/emails/new_user.html +3,Your login id is,Ihre Login-ID ist
DocType: OAuth Client,Skip Authorization,überspringen Authorization
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +67,"Cannot edit Standard Email Alert. To edit, please disable this and duplicate it","Kann keine Standard-E-Mail-Benachrichtigung bearbeiten. Um sie zu bearbeiten, bitte deaktivieren und duplizieren."
diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv
index 24c07b9aec..c33456aa45 100644
--- a/frappe/translations/el.csv
+++ b/frappe/translations/el.csv
@@ -3,9 +3,9 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Es
apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Μια νέα εργασία, {0}, έχει ανατεθεί σε εσάς από {1}. {2}"
DocType: Email Queue,Email Queue records.,αρχεία ηλεκτρονικού ταχυδρομείου ουρά.
apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Δημοσίευση
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Επιλέξτε Τύπος Πάρτυ πρώτη
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +27,Please select Party Type first,Επιλέξτε Τύπος Πάρτυ πρώτη
DocType: Address,Punjab,Πουντζάμπ
-apps/frappe/frappe/config/setup.py +112,Rename many items by uploading a .csv file.,Μετονομασία πολλών αντικειμένων με αποστολή στο διακομιστή ενός αρχείου csv . .
+apps/frappe/frappe/config/setup.py +119,Rename many items by uploading a .csv file.,Μετονομασία πολλών αντικειμένων με αποστολή στο διακομιστή ενός αρχείου csv . .
DocType: Workflow State,pause,Παύση
apps/frappe/frappe/www/desk.py +19,You are not permitted to access this page.,Δεν σας επιτρέπεται η πρόσβαση σε αυτήν τη σελίδα.
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.No results found for '
,Δεν βρέθηκαν αποτελέσματα για '
apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Οι πληροφορίες σας έχει υποβληθεί apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Ο χρήστης {0} δεν μπορεί να διαγραφεί DocType: System Settings,Currency Precision,Νόμισμα ακρίβειας @@ -317,21 +318,21 @@ DocType: Communication,Attachment,Κατάσχεση DocType: Communication,Message ID,μήνυμα ID DocType: Property Setter,Field Name,Όνομα πεδίου apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Το Google GSuite δεν έχει ρυθμιστεί. -apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,Ή +apps/frappe/frappe/public/js/frappe/misc/utils.js +159,or,Ή apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ενότητα όνομα ... apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Συνέχεια DocType: Custom Field,Fieldname,Όνομα πεδίου DocType: Workflow State,certificate,Πιστοποιητικό DocType: User,Tile,Πλακάκι apps/frappe/frappe/templates/includes/login/login.js +116,Verifying...,Επαλήθευση ... -apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,First data column must be blank.,Η πρώτη στήλη των δεδομένων πρέπει να είναι κενή. +apps/frappe/frappe/core/doctype/data_import/exporter.py +64,First data column must be blank.,Η πρώτη στήλη των δεδομένων πρέπει να είναι κενή. apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Εμφάνιση όλων των εκδόσεων DocType: Workflow State,Print,Εκτύπωση DocType: User,Restrict IP,Περιορισμός IP apps/frappe/frappe/public/js/frappe/form/layout.js +115,Dashboard,Ταμπλό apps/frappe/frappe/email/smtp.py +216,Unable to send emails at this time,Δεν μπορεί να γίνει αποστοή e-mail αυτή τη στιγμή apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +88,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής -DocType: Communication,Timeline Name,Timeline Όνομα +DocType: Activity Log,Timeline Name,Timeline Όνομα DocType: Email Account,e.g. smtp.gmail.com,π.χ. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +384,Add A New Rule,Προσθήκη νέου κανόνα DocType: Contact,Sales Master Manager,Διαχειριστής κύριων εγγραφών πωλήσεων @@ -343,7 +344,8 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,Γονική ετικέτα apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Η ερώτησή σας έχει παραληφθεί. Θα απαντήσουμε άμεσα σύντομα. Εάν έχετε οποιεσδήποτε πρόσθετες πληροφορίες, απαντήστε σε αυτό το μήνυμα." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Τα δικαιώματα μεταφράζονται αυτόματα σε πρότυπες εκθέσεις και αναζητήσεις . -apps/frappe/frappe/templates/includes/login/login.js +246,Login token required,Απαιτείται ένα διακριτικό σύνδεσης +apps/frappe/frappe/core/doctype/data_import/importer.py +216,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο +apps/frappe/frappe/templates/includes/login/login.js +248,Login token required,Απαιτείται ένα διακριτικό σύνδεσης DocType: Event,Repeat Till,Επανάληψη εως apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +110,New,Νέο apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Ορίστε τη διεύθυνση URL δέσμης ενεργειών στις ρυθμίσεις Gsuite @@ -362,7 +364,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers, apps/frappe/frappe/desk/doctype/event/event.py +61,Upcoming Events for Today,Επερχόμενα συμβάντα για σήμερα DocType: Email Alert Recipient,Email By Document Field,Email ανά πεδίο εγγράφου DocType: Domain Settings,Domain Settings,Ρυθμίσεις τομέα -apps/frappe/frappe/core/page/usage_info/usage_info.html +61,Files Size:,Μέγεθος αρχείων: +apps/frappe/frappe/core/page/usage_info/usage_info.html +63,Files Size:,Μέγεθος αρχείων: apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Αναβαθμίζω apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Δεν είναι δυνατή η σύνδεση: {0} apps/frappe/frappe/utils/password_strength.py +180,A word by itself is easy to guess.,Μια λέξη από μόνη της είναι εύκολο να μαντέψει κανείς. @@ -374,7 +376,7 @@ DocType: Currency,Fraction Units,Μονάδες κλάσματος apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +448,{0} from {1} to {2},{0} από {1} έως {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Επισημάνετε ως τελείωσε DocType: Communication,Type,Τύπος -DocType: Authentication Log,Subject,Θέμα +DocType: Activity Log,Subject,Θέμα DocType: Web Form,Amount Based On Field,Ποσό με βάση το πεδίο apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Ο χρήστης είναι υποχρεωτική για το μερίδιο DocType: DocField,Hidden,κρυμμένο @@ -382,14 +384,14 @@ DocType: Web Form,Allow Incomplete Forms,Επιτρέψτε Ελλιπής Έν apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} Πρέπει να ορίσετε πρώτα apps/frappe/frappe/utils/password_strength.py +34,"Use a few words, avoid common phrases.","Χρησιμοποιήστε λίγα λόγια, αποφύγετε κοινά φράσεις." DocType: Workflow State,plane,Αεροπλάνο -apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Αν ανεβάζετε νέες εγγραφές, η ""σειρά ονομασίας"" είναι απαραίτητη, εφόσον υπάρχει." +apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Αν ανεβάζετε νέες εγγραφές, η ""σειρά ονομασίας"" είναι απαραίτητη, εφόσον υπάρχει." apps/frappe/frappe/email/doctype/email_alert/email_alert.js +83,Get Alerts for Today,Λάβετε ειδοποιήσεις για σήμερα apps/frappe/frappe/core/doctype/doctype/doctype.py +283,DocType can only be renamed by Administrator,DocType μπορεί να μετονομαστεί μόνο από Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +459,changed value of {0},αλλαγμένη τιμή του {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Αν ο χρήστης ελέγξει κάποιο ρόλο, τότε ο χρήστης γίνεται "Χρήστης συστήματος". Ο "Χρήστης συστήματος" έχει πρόσβαση στην επιφάνεια εργασίας" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +770,Please check your email for verification,Παρακαλώ ελέγξτε το email σας για επαλήθευση -apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας +apps/frappe/frappe/core/doctype/doctype/doctype.py +518,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας DocType: Communication,Bounced,Ακάλυπτες DocType: Deleted Document,Deleted Name,διαγράφεται Όνομα apps/frappe/frappe/config/setup.py +14,System and Website Users,Χρήστες συστήματος και ιστοσελίδας @@ -398,26 +400,26 @@ DocType: Data Migration Run,Pull Update,Τραβήξτε την ενημέρωσ DocType: Auto Email Report,No of Rows (Max 500),Αριθμός σειρών (Max 500) DocType: Language,Language Code,Κωδικός γλώσσας apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +272,"Your download is being built, this may take a few moments...","Η λήψη σας δημιουργείται, αυτό μπορεί να διαρκέσει λίγα λεπτά ..." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +21,Add Filter,Προσθήκη φίλτρου +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +135,Add Filter,Προσθήκη φίλτρου apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS αποστέλλονται στην παρακάτω αριθμούς: {0} apps/frappe/frappe/www/feedback.html +23,Your rating: ,Η βαθμολογία σας: -apps/frappe/frappe/utils/data.py +586,{0} and {1},{0} και {1} +apps/frappe/frappe/utils/data.py +598,{0} and {1},{0} και {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Πάντα προσθέστε "Σχέδιο" Τομέας για σχέδιο εκτύπωση εγγράφων DocType: Data Migration Run,Current Mapping Start,Τρέχουσα εκκίνηση χαρτογράφησης apps/frappe/frappe/core/doctype/communication/communication.js +229,Email has been marked as spam,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει επισημανθεί ως ανεπιθύμητο DocType: About Us Settings,Website Manager,Διαχειριστής ιστοσελίδας apps/frappe/frappe/public/js/frappe/socketio_client.js +387,File Upload Disconnected. Please try again.,Η αποστολή του αρχείου αποσυνδέθηκε. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα. -apps/frappe/frappe/public/js/frappe/list/list_view.js +705,You selected Draft or Cancelled documents,Έχετε επιλέξει Έγγραφα ή Άκυρα έγγραφα -apps/frappe/frappe/model/document.py +1180,Document Queued,έγγραφο ουρά +apps/frappe/frappe/public/js/frappe/list/list_view.js +858,You selected Draft or Cancelled documents,Έχετε επιλέξει Έγγραφα ή Άκυρα έγγραφα +apps/frappe/frappe/model/document.py +1186,Document Queued,έγγραφο ουρά DocType: GSuite Templates,Destination ID,Αναγνωριστικό προορισμού DocType: Desktop Icon,List,Λίστα -DocType: Communication,Link Name,Όνομα σύνδεσμο -apps/frappe/frappe/core/doctype/doctype/doctype.py +440,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή +DocType: Activity Log,Link Name,Όνομα σύνδεσμο +apps/frappe/frappe/core/doctype/doctype/doctype.py +442,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή DocType: System Settings,mm/dd/yyyy,μμ/ηη/εεεε -apps/frappe/frappe/core/doctype/user/user.py +904,Invalid Password: ,Λανθασμένος κωδικός: +apps/frappe/frappe/core/doctype/user/user.py +906,Invalid Password: ,Λανθασμένος κωδικός: DocType: Print Settings,Send document web view link in email,Αποστολή εγγράφου σύνδεσμο προβολή ιστοσελίδων στο email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Σχόλια για το έγγραφο {0} έχει αποθηκευτεί με επιτυχία -apps/frappe/frappe/public/js/frappe/ui/slides.js +317,Previous,Προηγούμενο +apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Προηγούμενο apps/frappe/frappe/email/doctype/email_account/email_account.py +557,Re:,Απ: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +513,{0} rows for {1},{0} γραμμές για {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Υπο-νόμισμα. Για παράδειγμα "cent" @@ -425,24 +427,23 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Επιλέξτε προστιθέμενο αρχείο DocType: Letter Head,Check this to make this the default letter head in all prints,Επιλέξτε αυτό για να γίνει η προεπιλεγμένη κεφαλίδα επιστολόχαρτου σε όλες τις εκτυπώσεις DocType: Print Format,Server,Διακομιστής -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +198,New Kanban Board,Νέο Διοικητικό Συμβούλιο Kanban +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +199,New Kanban Board,Νέο Διοικητικό Συμβούλιο Kanban DocType: Desktop Icon,Link,Σύνδεσμος apps/frappe/frappe/utils/file_manager.py +111,No file attached,Δεν βρέθηκε συνημμένο αρχείο DocType: Version,Version,Έκδοση DocType: User,Fill Screen,Γέμισε την οθόνη -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +711,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Δεν είναι δυνατή η προβολή αυτής της έκθεσης δέντρο, λόγω έλλειψης στοιχείων. Το πιο πιθανό, είναι να φιλτραριστεί λόγω δικαιώματα." -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Επιλέξτε Αρχείο +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +721,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Δεν είναι δυνατή η προβολή αυτής της έκθεσης δέντρο, λόγω έλλειψης στοιχείων. Το πιο πιθανό, είναι να φιλτραριστεί λόγω δικαιώματα." apps/frappe/frappe/public/js/frappe/socketio_client.js +312,Upload Failed,Η μεταφόρτωση απέτυχε -apps/frappe/frappe/public/js/frappe/form/grid.js +647,Edit via Upload,Επεξεργασία μέσω Ανεβάστε +apps/frappe/frappe/public/js/frappe/form/grid.js +631,Edit via Upload,Επεξεργασία μέσω Ανεβάστε apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Τύπος εγγράφου ..., π.χ. πελατών" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Η Κατάσταση '{0}' δεν είναι έγκυρη DocType: Workflow State,barcode,Barcode -apps/frappe/frappe/config/setup.py +235,Add your own translations,Προσθέστε τις δικές σας μεταφράσεις +apps/frappe/frappe/config/setup.py +242,Add your own translations,Προσθέστε τις δικές σας μεταφράσεις DocType: Country,Country Name,Όνομα χώρας DocType: About Us Team Member,About Us Team Member,Μέλος της ομάδας σχετικά με εμάς apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Τα δικαιώματα που έχουν οριστεί για ρόλους και τύπους εγγράφων (που ονομάζονται doctypes) με τον καθορισμό των δικαιωμάτων, όπως ανάγνωση, γραφή, δημιουργία, διαγραφή, υποβολή, ακύρωση, τροποποιούνται, έκθεση, εισαγωγή, εξαγωγή, εκτύπωση, e-mail και ορίζουν τα δικαιώματα των χρηστών." DocType: Event,Wednesday,Τετάρτη -apps/frappe/frappe/core/doctype/doctype/doctype.py +567,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +569,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου DocType: OAuth Client,Token,Ένδειξη DocType: Property Setter,ID (name) of the entity whose property is to be set,Id (όνομα) της οντότητας της οποίας η ιδιότητα είναι να καθοριστεί apps/frappe/frappe/limits.py +84,"To renew, {0}.","Για την ανανέωση, {0}." @@ -452,9 +453,9 @@ apps/frappe/frappe/installer.py +125,App {0} already installed,Η εφαρμογ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Δεν υπάρχει προεπισκόπηση DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Εμφάνιση Δικαιώματα -apps/frappe/frappe/core/doctype/doctype/doctype.py +587,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +589,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Εύρος ημερομηνιών -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +7,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Σελίδα {0} από {1} DocType: About Us Settings,Introduce your company to the website visitor.,Συστήστε την εταιρεία σας στον επισκέπτη της ιστοσελίδας apps/frappe/frappe/utils/password.py +120,"Encryption key is invalid, Please check site_config.json","Το κλειδί κρυπτογράφησης δεν είναι έγκυρο, ελέγξτε το site_config.json" @@ -472,32 +473,32 @@ DocType: Workflow State,facetime-video,Facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 Σχόλιο DocType: Email Alert,Days Before,Ημέρες Πριν DocType: Workflow State,volume-down,Volume-down -apps/frappe/frappe/desk/reportview.py +262,No Tags,Δεν υπάρχουν ετικέτες +apps/frappe/frappe/desk/reportview.py +266,No Tags,Δεν υπάρχουν ετικέτες DocType: DocType,List View Settings,Λίστα Ρυθμίσεις προβολής DocType: Email Account,Send Notification to,Αποστολή ειδοποίησης σε DocType: DocField,Collapsible,Αναδιπλούμενο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Αποθηκεύτηκε apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Σε τι χρειάζεσαι βοήθεια? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Επιλογές για επιλεγμένες. Κάθε επιλογή σε μια νέα γραμμή. -apps/frappe/frappe/public/js/legacy/form.js +789,Permanently Cancel {0}?,Μόνιμα Ακύρωση {0} ; +apps/frappe/frappe/public/js/legacy/form.js +793,Permanently Cancel {0}?,Μόνιμα Ακύρωση {0} ; DocType: Workflow State,music,Μουσική apps/frappe/frappe/www/qrcode.html +3,QR Code,QR Code apps/frappe/frappe/email/doctype/email_alert/email_alert.js +21,Last Modified Date,Τελευταία τροποποιημένη ημερομηνία DocType: Web Page,Settings,Ρυθμίσεις apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Παρακαλώ ορίστε τον τύπο εγγράφου DocType: Print Format,Style Settings,Ρυθμίσεις στυλ -apps/frappe/frappe/core/doctype/doctype/doctype.py +598,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου -apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Περισσότερο +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/public/js/frappe/list/base_list.js +307,More,Περισσότερο DocType: Contact,Sales Manager,Διευθυντής πωλήσεων -apps/frappe/frappe/public/js/frappe/model/model.js +518,Rename,Μετονομασία +apps/frappe/frappe/public/js/frappe/model/model.js +528,Rename,Μετονομασία DocType: Print Format,Format Data,Μορφοποίηση δεδομένων -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +513,Like,σαν +apps/frappe/frappe/utils/bot.py +91,Like,σαν DocType: Customize Form Field,Customize Form Field,Προσαρμογή πεδίου φόρμας DocType: OAuth Client,Grant Type,Είδος επιδότησης apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Ελέγξτε ποια έγγραφα είναι δυνατόν να αναγνωσθούν από έναν χρήστη apps/frappe/frappe/desk/page/applications/applications.py +72,Listing app not allowed,Η εφαρμογή καταχώρισης δεν επιτρέπεται DocType: Deleted Document,Hub Sync ID,Αναγνωριστικό συγχρονισμού Hub -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +262,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +239,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Τομέα email δεν έχει ρυθμιστεί για αυτόν το λογαριασμό, δημιουργήστε έναν;" DocType: User,Reset Password Key,Επαναφορά κωδικού DocType: Email Account,Enable Auto Reply,Ενεργοποίηση αυτόματης απάντησης @@ -511,7 +512,7 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Ελάχιστη βαθμολογία κωδικού πρόσβασης DocType: DocType,Fields,Πεδία DocType: System Settings,Your organization name and address for the email footer.,Το όνομα του οργανισμού σας και τη διεύθυνση για την ηλεκτρονική υποσέλιδο. -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Γονικός πίνακας +apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Γονικός πίνακας apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,Το S3 Backup ολοκληρώθηκε! apps/frappe/frappe/config/desktop.py +60,Developer,Προγραμματιστής apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +145,Created,Δημιουργήθηκε @@ -543,7 +544,7 @@ DocType: DocField,Set Only Once,Ορισμός μόνο μία φορά DocType: Email Queue Recipient,Email Queue Recipient,Email Ουρά Παραλήπτη DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Όνομα Χρήστη {0} υπάρχει ήδη -apps/frappe/frappe/core/doctype/doctype/doctype.py +753,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί apps/frappe/frappe/contacts/doctype/address/address.py +111,There is an error in your Address Template {0},Υπάρχει ένα σφάλμα στο Πρότυπο σας Διεύθυνση {0} DocType: Footer Item,"target = ""_blank""","Target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -552,19 +553,17 @@ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} DocType: ToDo,High,Υψηλός DocType: S3 Backup Settings,Secret Access Key,Κλειδί μυστικής πρόσβασης apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Άντρας -apps/frappe/frappe/core/doctype/user/user.py +987,OTP Secret has been reset. Re-registration will be required on next login.,Το OTP Secret έχει επαναφερθεί. Κατά την επόμενη είσοδο θα απαιτείται επανέγκριση. +apps/frappe/frappe/core/doctype/user/user.py +989,OTP Secret has been reset. Re-registration will be required on next login.,Το OTP Secret έχει επαναφερθεί. Κατά την επόμενη είσοδο θα απαιτείται επανέγκριση. DocType: Communication,From Full Name,Από Ονοματεπώνυμο apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Δεν έχετε πρόσβαση στην έκθεση: {0} DocType: User,Send Welcome Email,Αποστολή Καλώς Email -apps/frappe/frappe/contacts/doctype/address/address.py +190,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διεύθυνσης. Δημιουργήστε ένα νέο από το Setup> Printing and Branding> Template Address. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +490,Remove Filter,Κατάργηση φίλτρου +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +225,Remove Filter,Κατάργηση φίλτρου DocType: Address,Daman and Diu,Δαμάν και Ντιού DocType: Address,Personal,Προσωπικός -apps/frappe/frappe/config/setup.py +111,Bulk Rename,Μαζική Μετονομασία +apps/frappe/frappe/config/setup.py +118,Bulk Rename,Μαζική Μετονομασία DocType: Email Queue,Show as cc,Εμφάνιση ως cc DocType: DocField,Heading,Επικεφαλίδα DocType: Workflow State,resize-vertical,Resize-vertical -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Ανεβάστε DocType: Contact Us Settings,Introductory information for the Contact Us Page,Εισαγωγικές πληροφορίες για την σελίδα επικοινωνίας DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Thumbs-down @@ -575,7 +574,7 @@ DocType: DocField,In Global Search,Στην Σφαιρική Αναζήτηση DocType: Workflow State,indent-left,Εσοχή-αριστερά apps/frappe/frappe/utils/file_manager.py +259,It is risky to delete this file: {0}. Please contact your System Manager.,Είναι επικίνδυνο να διαγράψετε αυτό το αρχείο: {0}. Επικοινωνήστε με το διαχειριστή του συστήματός σας. DocType: Currency,Currency Name,Όνομα νομίσματος -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,Δεν Emails +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +170,No Emails,Δεν Emails DocType: Report,Javascript,Javascript DocType: File,Content Hash,Hash περιεχομένου DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Αποθηκεύει το JSON του τελευταίου γνωστού εκδόσεις των διαφόρων εγκατεστημένων εφαρμογών. Χρησιμοποιείται για να δείξει τις σημειώσεις έκδοσης. @@ -589,26 +588,26 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +77,"Standard DocType cannot have default print format, use Customize Form","Το τυπικό DocType δεν μπορεί να έχει προεπιλεγμένη μορφή εκτύπωσης, χρησιμοποιήστε τη ρύθμιση Customize Form" DocType: Report,Query,Ερώτημα DocType: DocType,Sort Order,Σειρά ταξινόμησης -apps/frappe/frappe/core/doctype/doctype/doctype.py +448,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +450,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} DocType: Custom Field,Select the label after which you want to insert new field.,Επιλέξτε την ετικέτα μετά την οποία θέλετε να εισαγάγετε νέο πεδίο. ,Document Share Report,Αναφορά κοινοποίησης εγγράφου DocType: User,Last Login,Τελευταία είσοδος -apps/frappe/frappe/core/doctype/doctype/doctype.py +622,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +624,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Στήλη DocType: Custom Field,Adds a custom field to a DocType,Προσθέτει ένα προσαρμοσμένο πεδίο σε έναν τύπο εγγράφου DocType: File,Is Home Folder,Είναι Προσωπικόςφάκελος apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/public/js/frappe/list/list_view.js +743,Select atleast 1 record for printing,Επιλέξτε atleast 1 εγγραφή για εκτύπωση +apps/frappe/frappe/public/js/frappe/list/list_view.js +898,Select atleast 1 record for printing,Επιλέξτε atleast 1 εγγραφή για εκτύπωση apps/frappe/frappe/core/doctype/has_role/has_role.py +12,User '{0}' already has the role '{1}',Ο χρήστης '{0}' έχει ήδη το ρόλο '{1}' DocType: System Settings,Two Factor Authentication method,Μέθοδος ελέγχου ταυτότητας δύο παραγόντων apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Κοινή χρήση με {0} apps/frappe/frappe/email/queue.py +266,Unsubscribe,Κατάργηση -DocType: Communication,Reference Name,Όνομα αναφοράς +DocType: Activity Log,Reference Name,Όνομα αναφοράς apps/frappe/frappe/public/js/frappe/toolbar.js +25,Chat Support,Chat Υποστήριξη DocType: Error Snapshot,Exception,Εξαίρεση -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,No results found for '
,Δεν βρέθηκαν αποτελέσματα για '
DocType: Email Account,Use IMAP,Χρήση IMAP apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +35,Unable to make request to the Frappe Server URL,Αδυνατεί να κάνει αίτηση στη διεύθυνση URL Φραπέ διακομιστή +DocType: Activity Log,Activity Log,Αρχείο καταγραφής δραστηριότητας DocType: Integration Request,Authorized,εξουσιοδοτημένος DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Οι μοναδιαίοι τύποι έχουν μόνο μία εγγραφή και καθόλου πίνακες που συσχετίζονται. Οι τιμές τους αποθηκεύονται σε tabsingles DocType: System Settings,Enable Password Policy,Ενεργοποίηση της πολιτικής κωδικών πρόσβασης @@ -616,27 +615,29 @@ DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Λί apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Ο τύπος πεδίου δεν μπορεί να αλλάξει για {0} DocType: Workflow,Rules defining transition of state in the workflow.,Κανόνες που καθορίζουν τη μετάβαση της κατάστασης στη ροή εργασίας. DocType: File,Folder,Φάκελος +apps/frappe/frappe/config/setup.py +107,Import / Export Data from CSV and Excel files.,Εισαγωγή / Εξαγωγή δεδομένων από αρχεία CSV και Excel. DocType: DocField,Index,Δείκτης DocType: Email Group,Newsletter Manager,Ενημερωτικό Δελτίο Διευθυντής apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Επιλογή 1 -apps/frappe/frappe/public/js/frappe/form/formatters.js +132,{0} to {1},{0} έως {1} +apps/frappe/frappe/public/js/frappe/form/formatters.js +133,{0} to {1},{0} έως {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Συνδεθείτε σφάλματος κατά τη διάρκεια αιτήσεων. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} έχει προστεθεί με επιτυχία τον Όμιλο Email. -apps/frappe/frappe/public/js/frappe/form/grid.js +663,Do not edit headers which are preset in the template,Μην επεξεργάζεστε κεφαλίδες που έχουν προκαθοριστεί στο πρότυπο +apps/frappe/frappe/public/js/frappe/form/grid.js +647,Do not edit headers which are preset in the template,Μην επεξεργάζεστε κεφαλίδες που έχουν προκαθοριστεί στο πρότυπο apps/frappe/frappe/twofactor.py +216,Login Verification Code from {},Κωδικός επαλήθευσης σύνδεσης από {} DocType: Address,Uttar Pradesh,Uttar Pradesh DocType: Address,Pondicherry,Pondicherry -apps/frappe/frappe/public/js/frappe/upload.js +388,Make file(s) private or public?,Κάντε το αρχείο (ες) ιδιωτικό ή δημόσιο; +DocType: Data Import,Import Status,Κατάσταση εισαγωγής +apps/frappe/frappe/public/js/frappe/upload.js +407,Make file(s) private or public?,Κάντε το αρχείο (ες) ιδιωτικό ή δημόσιο; apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Προγραμματισμένη για να αποσταλεί σε {0} DocType: Kanban Board Column,Indicator,Δείκτης DocType: DocShare,Everyone,Όλοι DocType: Workflow State,backward,Πίσω -apps/frappe/frappe/core/doctype/doctype/doctype.py +700,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" DocType: Email Queue,Add Unsubscribe Link,Προσθήκη Διαγραφή Σύνδεσμος apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Δεν υπάρχουν ακόμη σχόλια. Ξεκινήστε μια νέα συζήτηση. DocType: Workflow State,share,Κοινοποίηση apps/frappe/frappe/limits.py +35,"Your subscription expired on {0}. To renew, please send an email to {1}.","Η συνδρομή σας έληξε στις {0}. Για την ανανέωση, παρακαλούμε να στείλετε ένα email στο {1}." -apps/frappe/frappe/config/setup.py +105,Set numbering series for transactions.,Ορίστε σειρά αρίθμησης για τις συναλλαγές. +apps/frappe/frappe/config/setup.py +112,Set numbering series for transactions.,Ορίστε σειρά αρίθμησης για τις συναλλαγές. apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,Δεν μπορείτε να αρέσει κάτι που δημιουργήσατε apps/frappe/frappe/public/js/frappe/views/communication.js +51,"CC, BCC & Standard Reply","CC, BCC & Standard Reply" DocType: User,Last IP,Τελευταία IP @@ -646,7 +647,7 @@ DocType: Data Migration Connector,Data Migration Connector,Υποδοχή μετ DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Φιλτράρισμα εγγραφών με βάση τα δικαιώματα χρήσης που ορίστηκαν για ένα χρήστη DocType: Note,Notify Users On Every Login,Ειδοποιήστε τους χρήστες σε κάθε σύνδεση DocType: PayPal Settings,API Password,API Κωδικός -apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +17,Enter python module or select connector type,Εισαγάγετε την ενότητα python ή επιλέξτε τύπο συνδετήρα +apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Εισαγάγετε την ενότητα python ή επιλέξτε τύπο συνδετήρα apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Το όνομα πεδίου δεν έχει οριστεί για το προσαρμοσμένο πεδίο apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Τελευταία ενημέρωση από apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,δεν επιτρέπεται. @@ -655,7 +656,7 @@ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +238,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Δεν είναι δυνατή η διαγραφή του αρχείου καθώς ανήκει στην {0} {1} για την οποία δεν έχετε δικαιώματα apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Κα DocType: Website Theme,Background Color,Χρώμα φόντου -apps/frappe/frappe/public/js/frappe/views/communication.js +537,There were errors while sending email. Please try again.,Υπήρξαν σφάλματα κατά την αποστολή ηλεκτρονικού ταχυδρομείου. Παρακαλώ δοκιμάστε ξανά . +apps/frappe/frappe/public/js/frappe/views/communication.js +539,There were errors while sending email. Please try again.,Υπήρξαν σφάλματα κατά την αποστολή ηλεκτρονικού ταχυδρομείου. Παρακαλώ δοκιμάστε ξανά . DocType: Portal Settings,Portal Settings,portal Ρυθμίσεις DocType: Data Migration Mapping,Mapping,Χαρτογράφηση DocType: Web Page,0 is highest,0 Είναι η υψηλότερη @@ -667,6 +668,7 @@ DocType: Language,Language Name,γλώσσα Όνομα DocType: Email Group Member,Email Group Member,Στείλτε e-mail Μέλος του Ομίλου DocType: Email Alert,Value Changed,Η τιμή άλλαξε apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Διπλότυπο όνομα {0} {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +277,Retry,Ξαναδοκιμάσετε DocType: Web Form Field,Web Form Field,Πεδίο φόρμας ιστοσελίδας apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Απόκρυψη πεδίου στο εργαλείο δημιουργίας εκθέσεων apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Επεξεργασία κώδικα HTML @@ -674,12 +676,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +517,Resto DocType: Address,Shop,Κατάστημα DocType: DocField,Button,Κουμπί apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,Το {0} είναι τώρα προεπιλεγμένη μορφή εκτύπωσης για το {1} doctype -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,Αρχείο Στήλες +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +388,Archived Columns,Αρχείο Στήλες DocType: Email Account,Default Outgoing,Προεπιλογμένα εξερχόμενα DocType: Workflow State,play,Παιχνίδι apps/frappe/frappe/templates/emails/new_user.html +4,Click on the link below to complete your registration and set a new password,Κάντε κλικ στον παρακάτω σύνδεσμο για να ολοκληρωθεί η εγγραφή σας και να ορίσετε έναν νέο κωδικό πρόσβασης apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,Did not add,Δεν έγινε η προσθήκη -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email Accounts Assigned,Δεν Λογαριασμοί email ειδικό προορισμό +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +183,No Email Accounts Assigned,Δεν Λογαριασμοί email ειδικό προορισμό DocType: Contact Us Settings,Contact Us Settings,Ρυθμίσεις επικοινωνίας apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Αναζήτηση ... DocType: Workflow State,text-width,Text-width @@ -692,38 +694,37 @@ DocType: Feedback Trigger,Check Communication,Ελέγξτε Επικοινων DocType: Address,Rajasthan,Ρατζαστάν apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Οι εκθέσεις του δημιουργού εκθέσεων είναι διαχειρίσημες απευθείας από τον δημιουργό εκθέσεων. Δεν υπάρχει τίποτα να κάνετε. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε σας Διεύθυνση E-mail -apps/frappe/frappe/model/document.py +1039,none of,Κανένας από +apps/frappe/frappe/model/document.py +1045,none of,Κανένας από apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Στείλτε μου ένα αντίγραφο DocType: Dropbox Settings,App Secret Key,App μυστικό κλειδί DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Τα επιλεγμένα στοιχεία θα εμφανίζονται στην επιφάνεια εργασίας -apps/frappe/frappe/core/doctype/doctype/doctype.py +743,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +872,Kanban Board {0} does not exist.,Kanban Διοικητικό {0} δεν υπάρχει. +apps/frappe/frappe/core/doctype/doctype/doctype.py +745,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +688,Kanban Board {0} does not exist.,Kanban Διοικητικό {0} δεν υπάρχει. +DocType: Data Import,Data Import,Εισαγωγή δεδομένων apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} Αυτή τη στιγμή βλέπετε αυτό το έγγραφο DocType: ToDo,Assigned By Full Name,Ανατεθεί Με Ονοματεπώνυμο apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} Ενημερώθηκε -apps/frappe/frappe/core/doctype/doctype/doctype.py +733,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/core/doctype/doctype/doctype.py +735,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ημέρες πριν DocType: Email Account,Awaiting Password,Εν αναμονή Κωδικός DocType: Address,Address Line 1,Γραμμή διεύθυνσης 1 DocType: Custom DocPerm,Role,Ρόλος apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Ρυθμίσεις... -apps/frappe/frappe/utils/data.py +459,Cent,Σεντ -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Συνθέστε Email -apps/frappe/frappe/config/setup.py +207,"States for workflow (e.g. Draft, Approved, Cancelled).","Καταστάσεις ροής εργασίας ( π.Χ. Σχέδιο , εγκεκριμένη, ακυρομένη ) ." +apps/frappe/frappe/utils/data.py +464,Cent,Σεντ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +171,Compose Email,Συνθέστε Email +apps/frappe/frappe/config/setup.py +214,"States for workflow (e.g. Draft, Approved, Cancelled).","Καταστάσεις ροής εργασίας ( π.Χ. Σχέδιο , εγκεκριμένη, ακυρομένη ) ." DocType: Print Settings,Allow Print for Draft,Επιτρέψτε εκτύπωσης για Σχέδιο apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set Quantity,Ορισμός Ποσότητα -apps/frappe/frappe/public/js/legacy/form.js +343,Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε +apps/frappe/frappe/public/js/legacy/form.js +345,Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε DocType: Contact,Unsubscribed,Χωρίς συνδρομή apps/frappe/frappe/config/setup.py +49,Set custom roles for page and report,Ορίστε προσαρμοσμένες ρόλους για τη σελίδα και αναφορά apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Εκτίμηση: apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status response,Δεν μπορείτε να βρείτε UIDVALIDITY για την αντιμετώπιση κατάστασης IMAP -,Data Import Tool,Εργαλείο εισαγωγής δεδομένων DocType: Address,Dadra and Nagar Haveli,Τη Ντάδρα και τον Ναγκάρ Χάβελι -apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Ανέβασμα αρχείων παρακαλώ περιμένετε για λίγα δευτερόλεπτα. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Attach Your Picture,Επισύναψη της εικόνα σας +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,Attach Your Picture,Επισύναψη της εικόνα σας apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Αξίες σειρά Άλλαξε DocType: Workflow State,Stop,Διακοπή DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Σύνδεσμο προς τη σελίδα που θέλετε να ανοίξετε. Αφήστε κενό αν θέλετε να γίνει μια ομάδα γονέων κάνουν. @@ -747,7 +748,7 @@ DocType: Report,Script Report,Script έκθεσης DocType: OAuth Authorization Code,Scopes,τηλεσκόπια DocType: About Us Settings,Company Introduction,Εισαγωγή εταιρείας DocType: DocField,Length,Μήκος -apps/frappe/frappe/config/setup.py +133,Restore or permanently delete a document.,Επαναφορά ή οριστική διαγραφή ενός εγγράφου. +apps/frappe/frappe/config/setup.py +140,Restore or permanently delete a document.,Επαναφορά ή οριστική διαγραφή ενός εγγράφου. apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,Η δοκιμή GSuite εκτελέστηκε με επιτυχία. Η ενσωμάτωση GSuite έχει ρυθμιστεί σωστά DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like @@ -755,17 +756,19 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +104,App {0} removed,App {0} αφαιρεθεί DocType: Custom DocPerm,Apply User Permissions,Εφαρμογή δικαιωμάτων χρηστών DocType: User,Modules HTML,Ενότητες HTML -apps/frappe/frappe/public/js/frappe/ui/field_group.js +105,Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες +apps/frappe/frappe/public/js/frappe/ui/field_group.js +87,Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες DocType: DocType,Other Settings,άλλες ρυθμίσεις DocType: Data Migration Connector,Frappe,Φραπέ apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,Επισήμανση ως μη αναγνωσμένα apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} δεν έχει οριστεί -DocType: Authentication Log,Operation,Λειτουργία +DocType: Activity Log,Operation,Λειτουργία DocType: Customize Form,Change Label (via Custom Translation),Αλλαγή Label (μέσω Προσαρμοσμένη μετάφραση) apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Δεν έχετε άδεια για {0} {1} {2} DocType: Address,Permanent,Μόνιμος apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Σημείωση: Άλλοι κανόνες άδεια μπορεί επίσης να εφαρμοστεί apps/frappe/frappe/permissions.py +285,Not allowed to access {0} with {1} = {2},Δεν επιτρέπεται η πρόσβαση στο {0} με {1} = {2} +DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later. +","Εάν αυτό είναι επιλεγμένο, θα εισαχθούν σειρές με έγκυρα δεδομένα και μη έγκυρες σειρές θα πεταχτούν σε ένα νέο αρχείο για να εισαγάγετε αργότερα." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Δείτε αυτό στο πρόγραμμα περιήγησής σας DocType: DocType,Search Fields,Πεδία αναζήτησης DocType: System Settings,OTP Issuer Name,Όνομα Εκδότη OTP @@ -773,7 +776,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Φορέας Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Δεν έχει επιλεγεί το έγγραφο apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Συμβάν -apps/frappe/frappe/public/js/frappe/views/communication.js +589,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" +apps/frappe/frappe/public/js/frappe/views/communication.js +591,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Δεν μπορείτε να διαγράψετε τυπικό πεδίο. Μπορείτε να το κρύψει, αν θέλετε" DocType: Top Bar Item,For top bar,Για την μπάρα κορυφής apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Ρυθμιζόμενη για δημιουργία αντιγράφων ασφαλείας. Θα λάβετε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο λήψης @@ -789,35 +792,34 @@ DocType: Workflow State,minus,Πλην DocType: S3 Backup Settings,Bucket,Κάδος apps/frappe/frappe/public/js/frappe/request.js +145,Server Error: Please check your server logs or contact tech support.,Σφάλμα διακομιστή : Παρακαλώ ελέγξτε τα αρχεία καταγραφής του διακομιστή σας ή επικοινωνήστε με την τεχνική υποστήριξη. apps/frappe/frappe/core/doctype/user/user.py +201,Welcome email sent,Το email καλωσορίσματος εστάλη. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +317,Let's prepare the system for first use.,Ας προετοιμαστεί το σύστημα για την πρώτη χρήση. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,Let's prepare the system for first use.,Ας προετοιμαστεί το σύστημα για την πρώτη χρήση. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Προτεινόμενα apps/frappe/frappe/core/doctype/user/user.py +740,Already Registered,Ήδη εγγεγραμμένος DocType: System Settings,Float Precision,Ακρίβεια αριθμού κινητής υποδιαστολής apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Μόνο διαχειριστής μπορεί να επεξεργαστεί -apps/frappe/frappe/public/js/frappe/upload.js +70,Filename,Ονομα αρχείου +apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Ονομα αρχείου DocType: DocType,Editable Grid,Επεξεργάσιμη Grid DocType: Property Setter,Property Setter,Ρυθμιστής ιδιότητας DocType: Web Form,Allow Print,Επιτρέψτε Εκτύπωση apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Δεν υπάρχουν εγκατεστημένες εφαρμογές apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Mark the field as Mandatory,Σημειώστε το πεδίο ως υποχρεωτικό DocType: Communication,Clicked,Έγινε κλικ -apps/frappe/frappe/public/js/legacy/form.js +968,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +978,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} DocType: User,Google User ID,ID χρήστη google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Προγραμματισμένη για να στείλετε DocType: DocType,Track Seen,Track Seen apps/frappe/frappe/desk/form/utils.py +56,This method can only be used to create a Comment,Αυτή η μέθοδος μπορεί να χρησιμοποιηθεί μόνο για να δημιουργήσει ένα σχόλιο DocType: Kanban Board Column,orange,πορτοκάλι -apps/frappe/frappe/public/js/frappe/list/list_renderer.js +626,No {0} found,Όχι {0} βρέθηκαν -apps/frappe/frappe/config/setup.py +245,Add custom forms.,Προσθέστε προσαρμοσμένες φόρμες. +apps/frappe/frappe/public/js/frappe/list/list_renderer.js +627,No {0} found,Όχι {0} βρέθηκαν +apps/frappe/frappe/config/setup.py +252,Add custom forms.,Προσθέστε προσαρμοσμένες φόρμες. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} στο {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +436,submitted this document,υπέβαλε αυτό το έγγραφο apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Το σύστημα παρέχει πολλούς προκαθορισμένες ρόλους. Μπορείτε να προσθέσετε νέους ρόλους για να ορίσετε ειδικότερα δικαιώματα . DocType: Communication,CC,CC DocType: Country,Geo,Γεωγραφία -DocType: Domain Settings,Domains,Τομείς +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,Τομείς DocType: Blog Category,Blog Category,Κατηγορία blog apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Δεν είναι δυνατή η χαρτογράφηση γιατί ακόλουθο όρο αποτυγχάνει: -DocType: Data Migration Connector,Postgres,Postgres DocType: Role Permission for Page and Report,Roles HTML,Html ρόλων apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Επιλέξτε πρώτα μια Brand Image. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Ενεργός @@ -825,9 +827,9 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Bel DocType: Kanban Board Column,Blue,Μπλε apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,All customizations will be removed. Please confirm.,Όλες οι προσαρμογές θα αφαιρεθούν. Παρακαλώ επιβεβαιώστε. DocType: Page,Page HTML,Html σελίδας -apps/frappe/frappe/public/js/frappe/views/treeview.js +286,Further nodes can be only created under 'Group' type nodes,Περαιτέρω κόμβοι μπορούν να δημιουργηθούν μόνο σε κόμβους τύπου ομάδα +apps/frappe/frappe/public/js/frappe/views/treeview.js +278,Further nodes can be only created under 'Group' type nodes,Περαιτέρω κόμβοι μπορούν να δημιουργηθούν μόνο σε κόμβους τύπου ομάδα DocType: SMS Parameter,Header,Κεφαλίδα -apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Άγνωστη στήλη: {0} +apps/frappe/frappe/public/js/frappe/model/model.js +90,Unknown Column: {0},Άγνωστη στήλη: {0} DocType: Email Alert Recipient,Email By Role,Email από το ρόλο apps/frappe/frappe/core/page/permission_manager/permission_manager.js +314,Users with role {0}:,Χρήστες με ρόλο {0}: apps/frappe/frappe/desk/page/applications/applications.py +84,Installing App {0},Εγκατάσταση εφαρμογών {0} @@ -850,22 +852,22 @@ DocType: User,Represents a User in the system.,Αντιπροσωπεύει έν DocType: Communication,Label,Ετικέτα apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει." DocType: User,Modules Access,Ενότητες Πρόσβαση -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +249,Please close this window,Κλείστε αυτό το παράθυρο +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +252,Please close this window,Κλείστε αυτό το παράθυρο DocType: Print Format,Print Format Type,Τύπος μορφοποίησης εκτύπωσης DocType: Newsletter,A Lead with this Email Address should exist,Μια Σύσταση με αυτή την διεύθυνση ηλεκτρονικού ταχυδρομείου θα πρέπει να υπάρχει apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Εφαρμογές Ανοικτού Κώδικα για το Web DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Προσθέστε το όνομα του "Google Web Font" π.χ. "Open Sans" apps/frappe/frappe/public/js/frappe/request.js +154,Request Timed Out,Το χρονικό όριο αίτησης +apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Ενεργοποίηση / απενεργοποίηση τομέων DocType: Role Permission for Page and Report,Allow Roles,Αφήστε Ρόλοι DocType: DocType,Hide Toolbar,Απόκρυψη της γραμμής εργαλείων DocType: User,Last Active,Τελευταία σύνδεση DocType: Email Account,SMTP Settings for outgoing emails,Ρυθμίσεις smtp για εξερχόμενα μηνύματα ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +215,Import Failed,Η εισαγωγή απέτυχε apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Ο κωδικός σας έχει ενημερωθεί. Εδώ είναι ο νέος κωδικός σας DocType: Email Account,Auto Reply Message,Μήνυμα αυτόματης απάντησης DocType: Feedback Trigger,Condition,Συνθήκη -apps/frappe/frappe/utils/data.py +564,{0} hours ago,Πριν από {0} ώρες -apps/frappe/frappe/utils/data.py +574,1 month ago,Πριν από 1 μηνά +apps/frappe/frappe/utils/data.py +576,{0} hours ago,Πριν από {0} ώρες +apps/frappe/frappe/utils/data.py +586,1 month ago,Πριν από 1 μηνά DocType: Contact,User ID,ID χρήστη DocType: Communication,Sent,Εστάλη DocType: Address,Kerala,Κεράλα @@ -895,14 +897,14 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P DocType: Email Account,Yahoo Mail,Yahoo mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Η συνδρομή σας θα λήξει αύριο. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +496,Saved!,Αποθηκεύτηκε! -apps/frappe/frappe/public/js/frappe/form/controls/color.js +82,{0} is not a valid hex color,Το {0} δεν είναι έγκυρο hex χρώμα apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Κυρία apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ενημερώθηκε {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Κύρια εγγραφή DocType: DocType,User Cannot Create,Ο χρήστης δεν μπορεί να δημιουργήσει apps/frappe/frappe/core/doctype/file/file.py +309,Folder {0} does not exist,Φάκελο {0} δεν υπάρχει -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +274,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +277,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! DocType: Customize Form,Enter Form Type,Εισάγετε τύπο φόρμας +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Λείπει η παράμετρος Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Δεν υπάρχουν αρχεία ετικέτα. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Κατάργηση πεδίο DocType: User,Send Password Update Notification,Αποστολή Κωδικού Ειδοποίηση ενημέρωσης @@ -914,7 +916,7 @@ DocType: Kanban Board Column,Green,Πράσινος DocType: Custom DocPerm,Additional Permissions,Πρόσθετα δικαιώματα DocType: Email Account,Always use Account's Email Address as Sender,Πάντα να χρησιμοποιείτε Λογαριασμού διεύθυνση ηλεκτρονικού ταχυδρομείου ως αποστολέα apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Συνδεθείτε για να σχολιάσετε -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Ξεκινήστε την εισαγωγή δεδομένων κάτω από αυτή τη γραμμή +apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Ξεκινήστε την εισαγωγή δεδομένων κάτω από αυτή τη γραμμή apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +491,changed values for {0},μεταβολή των τιμών για {0} DocType: Workflow State,retweet,Retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Προσαρμογή ... @@ -923,7 +925,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +223,Specify DocType: Report,Disabled,Απενεργοποιημένο DocType: Workflow State,eye-close,Eye-close DocType: OAuth Provider Settings,OAuth Provider Settings,Ρυθμίσεις Provider OAuth -apps/frappe/frappe/config/setup.py +257,Applications,Εφαρμογές +apps/frappe/frappe/config/setup.py +264,Applications,Εφαρμογές apps/frappe/frappe/public/js/frappe/request.js +360,Report this issue,Αναφορά αυτού του ζητήματος DocType: Custom Script,Adds a custom script (client or server) to a DocType,Προσθέτει ένα προσαρμοσμένο script (client ή server) σε έναν τύπο εγγράφου DocType: Address,City/Town,Πόλη / χωριό @@ -933,11 +935,10 @@ DocType: Address,Is Your Company Address,Η εταιρεία σας Διεύθυ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Επεξεργασία Σειρά DocType: Workflow Action,Workflow Action Master,Κύρια εγγραφή ενέργειας ροής εργασίας DocType: Custom Field,Field Type,Τύπος πεδίου -apps/frappe/frappe/utils/data.py +489,only.,Μόνο. -apps/frappe/frappe/core/doctype/user/user.py +989,OTP secret can only be reset by the Administrator.,Το μυστικό OTP μπορεί να επαναφερθεί μόνο από το διαχειριστή. +apps/frappe/frappe/utils/data.py +494,only.,Μόνο. +apps/frappe/frappe/core/doctype/user/user.py +991,OTP secret can only be reset by the Administrator.,Το μυστικό OTP μπορεί να επαναφερθεί μόνο από το διαχειριστή. apps/frappe/frappe/utils/password_strength.py +131,Avoid years that are associated with you.,Αποφύγετε χρόνια που σχετίζονται με σας. DocType: GSuite Templates,GSuite Templates,Πρότυπα GSuite -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +659,Descending,Φθίνουσα apps/frappe/frappe/utils/goal.py +109,Goal,Στόχος apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,Άκυρος διακομιστής mail. Παρακαλώ διορθώστε και δοκιμάστε ξανά . DocType: DocField,"For Links, enter the DocType as range. @@ -946,11 +947,10 @@ DocType: Workflow State,film,Ταινία apps/frappe/frappe/model/db_query.py +375,No permission to read {0},Δεν έχετε άδεια για να διαβάσετε {0} apps/frappe/frappe/config/desktop.py +8,Tools,Εργαλεία apps/frappe/frappe/utils/password_strength.py +130,Avoid recent years.,Αποφύγετε τα τελευταία χρόνια. -apps/frappe/frappe/utils/nestedset.py +234,Multiple root nodes not allowed.,Δεν επιτρέπονται πολλαπλοί κόμβοι ρίζες. +apps/frappe/frappe/utils/nestedset.py +237,Multiple root nodes not allowed.,Δεν επιτρέπονται πολλαπλοί κόμβοι ρίζες. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Εάν είναι ενεργοποιημένη, οι χρήστες θα ενημερώνονται κάθε φορά που θα συνδεθούν. Εάν δεν είναι ενεργοποιημένη, οι χρήστες θα ειδοποιηθούν μόνο μία φορά." -apps/frappe/frappe/core/doctype/doctype/doctype.py +608,Invalid {0} condition,Μη έγκυρη προϋπόθεση {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +610,Invalid {0} condition,Μη έγκυρη προϋπόθεση {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Αν επιλεγεί, οι χρήστες δεν θα δείτε το παράθυρο διαλόγου Επιβεβαίωση πρόσβασης." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Πεδίο απαιτείται ταυτότητα για να επεξεργαστείτε τις τιμές χρησιμοποιώντας Έκθεση. Παρακαλώ επιλέξτε το πεδίο ID χρησιμοποιώντας τον επιλογέα Στήλη apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Σχόλια apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Επιβεβαίωση apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,Collapse All,Σύμπτυξη όλων @@ -970,7 +970,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +35,Please specify w DocType: Custom DocPerm,Set User Permissions,Ορίστε τα δικαιώματα χρήστη DocType: Email Account,Email Account Name,Όνομα λογαριασμού ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/page/permission_manager/permission_manager.js +263,Select Document Types,Επιλέξτε τύπους εγγράφων -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +224,Something went wrong while generating dropbox access token. Please check error log for more details.,Κάτι πήγε στραβά κατά τη δημιουργία του διακριτικού πρόσβασης στο dropbox. Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες λεπτομέρειες. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +227,Something went wrong while generating dropbox access token. Please check error log for more details.,Κάτι πήγε στραβά κατά τη δημιουργία του διακριτικού πρόσβασης στο dropbox. Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες λεπτομέρειες. DocType: File,old_parent,Παλαιός γονέας apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Ενημερωτικά δελτία για επαφές.συστάσεις. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","Π.Χ. ""Υποστήριξη "","" Πωλήσεις "","" jerry yang """ @@ -986,26 +986,24 @@ DocType: User,Facebook User ID,Facebook user id DocType: Workflow State,fast-forward,Fast-forward DocType: Communication,Communication,Επικοινωνία apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Ελέγξτε τις στήλες για να επιλέξετε, σύρετε για να αλλάξετε την σειρά." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +797,This is PERMANENT action and you cannot undo. Continue?,Αυτό είναι μόνιμη δράση και δεν μπορείτε να αναιρέσετε. Συνέχεια; DocType: Event,Every Day,Κάθε μέρα DocType: LDAP Settings,Password for Base DN,Κωδικό πρόσβασης για το DN Βάσης apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Πίνακας πεδίο -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Columns based on,Στήλες με βάση +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +170,Columns based on,Στήλες με βάση apps/frappe/frappe/config/integrations.py +73,Enter keys to enable integration with Google GSuite,Εισαγάγετε πλήκτρα για να ενεργοποιήσετε την ενοποίηση με το Google GSuite DocType: Workflow State,move,Μεταφορά -apps/frappe/frappe/model/document.py +1223,Action Failed,δράση απέτυχε +apps/frappe/frappe/model/document.py +1229,Action Failed,δράση απέτυχε apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,για χρήστη -apps/frappe/frappe/public/js/frappe/views/treeview.js +371,Chart of Accounts,Λογιστικό σχέδιο +apps/frappe/frappe/public/js/frappe/views/treeview.js +363,Chart of Accounts,Λογιστικό σχέδιο DocType: Address,Assam,Assam -apps/frappe/frappe/core/page/usage_info/usage_info.html +4,You have {0} days left in your subscription,Έχετε αφήσει {0} ημέρες στη συνδρομή σας +apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Έχετε αφήσει {0} ημέρες στη συνδρομή σας apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Ο λογαριασμός εξερχόμενου ηλεκτρονικού ταχυδρομείου δεν είναι σωστός apps/frappe/frappe/core/doctype/user/user.py +745,Temperorily Disabled,άτομα με ειδικές ανάγκες Temperorily -apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Installed -apps/frappe/frappe/contacts/doctype/contact/contact.py +78,Please set Email Address,Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου +apps/frappe/frappe/desk/page/applications/applications.py +89,{0} Installed,{0} Εγκαταστημένο +apps/frappe/frappe/contacts/doctype/contact/contact.py +83,Please set Email Address,Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: System Settings,Date and Number Format,Ημερομηνία και μορφή αριθμών apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Μέγιστο μέγεθος συνημμένου είναι {0} MB -apps/frappe/frappe/model/document.py +1038,one of,Ένας από -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Επιλέξτε αρχείο για αντιγραφή +apps/frappe/frappe/model/document.py +1044,one of,Ένας από apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Έλεγχος μια στιγμή apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Δείτε τις ετικέτες DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Εάν επιλεγεί η άδεια χρήσης αυστηρού χρήστη και η άδεια χρήστη είναι ορισμένη για ένα έγγραφο τύπου DocType για έναν χρήστη, τότε όλα τα έγγραφα όπου η τιμή του συνδέσμου είναι κενή, δεν θα εμφανίζονται στον εν λόγω χρήστη" @@ -1015,15 +1013,16 @@ DocType: Web Form,Actions,Ενέργειες DocType: Workflow State,align-justify,Ευθυγράμμιση σε όλη τη γραμμή DocType: User,Middle Name (Optional),Πατρώνυμο (προαιρετικό) apps/frappe/frappe/public/js/frappe/request.js +96,Not Permitted,Δεν επιτρέπεται -apps/frappe/frappe/public/js/frappe/ui/field_group.js +106,Following fields have missing values:,Μετά πεδία έχουν τις τιμές που λείπουν: -apps/frappe/frappe/app.py +154,You do not have enough permissions to complete the action,Δεν έχετε επαρκή δικαιώματα για την ολοκλήρωση της δράσης +apps/frappe/frappe/public/js/frappe/ui/field_group.js +88,Following fields have missing values:,Μετά πεδία έχουν τις τιμές που λείπουν: +apps/frappe/frappe/app.py +161,You do not have enough permissions to complete the action,Δεν έχετε επαρκή δικαιώματα για την ολοκλήρωση της δράσης apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Δεν υπάρχουν αποτελέσματα DocType: System Settings,Security,Ασφάλεια apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Προγραμματισμένη για να αποσταλεί σε {0} αποδέκτες +apps/frappe/frappe/public/js/frappe/views/file/file_view.js +47,Cut,Τομή apps/frappe/frappe/model/rename_doc.py +79,renamed from {0} to {1},μετονομάστηκε από {0} έως {1} DocType: Currency,**Currency** Master,Κύρια εγγραφή ** νομίσματος ** DocType: Email Account,No of emails remaining to be synced,Αριθμός μηνυμάτων ηλεκτρονικού ταχυδρομείου που απομένουν να συγχρονιστεί -apps/frappe/frappe/public/js/frappe/upload.js +209,Uploading,Μεταφόρτωση +apps/frappe/frappe/public/js/frappe/upload.js +226,Uploading,Μεταφόρτωση apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Παρακαλούμε να αποθηκεύσετε το έγγραφο πριν από το διορισμό apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Κάντε κλικ εδώ για να δημοσιεύσετε σφάλματα και προτάσεις DocType: Website Settings,Address and other legal information you may want to put in the footer.,Η διεύθυνση και άλλα νομικά στοιχεία που μπορεί να θέλετε να βάλετε στο υποσέλιδο. @@ -1035,7 +1034,6 @@ apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nod apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,{0} λεπτά πριν DocType: Kanban Board Column,lightblue,γαλάζιο apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Το ίδιο πεδίο εισάγεται περισσότερες από μία φορές -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Επιλέξτε Στήλες apps/frappe/frappe/templates/includes/list/filters.html +19,clear,σαφής apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Τα καθημερινά συμβάντα θα πρέπει να ολοκληρώνονται την ίδια ημέρα. DocType: Communication,User Tags,Ετικέτες χρηστών @@ -1049,7 +1047,8 @@ apps/frappe/frappe/www/login.html +27,Sign in,Συνδεθείτε DocType: Web Page,Main Section,Κύριο τμήμα DocType: Page,Icon,Εικονίδιο apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +56,to filter values between 5 & 10,να φιλτράρετε τιμές μεταξύ 5 και 10 -apps/frappe/frappe/core/doctype/user/user.py +903,"Hint: Include symbols, numbers and capital letters in the password","Συμβουλή: Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" +apps/frappe/frappe/core/doctype/user/user.py +905,"Hint: Include symbols, numbers and capital letters in the password","Συμβουλή: Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Εγκατάσταση> Διαχείριση δικαιωμάτων χρηστών apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +86,PDF,PDF DocType: System Settings,dd/mm/yyyy,Ηη/μμ/εεεε apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Δοκιμή σεναρίου GSuite @@ -1070,42 +1069,44 @@ DocType: Website Settings,Copyright,Πνευματική ιδιοκτησία apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Πάω DocType: OAuth Authorization Code,Invalid,Άκυρος DocType: ToDo,Due Date,Ημερομηνία λήξης προθεσμίας -apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +100,Quarter Day,Ημέρα τρίμηνο +apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +136,Quarter Day,Ημέρα τρίμηνο DocType: Social Login Keys,Google Client Secret,Google client secret DocType: Website Settings,Hide Footer Signup,Απόκρυψη Υποσέλιδο Εγγραφή apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +438,cancelled this document,ακυρωθεί αυτό το έγγραφο apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Γράψτε ένα αρχείο python στον ίδιο φάκελο όπου αυτό αποθηκεύεται και επέστρεψε στήλη και αποτέλεσμα. DocType: DocType,Sort Field,Πεδίο ταξινόμησης DocType: Razorpay Settings,Razorpay Settings,Ρυθμίσεις Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +487,Edit Filter,Επεξεργασία φίλτρου -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +222,Edit Filter,Επεξεργασία φίλτρου +apps/frappe/frappe/core/doctype/doctype/doctype.py +424,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Πρόσθεσε περισσότερα DocType: System Settings,Session Expiry Mobile,Συνεδρία λήξης Κινητό apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Αποτελέσματα αναζήτησης για apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,Select To Download:,Επιλέξτε για να κατεβάσετε : apps/frappe/frappe/core/page/permission_manager/permission_manager.js +440,If {0} is permitted,Αν {0} επιτρέπεται DocType: Custom DocPerm,If user is the owner,Εάν ο χρήστης είναι ο ιδιοκτήτης +apps/frappe/frappe/config/integrations.py +88,Maps,Χάρτες ,Activity,Δραστηριότητα DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Βοήθεια: για να συνδέσετε με άλλη εγγραφή στο σύστημα, χρησιμοποιήστε '""#Form/Note/[Note Name]', σαν διεύθυνση url σύνδεσης. (Δεν χρησιμοποιείται 'http://')" DocType: User Permission,Allow,Επιτρέπω apps/frappe/frappe/utils/password_strength.py +113,Let's avoid repeated words and characters,Ας αποφεύγουν επαναλαμβανόμενες λέξεις και χαρακτήρες DocType: Communication,Delayed,Καθυστερημένη -apps/frappe/frappe/config/setup.py +126,List of backups available for download,Κατάλογος των αντιγράφων ασφαλείας διαθέσιμο για download +apps/frappe/frappe/config/setup.py +133,List of backups available for download,Κατάλογος των αντιγράφων ασφαλείας διαθέσιμο για download apps/frappe/frappe/www/login.html +86,Sign up,Εγγραφή DocType: Test Runner,Output,Παραγωγή DocType: Email Alert,Set Property After Alert,Ορισμός ιδιότητας μετά την ειδοποίηση -apps/frappe/frappe/config/setup.py +229,Add fields to forms.,Προσθήκη πεδίων σε φόρμες. +apps/frappe/frappe/config/setup.py +236,Add fields to forms.,Προσθήκη πεδίων σε φόρμες. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +158,Looks like something is wrong with this site's Paypal configuration.,Φαίνεται ότι κάτι δεν πάει καλά με τη διαμόρφωση Paypal αυτού του ιστότοπου. DocType: File,rgt,Rgt DocType: Email Account,Sendgrid,Sendgrid +apps/frappe/frappe/core/doctype/data_import/data_import.js +167,File Type,Τύπος αρχείου DocType: Workflow State,leaf,Φύλλο DocType: Portal Menu Item,Portal Menu Item,Portal Στοιχείο Μενού DocType: Contact Us Settings,Email ID,Email ID +DocType: Activity Log,Keep track of all update feeds,Παρακολουθήστε όλες τις ροές ενημέρωσης DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Εάν το Εφαρμογή δικαιωμάτων χρήστη έχει επιλεγεί για το Report DocType, αλλά δεν έχουν οριστεί δικαιώματα χρήστη για την αναφορά για έναν χρήστη, τότε όλες οι αναφορές εμφανίζονται στον συγκεκριμένο χρήστη" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.Reference: {{ reference_doctype }} {{ reference_name }}
to send document reference,PROTIP: Προσθέστε Reference: {{ reference_doctype }} {{ reference_name }}
για να στείλει έγγραφο αναφοράς
apps/frappe/frappe/modules/utils.py +196,App not found,Δεν βρέθηκε η εφαρμογή
apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Δεν μπορείτε να δημιουργήσετε ένα {0} κατά ένα έγγραφο παιδί: {1}
@@ -1899,7 +1903,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Selec
DocType: Contact,Passive,Αδρανής
DocType: Contact,Accounts Manager,Διαχειριστής λογαριασμών
apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Η πληρωμή σας ακυρώνεται.
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +713,Select File Type,Επιλογή τύπου αρχείου
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +648,Select File Type,Επιλογή τύπου αρχείου
DocType: Help Article,Knowledge Base Editor,Γνώση Επεξεργαστής Βάσης
apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Η σελίδα δεν βρέθηκε
DocType: DocField,Precision,Ακρίβεια
@@ -1926,12 +1930,12 @@ DocType: Property Setter,Property Type,Τύπος ιδιότητας
DocType: Workflow State,screenshot,Screenshot
apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Μόνο ο διαχειριστής μπορεί να αποθηκεύσει μια πρότυπη έκθεση. Παρακαλώ να μετονομάσετε και να αποθηκεύσετε.
DocType: System Settings,Background Workers,Οι εργαζόμενοι φόντο
-apps/frappe/frappe/core/doctype/doctype/doctype.py +806,Fieldname {0} conflicting with meta object,Όνομα πεδίου {0} που έρχεται σε σύγκρουση με αντικείμενο meta
+apps/frappe/frappe/core/doctype/doctype/doctype.py +809,Fieldname {0} conflicting with meta object,Όνομα πεδίου {0} που έρχεται σε σύγκρουση με αντικείμενο meta
DocType: Deleted Document,Data,Δεδομένα
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Κατάσταση εγγράφου
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Κάνατε {0} από {1}
DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Κωδικός Εξουσιοδότησης
-apps/frappe/frappe/core/page/data_import_tool/importer.py +262,Not allowed to Import,Δεν επιτρέπεται η εισαγωγή
+apps/frappe/frappe/core/doctype/data_import/importer.py +304,Not allowed to Import,Δεν επιτρέπεται η εισαγωγή
DocType: Social Login Keys,Frappe Client Secret,Φραπέ πελάτη Secret
DocType: Deleted Document,Deleted DocType,διαγράφεται DocType
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Επίπεδα δικαιωμάτων
@@ -1939,11 +1943,11 @@ DocType: Workflow State,Warning,Προειδοποίηση
DocType: Data Migration Run,Percent Complete,Το ποσοστό ολοκληρώνεται
DocType: Tag Category,Tag Category,Tag Κατηγορία
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +819,"Ignoring Item {0}, because a group exists with the same name!","Αγνοώντας Θέση {0} , διότι υπάρχει μια ομάδα με το ίδιο όνομα !"
-apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +202,Help,Βοήθεια
+apps/frappe/frappe/core/doctype/data_import/data_import.js +53,Help,Βοήθεια
DocType: User,Login Before,Είσοδος πριν από
DocType: Web Page,Insert Style,Εισαγωγή style
-apps/frappe/frappe/config/setup.py +262,Application Installer,Εγκατάσταση εφαρμογών
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +778,New Report name,Νέο όνομα Έκθεση
+apps/frappe/frappe/config/setup.py +269,Application Installer,Εγκατάσταση εφαρμογών
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +567,New Report name,Νέο όνομα Έκθεση
DocType: Workflow State,info-sign,Info-sign
apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Σχέση {0} δεν μπορεί να είναι μια λίστα
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Πώς θα πρέπει αυτό το νόμισμα να μορφοποιηθεί; Αν δεν έχει οριστεί, θα χρησιμοποιήσει τις προεπιλογές του συστήματος"
@@ -1956,6 +1960,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +322,Fieldtyp
apps/frappe/frappe/public/js/frappe/roles_editor.js +204,Role Permissions,Δικαιώματα ρόλου
DocType: Help Article,Intermediate,Ενδιάμεσος
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Ακυρωμένο έγγραφο που έχει αποκατασταθεί ως σχέδιο
+apps/frappe/frappe/model/delete_doc.py +252,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Δεν μπορεί να διαγραφεί ή να ακυρωθεί επειδή {0} {1} συνδέεται με {2} {3} {4}
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Μπορεί Διαβάστε
DocType: Custom Role,Response,Απάντηση
DocType: DocField,Geolocation,Γεωγραφική θέση
@@ -1979,8 +1984,8 @@ DocType: OAuth Client,Default Redirect URI,Προεπιλογή Ανακατεύ
DocType: Email Alert,Recipients,Παραλήπτες
DocType: System Settings,Choose authentication method to be used by all users,Επιλέξτε τη μέθοδο ελέγχου ταυτότητας που θα χρησιμοποιηθεί από όλους τους χρήστες
DocType: Workflow State,ok-sign,Ok-sign
-apps/frappe/frappe/config/setup.py +132,Deleted Documents,Διαγραμμένα έγγραφα
-apps/frappe/frappe/public/js/frappe/form/grid.js +662,The CSV format is case sensitive,Η μορφή CSV είναι ευαίσθητη στις πεζά
+apps/frappe/frappe/config/setup.py +139,Deleted Documents,Διαγραμμένα έγγραφα
+apps/frappe/frappe/public/js/frappe/form/grid.js +646,The CSV format is case sensitive,Η μορφή CSV είναι ευαίσθητη στις πεζά
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Το εικονίδιο επιφάνειας εργασίας υπάρχει ήδη
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Διπλότυπο
DocType: Newsletter,Create and Send Newsletters,Δημιουργήστε και στείλτε τα ενημερωτικά δελτία
@@ -1988,14 +1993,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
DocType: Address,Andaman and Nicobar Islands,Νήσων Ανταμάν και Νικομπάρ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +247,GSuite Document,Έγγραφο GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +38,Please specify which value field must be checked,Παρακαλώ ορίστε ποιο πεδίο τιμής πρέπει να ελεγχθεί
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",H λέξη «γονικός» δηλώνει το γονικό πίνακα στον οποίο πρέπει να προστεθεί αυτή η σειρά
+apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",H λέξη «γονικός» δηλώνει το γονικό πίνακα στον οποίο πρέπει να προστεθεί αυτή η σειρά
apps/frappe/frappe/email/queue.py +239,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Δεν είναι δυνατή η αποστολή αυτού του μηνύματος. Έχετε περάσει το όριο αποστολής {0} ηλεκτρονικών μηνυμάτων για αυτήν την ημέρα.
DocType: Website Theme,Apply Style,Εφαρμογή στυλ
DocType: Feedback Request,Feedback Rating,feedback Αξιολόγηση
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Κοινόχρηστο Με
DocType: Help Category,Help Articles,άρθρα Βοήθειας
,Modules Setup,Ρυθμίσεις λειτουργικής μονάδας
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Type:,Τύπος:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Τύπος:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Η πληρωμή σας απέτυχε.
DocType: Communication,Unshared,επιμερισμένα
DocType: Address,Karnataka,Καρνάτακα
@@ -2004,12 +2009,11 @@ DocType: User,Location,Τοποθεσία
,Permitted Documents For User,Επιτρεπόμενα έγγραφα για το χρήστη
apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Θα πρέπει να έχετε άδεια ""Κοινοποίησης"""
DocType: Communication,Assignment Completed,εκχώρηση Ολοκληρώθηκε
-apps/frappe/frappe/public/js/frappe/form/grid.js +658,Bulk Edit {0},Μαζική Επεξεργασία {0}
+apps/frappe/frappe/public/js/frappe/form/grid.js +642,Bulk Edit {0},Μαζική Επεξεργασία {0}
DocType: Email Alert Recipient,Email Alert Recipient,Παραλήπτης ειδοποίησης email
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ανενεργό
DocType: About Us Settings,Settings for the About Us Page,Ρυθμίσεις για τη σελίδα προφίλ.
apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Ρυθμίσεις πύλης πληρωμής
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Επιλέξτε τύπο εγγράφου για λήψη
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,π.χ. pop.gmail.com / imap.gmail.com
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Χρησιμοποιήστε το πεδίο για να φιλτράρετε τις εγγραφές
DocType: DocType,View Settings,Ρυθμίσεις προβολής
@@ -2032,6 +2036,7 @@ apps/frappe/frappe/model/document.py +666,Cannot edit cancelled document,Δεν
DocType: Unhandled Email,Unhandled Email,δεν επιλύεται Email
DocType: Event,Monday,Δευτέρα
apps/frappe/frappe/utils/password_strength.py +88,Make use of longer keyboard patterns,Κάνουν χρήση των πλέον μοτίβα πληκτρολογίου
+DocType: Data Import,Don't create new records,Μην δημιουργείτε νέα αρχεία
apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the Administrator.,Σφάλμα εμφωλευμένου συνόλου. Παρακαλώ επικοινωνήστε με το διαχειριστή .
DocType: Workflow State,envelope,Φάκελος
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Επιλογή 2
@@ -2042,41 +2047,41 @@ DocType: Website Settings,Brand Image,brand Εικόνα
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Ρύθμιση της επάνω γραμμή πλοήγησης, του υποσέλιδου και του λογότυπου."
DocType: Web Form Field,Max Value,Μέγιστη τιμή
-apps/frappe/frappe/core/doctype/doctype/doctype.py +679,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +681,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3}
DocType: Contact,All,Όλα
DocType: Email Queue,Recipient,Παραλήπτης
DocType: Communication,Has Attachment,έχει Συνημμένο
DocType: Address,Sales User,Χρήστης πωλήσεων
-apps/frappe/frappe/config/setup.py +176,Drag and Drop tool to build and customize Print Formats.,Drag and drop εργαλείο για την δημιουργία και προσαρμογή των μορφών εκτύπωσης.
+apps/frappe/frappe/config/setup.py +183,Drag and Drop tool to build and customize Print Formats.,Drag and drop εργαλείο για την δημιουργία και προσαρμογή των μορφών εκτύπωσης.
apps/frappe/frappe/public/js/frappe/ui/tree.js +134,Expand,Ανάπτυξη
DocType: Address,Sikkim,Sikkim
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +447,Set,Σετ
apps/frappe/frappe/desk/search.py +42,This query style is discontinued,Αυτό το στυλ ερωτήματος διακόπτεται
DocType: Email Alert,Trigger Method,Μέθοδος σκανδάλη
-apps/frappe/frappe/utils/data.py +762,Operator must be one of {0},Ο χειριστής πρέπει να είναι ένας από τους {0}
+apps/frappe/frappe/utils/data.py +774,Operator must be one of {0},Ο χειριστής πρέπει να είναι ένας από τους {0}
DocType: Dropbox Settings,Dropbox Access Token,Dockbox Access Token
DocType: Workflow State,align-right,Ευθυγράμμιση δεξιά
DocType: Auto Email Report,Email To,E-mail Για να
apps/frappe/frappe/core/doctype/file/file.py +224,Folder {0} is not empty,Φάκελο {0} δεν είναι άδειο
DocType: Page,Roles,Ρόλοι
apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Σφάλμα: Λείπει τιμή για {0}: {1}
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +328,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο .
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +117,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο .
DocType: Webhook,Webhook,Webhook
DocType: System Settings,Session Expiry,Λήξη συνεδρίας
DocType: Workflow State,ban-circle,Ban-circle
DocType: Email Flag Queue,Unread,Αδιάβαστος
DocType: Bulk Update,Desk,Γραφείο
-apps/frappe/frappe/utils/data.py +746,Filter must be a tuple or list (in a list),Το φίλτρο πρέπει να είναι πλειάδα ή λίστα (σε μια λίστα)
+apps/frappe/frappe/utils/data.py +758,Filter must be a tuple or list (in a list),Το φίλτρο πρέπει να είναι πλειάδα ή λίστα (σε μια λίστα)
apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Γράψτε ένα ερώτημα select. Σημείωση: το αποτέλεσμα δεν σελιδοποιείται (όλα τα δεδομένα αποστέλλονται σε μια δόση).
DocType: Email Account,Attachment Limit (MB),Όριο συνημμένο (mb)
DocType: Address,Arunachal Pradesh,Arunachal Pradesh
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Ρύθμιση Auto Email
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +670,Setup Auto Email,Ρύθμιση Auto Email
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Down
apps/frappe/frappe/utils/password_strength.py +169,This is a top-10 common password.,Αυτό είναι ένα κοινό κωδικό top-10.
DocType: User,User Defaults,Προεπιλογές προφίλ χρήστη
apps/frappe/frappe/public/js/frappe/views/treeview.js +247,Create New,Δημιουργία νέου
DocType: Workflow State,chevron-down,Chevron-down
-apps/frappe/frappe/public/js/frappe/views/communication.js +514,Email not sent to {0} (unsubscribed / disabled),Ηλεκτρονικό ταχυδρομείο δεν αποστέλλονται σε {0} (αδιάθετων / άτομα με ειδικές ανάγκες)
+apps/frappe/frappe/public/js/frappe/views/communication.js +516,Email not sent to {0} (unsubscribed / disabled),Ηλεκτρονικό ταχυδρομείο δεν αποστέλλονται σε {0} (αδιάθετων / άτομα με ειδικές ανάγκες)
DocType: Async Task,Traceback,Ανατρέχω
DocType: Currency,Smallest Currency Fraction Value,Ο μικρότερος Νόμισμα κλάσμα Αξία
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Ανάθεση σε
@@ -2096,7 +2101,7 @@ apps/frappe/frappe/model/base_document.py +574,Not allowed to change {0} after s
DocType: Data Migration Mapping,Migration ID Field,Πεδίο ταυτότητας μετανάστευσης
DocType: Communication,Comment Type,Τύπος σχολίου
DocType: OAuth Client,OAuth Client,πελάτη OAuth
-apps/frappe/frappe/core/page/usage_info/usage_info.html +16,Users,Χρήστες
+apps/frappe/frappe/core/page/usage_info/usage_info.html +18,Users,Χρήστες
DocType: Communication,Timeline field Name,Χρονοδιάγραμμα πεδίο Όνομα
DocType: Address,Odisha,Οδησία
DocType: Report,Report Type,Τύπος έκθεσης
@@ -2106,7 +2111,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +141,Loadi
apps/frappe/frappe/config/integrations.py +48,"Enter keys to enable login via Facebook, Google, GitHub.","Εισάγετε κλειδιά για να ενεργοποιήσετε την είσοδο μέσω του facebook, google, github."
apps/frappe/frappe/core/doctype/file/file.py +365,Unable to read file format for {0},Δεν είναι δυνατή η ανάγνωση της μορφής αρχείου για το {0}
DocType: Auto Email Report,Filter Data,Φιλτράρετε δεδομένα
-apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Προσθήκη ετικέτας
apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα.
apps/frappe/frappe/model/naming.py +175,"There were some errors setting the name, please contact the administrator","Εμφανίστηκαν κάποια σφάλματα κατά τη ρύθμιση του ονόματος, Παρακαλώ επικοινωνήστε με το διαχειριστή"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Ο εισερχόμενος λογαριασμός ηλεκτρονικού ταχυδρομείου δεν είναι σωστός
@@ -2129,7 +2133,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Α
DocType: Website Theme,Link Color,Χρώμα δεσμού
apps/frappe/frappe/core/doctype/user/user.py +109,User {0} cannot be disabled,Ο χρήστης {0} δεν μπορεί να απενεργοποιηθεί
apps/frappe/frappe/templates/emails/administrator_logged_in.html +1,"Dear System Manager,","Αγαπητέ Διευθυντή του Συστήματος,"
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Your Country,Η χώρα σου
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Your Country,Η χώρα σου
DocType: Event,Sunday,Κυριακή
apps/frappe/frappe/core/doctype/doctype/doctype.js +39,In Grid View,Στην προβολή πλέγματος
DocType: Address Template,Template,Πρότυπο
@@ -2154,7 +2158,7 @@ DocType: DocField,Table,Πίνακας
DocType: File,File Size,Μέγεθος αρχείου
apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Θα πρέπει να συνδεθείτε για να υποβάλετε το αυτή τη φόρμα
DocType: User,Background Image,Εικόνα φόντου
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +350,"Select your Country, Time Zone and Currency",Επιλέξτε τη χώρα σας και ελέγξτε την ζώνη ώρας και το νόμισμα.
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +382,"Select your Country, Time Zone and Currency",Επιλέξτε τη χώρα σας και ελέγξτε την ζώνη ώρας και το νόμισμα.
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Μεταξύ
DocType: Async Task,Queued,Στην ουρά
@@ -2168,12 +2172,12 @@ DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,App Κλειδί Πρόσβασης
DocType: OAuth Bearer Token,Access Token,Η πρόσβαση παραχωρήθηκε
DocType: About Us Settings,Org History,Ιστορικό οργανισμού
-apps/frappe/frappe/core/page/usage_info/usage_info.html +64,Backup Size:,Μέγεθος αντιγράφων ασφαλείας:
+apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Μέγεθος αντιγράφων ασφαλείας:
DocType: Workflow,Workflow Name,Όνομα ροής εργασιών
DocType: DocShare,Notify by Email,Ειδοποίηση με e-mail
DocType: DocField,In Standard Filter,Στο Πρότυπο Φίλτρο
DocType: Web Form,Allow Edit,Επιτρέψτε επεξεργασία
-apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Πάστα
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +54,Paste,Πάστα
DocType: Webhook,Doc Events,Συμβάντα εγγράφων
DocType: Auto Email Report,Based on Permissions For User,Με βάση τις Άδειες για το χρήστη
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Δεν μπορεί να αλλάξει η κατάσταση ενός ακυρωμένου εγγράφου. Γραμμή μετάβασης {0}
@@ -2186,10 +2190,11 @@ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,
apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Εισάγετε Μετά πεδίο '{0}' αναφέρεται στην Προσαρμοσμένο πεδίο '{1}', με την ετικέτα '{2}', δεν υπάρχει"
DocType: Workflow State,signal,Σήμα
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +100,Has Attachments,Έχει συνημμένα
DocType: DocType,Show Print First,Προβολή εκτύπωσης πρώτα
apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter για να δημοσιεύσετε
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Κάντε μια νέα {0}
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Νέος λογαριασμός ηλεκτρονικού ταχυδρομείου
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +164,New Email Account,Νέος λογαριασμός ηλεκτρονικού ταχυδρομείου
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Επισκευή εγγράφου
apps/frappe/frappe/public/js/frappe/form/print.js +109,Select Language...,Επιλέξτε γλώσσα...
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +200,You can't set 'Options' for field {0},Δεν μπορείτε να ορίσετε «Επιλογές» για το πεδίο {0}
@@ -2210,13 +2215,14 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,P
apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Μετακίνηση στον κάδο απορριμμάτων
DocType: Web Form,Web Form Fields,Πεδία φόρμας ιστοσελίδας
DocType: Website Theme,Top Bar Text Color,Top Bar Χρώμα κειμένου
+DocType: Data Import,Amended From,Τροποποίηση από
apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Προειδοποίηση: Ανίκανος να βρει {0} σε κάθε τραπέζι που σχετίζονται με {1}
-apps/frappe/frappe/model/document.py +1179,This document is currently queued for execution. Please try again,Αυτό το έγγραφο αυτή τη στιγμή στην ουρά για εκτέλεση. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα
+apps/frappe/frappe/model/document.py +1185,This document is currently queued for execution. Please try again,Αυτό το έγγραφο αυτή τη στιγμή στην ουρά για εκτέλεση. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα
apps/frappe/frappe/core/doctype/file/file.py +392,File '{0}' not found,Αρχείο '{0}' δεν βρέθηκε
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Κατάργηση τμήματος
DocType: User,Change Password,Άλλαξε κωδικό
apps/frappe/frappe/public/js/frappe/form/controls/data.js +121,Invalid Email: {0},Μη έγκυρο email : {0}
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +315,Hello!,Γειά σου!
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +348,Hello!,Γειά σου!
apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Η λήξη συμβάντος πρέπει να είναι μετά την έναρξη
apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Αυτό θα αποσυνδεθεί {0} από όλες τις άλλες συσκευές
apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Δεν έχετε άδεια για να πάρετε μια έκθεση σχετικά με: {0}
@@ -2225,26 +2231,27 @@ DocType: DocField,Allow Bulk Edit,Να επιτρέπεται η μαζική ε
DocType: Blog Post,Blog Post,Δημοσίευση blog
apps/frappe/frappe/public/js/frappe/form/controls/link.js +179,Advanced Search,Σύνθετη αναζήτηση
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Δεν επιτρέπεται να βλέπετε το ενημερωτικό δελτίο.
-apps/frappe/frappe/core/doctype/user/user.py +784,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας
+apps/frappe/frappe/core/doctype/user/user.py +786,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου."
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +655,Sort By,Ταξινόμηση
+apps/frappe/frappe/core/doctype/data_import/data_import.py +23,Can't save the form as data import is in progress.,Δεν είναι δυνατή η αποθήκευση της φόρμας καθώς η εισαγωγή δεδομένων βρίσκεται σε εξέλιξη.
DocType: Workflow,States,Καταστάσεις
DocType: Email Alert,Attach Print,Συνδέστε Εκτύπωση
apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Προτεινόμενη Όνομα Χρήστη: {0}
-apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Day,Ημέρα
+apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +135,Day,Ημέρα
,Modules,ενότητες
apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Ορίστε εικονίδια της επιφάνειας εργασίας
apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,επιτυχία πληρωμής
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Όχι {0} ταχυδρομείου
-apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Σφάλμα κατά τη μεταφόρτωση αρχείων
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +158,No {0} mail,Όχι {0} ταχυδρομείου
+apps/frappe/frappe/public/js/frappe/views/file/file_view.js +95,Error in uploading files,Σφάλμα κατά τη μεταφόρτωση αρχείων
DocType: OAuth Bearer Token,Revoked,ανακλήθηκε
DocType: Web Page,Sidebar and Comments,Sidebar και Σχόλια
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Όταν τροποποιείτε ένα έγγραφο μετά ακυρώστε και αποθηκεύστε το, θα πάρει ένα νέο αριθμό που είναι μια έκδοση του παλιού αριθμού."
DocType: Stripe Settings,Publishable Key,Κλειδί δημοσίευσης
+apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Start Import,Έναρξη εισαγωγής
DocType: Workflow State,circle-arrow-left,Circle-arrow-left
apps/frappe/frappe/sessions.py +163,Redis cache server not running. Please contact Administrator / Tech support,Ο διακομιστής cache Redis δεν λειτουργεί. Παρακαλώ επικοινωνήστε με το διαχειριστή / τεχνική υποστήριξη
-apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Όνομα κόμμα
+apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +22,Party Name,Όνομα κόμμα
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Δημιουργία νέας εγγραφής
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Ερευνητικός
DocType: Currency,Fraction,Κλάσμα
@@ -2269,8 +2276,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +88,There
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Βρες είδη
DocType: Contact,Image,Εικόνα
DocType: Workflow State,remove-sign,Remove-sign
+DocType: Domain Settings,Domains HTML,Domains HTML
apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Πληκτρολογήστε κάτι στο πλαίσιο αναζήτησης για να αναζητήσετε
-apps/frappe/frappe/config/setup.py +202,Define workflows for forms.,Ορίστε τις ροές εργασίας για φόρμες.
+apps/frappe/frappe/config/setup.py +209,Define workflows for forms.,Ορίστε τις ροές εργασίας για φόρμες.
DocType: Address,Other,Άλλος
DocType: S3 Backup Settings,Access Key ID,Αναγνωριστικό κλειδιού πρόσβασης
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Ξεκινήστε νέα μορφή
@@ -2283,6 +2291,7 @@ DocType: Customize Form Field,Is Custom Field,Είναι Προσαρμοσμέ
DocType: Workflow,"If checked, all other workflows become inactive.","Εάν είναι επιλεγμένο, όλες οι άλλες ροές εργασίας γίνονται ανενεργές."
apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Ετικέτα]:[Τύπος Πεδίου]/[Επιλογές]:[Πλάτος]
DocType: Workflow State,folder-close,Folder-close
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +9,Report:,Κανω ΑΝΑΦΟΡΑ:
DocType: Print Settings,Print taxes with zero amount,Εκτυπώστε φόρους με μηδενικό ποσό
apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} Δεν επιτρέπεται να μετονομαστεί
DocType: Custom Script,Custom Script,Προσαρμοσμένο script
@@ -2294,32 +2303,35 @@ DocType: Email Flag Queue,Action,Ενέργεια
DocType: GSuite Settings,Script URL,URL δέσμης ενεργειών
apps/frappe/frappe/www/update-password.html +111,Please enter the password,Παρακαλώ εισάγετε τον κωδικό πρόσβασης
apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Δεν επιτρέπεται να εκτυπώσετε ακυρωθεί έγγραφα
-apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not allowed to create columns,Δεν επιτρέπεται να δημιουργήσετε στήλες
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +270,Info:,Πληροφορίες:
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +70,You are not allowed to create columns,Δεν επιτρέπεται να δημιουργήσετε στήλες
+DocType: Data Import,If you don't want to create any new records while updating the older records.,Αν δεν θέλετε να δημιουργήσετε νέες εγγραφές κατά την ενημέρωση των παλαιότερων αρχείων.
+apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Πληροφορίες:
DocType: Custom Field,Permission Level,Επίπεδο δικαιωμάτων
DocType: User,Send Notifications for Transactions I Follow,Αποστολή ειδοποιήσεων για συναλλαγές που παρακολουθώ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +722,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +724,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή"
+DocType: Google Maps,Client Key,Κλειδί πελάτη
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Είστε σίγουροι ότι θέλετε να διαγράψετε το συνημμένο;
-apps/frappe/frappe/model/delete_doc.py +200,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} {1} συνδέεται με {2} {3}"
apps/frappe/frappe/__init__.py +1093,Thank you,Σας ευχαριστούμε
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Οικονομία
DocType: Print Settings,Print Style Preview,Προεπισκόπηση στυλ εκτύπωσης
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Δεν επιτρέπεται να ενημερώσετε αυτό το έγγραφο έντυπο Web
-apps/frappe/frappe/core/page/usage_info/usage_info.html +29,Emails,Ηλεκτρονικά μηνύματα
+apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Ηλεκτρονικά μηνύματα
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Επιλέξτε Document Type πρώτη
DocType: About Us Settings,About Us Settings,Ρυθμίσεις σχετικά με εμάς
DocType: Website Settings,Website Theme,Ιστοσελίδα Θέμα
DocType: DocField,In List View,Στην προβολή λίστας
DocType: Email Account,Use TLS,Χρήση tls
apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Μη έγκυρη είσοδος ή κωδικός πρόσβασης
-apps/frappe/frappe/config/setup.py +240,Add custom javascript to forms.,Προσθήκη προσαρμοσμένων javascript για τις φόρμες.
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +501,Sr No,Sr Όχι
+apps/frappe/frappe/core/doctype/data_import/data_import.js +58,Download Template,Κατεβάστε πρότυπο
+apps/frappe/frappe/config/setup.py +247,Add custom javascript to forms.,Προσθήκη προσαρμοσμένων javascript για τις φόρμες.
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +511,Sr No,Sr Όχι
+apps/frappe/frappe/email/smtp.py +172,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account
,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλου
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης
DocType: Data Migration Run,Pull Insert,Τραβήξτε Εισαγωγή
apps/frappe/frappe/public/js/frappe/form/controls/attach.js +60,Clear Attachment,σαφές Συνημμένο
-apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Mandatory:,Υποχρεωτικό:
+apps/frappe/frappe/core/doctype/data_import/exporter.py +270,Mandatory:,Υποχρεωτικό:
,User Permissions Manager,Διαχειριστής δικαιωμάτων χρήστη
DocType: Property Setter,New value to be set,Νέα τιμή που θα καθοριστεί
DocType: Email Alert,Days Before or After,Ημέρες πριν ή μετά
@@ -2329,7 +2341,7 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Ρομπότ
DocType: User Permission,User Permission,Δικαίωμα χρήστη
apps/frappe/frappe/config/website.py +32,Blog,Ιστολόγιο
apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,Το LDAP δεν είναι εγκατεστημένο
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Κατεβάστε με δεδομένα
+apps/frappe/frappe/core/doctype/data_import/data_import.js +174,Download with data,Κατεβάστε με δεδομένα
DocType: Workflow State,hand-right,Hand-right
DocType: Website Settings,Subdomain,Subdomain
apps/frappe/frappe/config/integrations.py +63,Settings for OAuth Provider,Ρυθμίσεις για τον παροχέα OAuth
@@ -2345,21 +2357,23 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Επιλέξτε βαθμολογία
apps/frappe/frappe/core/doctype/user/user.js +106,Reset OTP Secret,Επαναφορά του OTP Secret
DocType: Email Account,Notify if unreplied for (in mins),Ειδοποίηση αν μη απαντημένα για (σε λεπτά)
-apps/frappe/frappe/public/js/frappe/list/list_renderer.js +567,2 days ago,2 μέρες πριν
+apps/frappe/frappe/public/js/frappe/list/list_renderer.js +568,2 days ago,2 μέρες πριν
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Κατηγοριοποίηση δημοσιεύσεων blog.
DocType: Workflow State,Time,Χρόνος
DocType: DocField,Attach,Επισυνάψτε
-apps/frappe/frappe/core/doctype/doctype/doctype.py +552,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι έγκυρο μοτίβο ΌνομαΠεδίου. Θα πρέπει να είναι {{FIELD_NAME}}.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι έγκυρο μοτίβο ΌνομαΠεδίου. Θα πρέπει να είναι {{FIELD_NAME}}.
DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Αποστολή σχολίων Αίτημα μόνο εάν υπάρχει τουλάχιστον ένας επικοινωνίας είναι διαθέσιμη για το έγγραφο.
DocType: Custom Role,Permission Rules,Κανόνες άδειας
DocType: GSuite Settings,GSuite Settings,Ρυθμίσεις GSuite
DocType: Address,Links,Σύνδεσμοι
+apps/frappe/frappe/core/doctype/data_import/data_import.js +253,Please select the Document Type.,Επιλέξτε τον τύπο εγγράφου.
apps/frappe/frappe/model/base_document.py +396,Value missing for,Η τιμή λείπει για
apps/frappe/frappe/public/js/frappe/views/treeview.js +175,Add Child,Προσθήκη παιδιού
-apps/frappe/frappe/model/delete_doc.py +175,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν.
+apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν.
DocType: GSuite Templates,Template Name,Όνομα προτύπου
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,νέος τύπος του εγγράφου
DocType: Custom DocPerm,Read,Ανάγνωση
+apps/frappe/frappe/email/smtp.py +69,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Άδεια ρόλο για την σελίδα και Έκθεση
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Ευθυγράμμιση Αξία
@@ -2367,18 +2381,19 @@ apps/frappe/frappe/www/update-password.html +14,Old Password,Παλιός κωδ
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Δημοσιεύσεις από {0}
apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Για να διαμορφώσετε τις στήλες, εισάγετε τις ετικέτες των στηλών στο ερώτημα."
DocType: Has Domain,Has Domain,Έχει τομέα
-apps/frappe/frappe/core/page/desktop/desktop.js +198,Hide,Κρύβω
+apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Κρύβω
apps/frappe/frappe/www/login.html +69,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα"
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +331,Cannot remove ID field,Δεν είναι δυνατή η κατάργηση του πεδίου αναγνώρισης
+apps/frappe/frappe/core/doctype/doctype/doctype.py +751,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα"
DocType: Address,Bihar,Bihar
-DocType: Communication,Link DocType,DocType σύνδεσμο
+DocType: Activity Log,Link DocType,DocType σύνδεσμο
DocType: Social Login Keys,Social Login Keys,Social login keys
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Αφαίρεση όλων των προσαρμογών;
DocType: Website Slideshow,Slideshow Name,Όνομα παρουσίασης
DocType: Address,Andhra Pradesh,Άντρα Πραντές
apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Ακύρωση
DocType: DocType,Allow Rename,Επιτρέπεται η μετονομασία
-DocType: Authentication Log,Full Name,Ονοματεπώνυμο
+DocType: Activity Log,Full Name,Ονοματεπώνυμο
DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Οι θυγατρικοί πίνακες απεικονίζονται σαν πλέγμα σε άλλους τύπους εγγράφων
apps/frappe/frappe/www/404.html +22,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Η σελίδα που ψάχνετε λείπει. Αυτό θα μπορούσε να είναι επειδή κινείται ή υπάρχει ένα τυπογραφικό λάθος στο σύνδεσμο.
apps/frappe/frappe/www/404.html +25,Error Code: {0},Κωδικός σφάλματος: {0}
@@ -2409,18 +2424,16 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
μπορέσουμε να επικοινωνήσουμε μαζί σας. Ευχαριστώ!"
apps/frappe/frappe/email/smtp.py +184,Could not connect to outgoing email server,Δεν ήταν δυνατή η σύνδεση με το διακομιστή εξερχόμενων e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Σας ευχαριστούμε για το ενδιαφέρον σας για την εγγραφή στις ενημερώσεις μας
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +176,Custom Column,Προσαρμοσμένη στήλη
+apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +177,Custom Column,Προσαρμοσμένη στήλη
DocType: Workflow State,resize-full,Resize-full
DocType: Workflow State,off,Μακριά από
apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Η έκθεση {0} είναι απενεργοποιημένη
-apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +37,Recommended for inserting new records.,Συνιστάται για εισαγωγή νέων εγγραφών.
-DocType: Async Task,Core,Πυρήνας
+DocType: Activity Log,Core,Πυρήνας
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Ορισμός δικαιωμάτων
DocType: DocField,Set non-standard precision for a Float or Currency field,Ορισμός μη τυπικής ακριβείας για ένα πεδίο κινητής υποδιαστολής ή νόμισμα
DocType: Email Account,Ignore attachments over this size,Αγνοήστε τα συνημμένα πάνω από αυτό το μέγεθος
DocType: Address,Preferred Billing Address,Προτιμώμενη διεύθυνση χρέωσης
apps/frappe/frappe/config/integrations.py +68,External Documents,Εξωτερικά Έγγραφα
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} χρόνια πριν
apps/frappe/frappe/database.py +257,Too many writes in one request. Please send smaller requests,Πάρα πολλές εγγραφές σε ένα αίτημα. Παρακαλώ να στέλνετε μικρότερα αιτήματα.
apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,τιμές Άλλαξε
DocType: Workflow State,arrow-up,Βέλος πάνω
@@ -2428,10 +2441,9 @@ DocType: OAuth Bearer Token,Expires In,Λήγει σε
DocType: DocField,Allow on Submit,Επιτρέπεται κατά την υποβολή
DocType: DocField,HTML,HTML
DocType: Error Snapshot,Exception Type,Εξαίρεση Τύπος
-apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Διαλέξτε Στήλες
+apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +606,Pick Columns,Διαλέξτε Στήλες
DocType: Web Page,Add code as <script>,Προσθήκη κώδικα ως