@@ -385,7 +385,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message | |||
:param unsubscribe_method: Unsubscribe url with options email, doctype, name. e.g. `/api/method/unsubscribe` | |||
:param unsubscribe_params: Unsubscribe paramaters to be loaded on the unsubscribe_method [optional] (dict). | |||
:param attachments: List of attachments. | |||
:param reply_to: Reply-To email id. | |||
:param reply_to: Reply-To Email Address. | |||
:param message_id: Used for threading. If a reply is received to this email, Message-Id is sent back as In-Reply-To in received email. | |||
:param in_reply_to: Used to send the Message-Id of a received email back as In-Reply-To. | |||
:param send_after: Send after the given datetime. | |||
@@ -26,7 +26,7 @@ class User(Document): | |||
self.flags.ignore_save_passwords = True | |||
def autoname(self): | |||
"""set name as email id""" | |||
"""set name as Email Address""" | |||
if self.get("is_admin") or self.get("is_guest"): | |||
self.name = self.first_name | |||
else: | |||
@@ -13,7 +13,7 @@ We should edit `frappe\core\doctype\user\user.js` | |||
frappe.ui.form.on('User', { | |||
refresh: function(frm) { | |||
... | |||
frm.add_custom_button(__('Get User Email ID'), function(){ | |||
frm.add_custom_button(__('Get User Email Address'), function(){ | |||
frappe.msgprint(frm.doc.email); | |||
}, __("Utilities")); | |||
... | |||
@@ -1,6 +1,6 @@ | |||
Use Facebook, Google or GitHub authentication to login to Frappe, and your users will be spared from remembering another password. | |||
The system uses the **Email ID** supplied by these services to **match with an existing user** in Frappe. If no such user is found, **a new user is created** of the default type **Website User**, if Signup is not disabled in Website Settings. Any System Manager can later change the user type from **Website User** to **System User**, so that the user can access the Desktop. | |||
The system uses the **Email Address** supplied by these services to **match with an existing user** in Frappe. If no such user is found, **a new user is created** of the default type **Website User**, if Signup is not disabled in Website Settings. Any System Manager can later change the user type from **Website User** to **System User**, so that the user can access the Desktop. | |||
<figure class="text-center"> | |||
<img src="/assets/img/social-logins-1.jpg" | |||
@@ -12,7 +12,7 @@ Roles can be assigned to Website Users and they will see menu based on their rol | |||
#### Rules for Default Role | |||
For example if the email id matches with a contact id, then set role Customer or Supplier: | |||
For example if the Email Address matches with a contact id, then set role Customer or Supplier: | |||
default_roles = [ | |||
{'role': 'Customer', 'doctype':'Contact', 'email_field': 'email_id', | |||
@@ -2,7 +2,7 @@ | |||
Then let us create the other DocType and save it too: | |||
1. Library Member (First Name, Last Name, Email ID, Phone, Address) | |||
1. Library Member (First Name, Last Name, Email Address, Phone, Address) | |||
<img class="screenshot" alt="Doctype Saved" src="{{docs_base_url}}/assets/img/naming_doctype.png"> | |||
@@ -2,7 +2,7 @@ | |||
Définissons un nouveau **DocType**: | |||
1. Library Member (First Name, Last Name, Email ID, Phone, Address) | |||
1. Library Member (First Name, Last Name, Email Address, Phone, Address) | |||
<img class="screenshot" alt="Doctype Saved" src="{{docs_base_url}}/assets/img/naming_doctype.png"> | |||
@@ -2,7 +2,7 @@ | |||
Em seguida, vamos criar outro DocType e salva-lo também: | |||
1. Library Member (First Name, Last Name, Email ID, Phone, Address) | |||
1. Library Member (First Name, Last Name, Email Address, Phone, Address) | |||
<img class="screenshot" alt="Doctype Saved" src="{{docs_base_url}}/assets/img/naming_doctype.png"> | |||
@@ -82,7 +82,7 @@ | |||
"in_filter": 0, | |||
"in_list_view": 0, | |||
"in_standard_filter": 0, | |||
"label": "Email Id", | |||
"label": "Email Address", | |||
"length": 0, | |||
"no_copy": 0, | |||
"options": "Email", | |||
@@ -542,7 +542,7 @@ | |||
"collapsible": 0, | |||
"columns": 0, | |||
"depends_on": "notify_if_unreplied", | |||
"description": "Email Ids", | |||
"description": "Email Addresses", | |||
"fieldname": "send_notification_to", | |||
"fieldtype": "Small Text", | |||
"hidden": 0, | |||
@@ -749,7 +749,7 @@ | |||
"collapsible": 0, | |||
"columns": 0, | |||
"depends_on": "enable_outgoing", | |||
"description": "Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ", | |||
"description": "Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ", | |||
"fieldname": "always_use_account_email_id_as_sender", | |||
"fieldtype": "Check", | |||
"hidden": 0, | |||
@@ -758,7 +758,7 @@ | |||
"in_filter": 0, | |||
"in_list_view": 0, | |||
"in_standard_filter": 0, | |||
"label": "Always use Account's Email ID as Sender", | |||
"label": "Always use Account's Email Address as Sender", | |||
"length": 0, | |||
"no_copy": 0, | |||
"permlevel": 0, | |||
@@ -26,7 +26,7 @@ class SentEmailInInbox(Exception): pass | |||
class EmailAccount(Document): | |||
def autoname(self): | |||
"""Set name as `email_account_name` or make title from email id.""" | |||
"""Set name as `email_account_name` or make title from Email Address.""" | |||
if not self.email_account_name: | |||
self.email_account_name = self.email_id.split("@", 1)[0]\ | |||
.replace("_", " ").replace(".", " ").replace("-", " ").title() | |||
@@ -37,7 +37,7 @@ class EmailAccount(Document): | |||
self.name = self.email_account_name | |||
def validate(self): | |||
"""Validate email id and check POP3/IMAP and SMTP connections is enabled.""" | |||
"""Validate Email Address and check POP3/IMAP and SMTP connections is enabled.""" | |||
if self.email_id: | |||
validate_email_add(self.email_id, True) | |||
@@ -39,7 +39,7 @@ | |||
"allow_on_submit": 0, | |||
"bold": 0, | |||
"collapsible": 0, | |||
"description": "Optional: Always send to these ids. Each email id on a new row", | |||
"description": "Optional: Always send to these ids. Each Email Address on a new row", | |||
"fieldname": "cc", | |||
"fieldtype": "Code", | |||
"hidden": 0, | |||
@@ -26,7 +26,7 @@ frappe.ui.form.on("Email Group", "refresh", function(frm) { | |||
frm.add_custom_button(__("Add Subscribers"), function() { | |||
frappe.prompt({fieldtype:"Text", | |||
label:__("Email Ids"), fieldname:"email_list", reqd:1}, function(data) { | |||
label:__("Email Addresses"), fieldname:"email_list", reqd:1}, function(data) { | |||
frappe.call({ | |||
method: "frappe.email.doctype.email_group.email_group.add_subscribers", | |||
args: { | |||
@@ -17,7 +17,7 @@ class EmailGroup(Document): | |||
if d.parent not in singles] | |||
def import_from(self, doctype): | |||
"""Extract email ids from given doctype and add them to the current list""" | |||
"""Extract Email Addresses from given doctype and add them to the current list""" | |||
meta = frappe.get_meta(doctype) | |||
email_field = [d.fieldname for d in meta.fields | |||
if d.fieldtype in ("Data", "Small Text", "Text", "Code") and d.options=="Email"][0] | |||
@@ -84,7 +84,7 @@ def add_subscribers(name, email_list): | |||
else: | |||
pass | |||
else: | |||
frappe.msgprint(_("{0} is not a valid email id").format(email)) | |||
frappe.msgprint(_("{0} is not a valid Email Address").format(email)) | |||
frappe.msgprint(_("{0} subscribers added").format(count)) | |||
@@ -211,7 +211,7 @@ | |||
"bold": 0, | |||
"collapsible": 0, | |||
"columns": 0, | |||
"description": "A Lead with this email id should exist", | |||
"description": "A Lead with this Email Address should exist", | |||
"fieldname": "test_email_id", | |||
"fieldtype": "Data", | |||
"hidden": 0, | |||
@@ -220,7 +220,7 @@ | |||
"in_filter": 0, | |||
"in_list_view": 0, | |||
"in_standard_filter": 0, | |||
"label": "Test Email Id", | |||
"label": "Test Email Address", | |||
"length": 0, | |||
"no_copy": 0, | |||
"permlevel": 0, | |||
@@ -128,7 +128,7 @@ def subscribe(email): | |||
messages = ( | |||
_("Thank you for your interest in subscribing to our updates"), | |||
_("Please verify your email id"), | |||
_("Please verify your Email Address"), | |||
url, | |||
_("Click here to verify") | |||
) | |||
@@ -159,7 +159,7 @@ class EMail: | |||
self.add_attachment(name, get_pdf(html, options), 'application/octet-stream') | |||
def validate(self): | |||
"""validate the email ids""" | |||
"""validate the Email Addresses""" | |||
from frappe.utils import validate_email_add | |||
if not self.sender: | |||
@@ -112,7 +112,7 @@ def add(recipients, sender, subject, formatted, text_content=None, | |||
e.sender = mail.sender | |||
except frappe.InvalidEmailAddressError: | |||
# bad email id - don't add to queue | |||
# bad Email Address - don't add to queue | |||
return | |||
e.set("recipient", []) | |||
@@ -35,7 +35,7 @@ | |||
</div> | |||
<div class="col-sm-6"> | |||
<input class="form-control" name="comment_by" | |||
placeholder="{{ _("Your Email Id") }}" type="email"> | |||
placeholder="{{ _("Your Email Address") }}" type="email"> | |||
</div> | |||
</div> | |||
<p><textarea class="form-control" name="comment" rows=10 | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,ጥያቄ | |||
DocType: DocType,Sort Order,የድርድር ቅደም ተከተል | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,የእርስዎ ኢሜይል መታወቂያ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,የእርስዎ ኢሜይል መታወቂያ | |||
DocType: Custom Field,Select the label after which you want to insert new field.,አዲስ መስክ ማስገባት ይፈልጋሉ በኋላ ያለውን መለያ ይምረጡ. | |||
,Document Share Report,የሰነድ አጋራ ሪፖርት | |||
DocType: User,Last Login,የመጨረሻው መግቢያ | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,ገጽ ኤችቲኤምኤል | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,ተጨማሪ መስቀለኛ ብቻ 'ቡድን' አይነት አንጓዎች ስር ሊፈጠር ይችላል | |||
DocType: Web Page,Header,የራስጌ | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ያልታወቀ አምድ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,አማራጭ: ሁልጊዜ እነዚህን መታወቂያዎች መላክ. አዲስ ረድፍ ላይ እያንዳንዱ የኢሜይል መታወቂያ | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,አማራጭ: ሁልጊዜ እነዚህን መታወቂያዎች መላክ. አዲስ ረድፍ ላይ እያንዳንዱ የኢሜይል መታወቂያ | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ሚና {0} ጋር ተጠቃሚዎች: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},በመጫን ላይ መተግበሪያ {0} | |||
DocType: Print Format,Custom Format,ብጁ ቅርጸት | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,ትዊት | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,አብነቱን ያዘምኑ እና በማያያዝ በፊት በ CSV ውስጥ ቅርጸት (በኮማ የተለዩ እሴቶች) ማስቀመጥ. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ወደ መስክ ዋጋ ይግለጹ | |||
DocType: Report,Disabled,ተሰናክሏል | |||
DocType: Email Account,Always use Account's Email ID as Sender,ሁልጊዜ የላኪ እንደ መለያ ኢሜይል መታወቂያ ይጠቀሙ | |||
DocType: Email Account,Always use Account's Email Address as Sender,ሁልጊዜ የላኪ እንደ መለያ ኢሜይል መታወቂያ ይጠቀሙ | |||
DocType: Workflow State,eye-close,ዓይን-ዝጋ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',ሌላ የክፍያ ስልት ይምረጡ. {0} ምንዛሬ ግብይቶችን አይደግፍም «{1}» | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth አቅራቢ ቅንብሮች | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ቅጠል | |||
DocType: Portal Menu Item,Portal Menu Item,ፖርታል ምናሌ ንጥል | |||
DocType: Email Account,Email ID,የኢሜይል መታወቂያ | |||
DocType: Email Account,Email Address,የኢሜይል መታወቂያ | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,አገናኝ ያስገቡ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,የደንበኛ መተግበሪያ ተጠቃሚው የሚፈቅድ በኋላ መዳረሻ ይኖራቸዋል ይህም ሀብት ዝርዝር. <br> ለምሳሌ ፕሮጀክት | |||
DocType: Contact Us Settings,Query Options,የመጠይቅ አማራጮች | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,ማስታ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,ስትቀንስ | |||
DocType: DocShare,Document Name,የሰነድ ስም | |||
DocType: ToDo,Medium,መካከለኛ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,የኢሜይል መታወቂያ ያረጋግጡ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,የኢሜይል መታወቂያ ያረጋግጡ | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,አገናኞች ለማየት በቂ ፍቃድ. | |||
DocType: Customize Form,Customize Form,ቅጽ ያብጁ | |||
DocType: Currency,A symbol for this currency. For e.g. $,ለዚህ ምንዛሬ ያመለክታል. ለምሳሌ $ ለ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ደረጃ-ወደኋላ | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{APP_TITLE} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,ጣቢያዎ ውቅር ውስጥ መሸወጃ መዳረሻ ቁልፎች ማዘጋጀት እባክዎ | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,በዚህ ኢሜይል አድራሻ መላክ ለመፍቀድ ይህን መዝገብ ይሰርዙ | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ይህን መለያ በመጠቀም ይላካል ሁሉንም ኢሜይሎች ለማግኘት የላኪ እንደ በዚህ መለያ ላይ በተጠቀሰው የኢሜይል መታወቂያ ይጠቀማል. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ይህን መለያ በመጠቀም ይላካል ሁሉንም ኢሜይሎች ለማግኘት የላኪ እንደ በዚህ መለያ ላይ በተጠቀሰው የኢሜይል መታወቂያ ይጠቀማል. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ብቻ የግዴታ መስኮች አዳዲስ መዝገቦች አስፈላጊ ናቸው. ከፈለጉ እርስዎ ያልሆኑ አስገዳጅ ዓምዶች መሰረዝ ይችላሉ. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ክስተት ማዘመን አልተቻለም | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ክፍያ ተጠናቅቋል | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,ዕልባት | |||
DocType: Note,Note,ማስታወሻ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ስህተት ሪፖርት አድርግ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,የጊዜ ሂደት መስክ ልክ የሆነ fieldname መሆን አለበት | |||
DocType: Email Account,Email Ids,የኢሜይል መታወቂያዎች | |||
DocType: Email Account,Email Addresses,የኢሜይል መታወቂያዎች | |||
DocType: Currency,Symbol,ምልክት | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,የረድፍ # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,አዲስ የይለፍ ቃል ኢሜይል | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,ተሰልፏል | |||
DocType: PayPal Settings,Use Sandbox,ይጠቀሙ ማጠሪያ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,አዲስ ብጁ ማተም ቅርጸት | |||
DocType: DocPerm,Create,ፈጠረ | |||
DocType: Newsletter,A Lead with this email id should exist,በዚህ ኢሜይል መታወቂያ ጋር አንድ ሊድ ሊኖር ይገባል | |||
DocType: Newsletter,A Lead with this Email Address should exist,በዚህ ኢሜይል መታወቂያ ጋር አንድ ሊድ ሊኖር ይገባል | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},ልክ ያልሆነ ማጣሪያ: {0} | |||
DocType: Integration Service,Background Events,የጀርባ ክስተቶች | |||
DocType: Dropbox Settings,App Access Key,የመተግበሪያ መዳረሻ ቁልፍ | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,ብቻ አርትዕ ያህ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,የአንተ ስም | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,አቃፊ ነው | |||
DocType: Newsletter,Test Email Id,የሙከራ ኢሜይል መታወቂያ | |||
DocType: Newsletter,Test Email Address,የሙከራ ኢሜይል መታወቂያ | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,አባል {0} የለም | |||
DocType: Website Theme,"If image is selected, color will be ignored.","ምስል ተመርጧል ከሆነ, ቀለም ችላ ይባላሉ." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,የኢሜይል መለያ | |||
DocType: Workflow State,Download,አውርድ | |||
DocType: Blog Post,Blog Intro,መግቢያ ብሎግ | |||
DocType: Async Task,Result,ውጤት | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ልክ የሆነ የኢሜይል መታወቂያ አይደለም | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ልክ የሆነ የኢሜይል መታወቂያ አይደለም | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,ሪፖርት አንቃ | |||
DocType: DocField,Display Depends On,ማሳያ ላይ ይመረኮዛል | |||
DocType: Web Page,Insert Code,አስገባ ኮድ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,سؤال | |||
DocType: DocType,Sort Order,ترتيب | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,البريد الالكتروني رقم | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,البريد الالكتروني رقم | |||
DocType: Custom Field,Select the label after which you want to insert new field.,حدد التسمية بعد الذي تريد إدراج حقل جديد. | |||
,Document Share Report,وثيقة حصة تقرير | |||
DocType: User,Last Login,آخر تسجيل دخول | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,صفحة HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة ' | |||
DocType: Web Page,Header,رأس | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},غير معروف العمود: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,اختياري: دائما إرسالها إلى هذه الهوية. كل معرف البريد الإلكتروني على صف جديد | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختياري: دائما إرسالها إلى هذه الهوية. كل معرف البريد الإلكتروني على صف جديد | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,المستخدمين مع دور {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},تثبيت التطبيقات {0} | |||
DocType: Print Format,Custom Format,تنسيق مخصص | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,تحديث القالب وحفظ في CSV (الفاصلة قيم منفصلة) شكل قبل إرفاق. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,تحديد قيمة الحقل | |||
DocType: Report,Disabled,معطل | |||
DocType: Email Account,Always use Account's Email ID as Sender,دائما استخدام الحساب ID البريد الإلكتروني كما المرسل | |||
DocType: Email Account,Always use Account's Email Address as Sender,دائما استخدام الحساب ID البريد الإلكتروني كما المرسل | |||
DocType: Workflow State,eye-close,إغلاق العين | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',يرجى تحديد طريقة دفع أخرى. {0} لا تدعم المعاملات بالعملة '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,إعدادات مزود أوث | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ورق | |||
DocType: Portal Menu Item,Portal Menu Item,بوابة عنصر القائمة | |||
DocType: Email Account,Email ID,البريد الإلكتروني | |||
DocType: Email Account,Email Address,البريد الإلكتروني | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,إدراج رابط | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,قائمة الموارد التي سيكون لها التطبيق العميل الوصول إلى بعد قيام المستخدم يسمح بذلك. <br> على سبيل المثال مشروع | |||
DocType: Contact Us Settings,Query Options,خيارات الاستعلام | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,الملا | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,مصغر | |||
DocType: DocShare,Document Name,اسم المستند | |||
DocType: ToDo,Medium,متوسط | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,يرجى التحقق من اسم المستخدم البريد الالكتروني | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,يرجى التحقق من اسم المستخدم البريد الالكتروني | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,لا إذن بما يكفي لرؤية الروابط. | |||
DocType: Customize Form,Customize Form,تخصيص نموذج | |||
DocType: Currency,A symbol for this currency. For e.g. $,رمز هذه العملة. ر.س مثلاً | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,خطوة إلى الوراء | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ app_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,الرجاء تعيين مفاتيح الوصول دروببوإكس في التكوين موقعك | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,حذف هذا السجل للسماح إرسالها إلى عنوان البريد الإلكتروني هذا | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,يستخدم ID البريد الإلكتروني المذكور في هذا الحساب باسم المرسل لجميع رسائل البريد الإلكتروني المرسلة باستخدام هذا الحساب. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,يستخدم ID البريد الإلكتروني المذكور في هذا الحساب باسم المرسل لجميع رسائل البريد الإلكتروني المرسلة باستخدام هذا الحساب. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ضرورية لسجلات جديدة الحقول الإلزامية فقط. يمكنك حذف الأعمدة غير الإلزامية إذا كنت ترغب في ذلك. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,غير قادر على تحديث الحدث | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,دفع كامل | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,المرجعية | |||
DocType: Note,Note,ملاحظات | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,أبلغ عن مشكلة | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,يجب أن يكون حقل الزمني لFIELDNAME صحيح | |||
DocType: Email Account,Email Ids,البريد الإلكتروني معرفات | |||
DocType: Email Account,Email Addresses,البريد الإلكتروني معرفات | |||
DocType: Currency,Symbol,رمز | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,الصف # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,كلمة مرور جديدة عبر البريد الالكتروني | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,قائمة الانتظار | |||
DocType: PayPal Settings,Use Sandbox,استخدام رمل | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,تنسيق مخصص للطباعة جديد | |||
DocType: DocPerm,Create,انشاء | |||
DocType: Newsletter,A Lead with this email id should exist,يجب أن يكون هنالك قائد يستخدم هذا البريد الإلكتروني | |||
DocType: Newsletter,A Lead with this Email Address should exist,يجب أن يكون هنالك قائد يستخدم هذا البريد الإلكتروني | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},تصفية الباطلة: {0} | |||
DocType: Integration Service,Background Events,خلفية الأحداث | |||
DocType: Dropbox Settings,App Access Key,التطبيق مفتاح الوصول | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,السماح فقط للت | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,اسمك | |||
DocType: DocType,InnoDB,ك InnoDB | |||
DocType: File,Is Folder,هو مجلد | |||
DocType: Newsletter,Test Email Id,اختبار البريد الإلكتروني | |||
DocType: Newsletter,Test Email Address,اختبار البريد الإلكتروني | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,المستخدم {0} غير موجود | |||
DocType: Website Theme,"If image is selected, color will be ignored.",إذا تم تحديد صورة، سيتم تجاهل اللون. | |||
@@ -2248,7 +2248,7 @@ DocType: Communication,Email Account,حساب البريد الإلكتروني | |||
DocType: Workflow State,Download,تحميل | |||
DocType: Blog Post,Blog Intro,بدايه المدونه | |||
DocType: Async Task,Result,نتيجة | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} بريد إلكتروني غير صحيح | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} بريد إلكتروني غير صحيح | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,تمكين تقرير | |||
DocType: DocField,Display Depends On,العرض يعتمد على | |||
DocType: Web Page,Insert Code,إدراج كود | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Запитване | |||
DocType: DocType,Sort Order,Ред на сортиране | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Вашият e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Вашият e-mail Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикета след която искате да вмъкнете нова област. | |||
,Document Share Report,Документ Сподели Съобщи | |||
DocType: User,Last Login,Last Login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Допълнителни възли могат да се създават само при тип възли "група" | |||
DocType: Web Page,Header,Удар с глава | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Unknown Колона: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,По желание: Винаги изпрати на тези документи за самоличност. Всеки имейл ID на нов ред | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,По желание: Винаги изпрати на тези документи за самоличност. Всеки имейл ID на нов ред | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Потребителите с роля {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Инсталиране App {0} | |||
DocType: Print Format,Custom Format,Формат по избор | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,"Актуализиране на шаблона и спести в CSV (Comma отделните стойности) формат, преди да включите." | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Определете стойността на полето | |||
DocType: Report,Disabled,За хора с увреждания | |||
DocType: Email Account,Always use Account's Email ID as Sender,Винаги използвайте профила Email ID като Sender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Винаги използвайте профила Email Address като Sender | |||
DocType: Workflow State,eye-close,око-близо | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Моля, изберете друг начин на плащане. {0} не поддържа транзакции с валута "{1}"" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Настройки OAuth Оператор | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,листо | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Меню | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Списъкът на ресурсите, които Client App ще имат достъп до, след като потребителят го позволява. <br> напр проект" | |||
DocType: Contact Us Settings,Query Options,Опции Критерии | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Забел | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Документ Име | |||
DocType: ToDo,Medium,Среда | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Моля, проверете електронната си поща ID" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Моля, проверете електронната си поща ID" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Не е достатъчно разрешение да виждат линкове. | |||
DocType: Customize Form,Customize Form,Персонализирайте Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Символ за тази валута. Например $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,стъпка назад | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Моля, задайте Dropbox клавишите за достъп в сайта си довереник" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Изтрий този запис да позволи изпращането на този имейл адрес | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Използва ID на Email споменати в този профил като подател на всички имейли, изпратени чрез този профил." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Използва ID на Email споменати в този профил като подател на всички имейли, изпратени чрез този профил." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Само задължителни полета са необходими за нови рекорди. Можете да изтриете незадължителни колони, ако желаете." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Не може да се актуализира събитие | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Плащането Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,Bookmark | |||
DocType: Note,Note,Забележка | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Грешка Доклад | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline поле трябва да бъде валиден FIELDNAME | |||
DocType: Email Account,Email Ids,Email документи за самоличност | |||
DocType: Email Account,Email Addresses,Email документи за самоличност | |||
DocType: Currency,Symbol,Символ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Нова парола емайл | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,На опашка | |||
DocType: PayPal Settings,Use Sandbox,Използвайте Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Нов персонализиран печат Format | |||
DocType: DocPerm,Create,Създавам | |||
DocType: Newsletter,A Lead with this email id should exist,"Lead с този емайл идентификатор изглежа, че съществува" | |||
DocType: Newsletter,A Lead with this Email Address should exist,"Lead с този емайл идентификатор изглежа, че съществува" | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Невалиден Филтър: {0} | |||
DocType: Integration Service,Background Events,Фон Събития | |||
DocType: Dropbox Settings,App Access Key,App на ключа за достъп | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Само Позволете | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Твоето име | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Дали Folder | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Потребителят {0} не съществува | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ако е избрано изображение, цвят, ще бъдат игнорирани." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Имейл акаунт | |||
DocType: Workflow State,Download,Download | |||
DocType: Blog Post,Blog Intro,Блог Intro | |||
DocType: Async Task,Result,Резултат | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} не е валиден имейл ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не е валиден имейл ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Активиране Доклад | |||
DocType: DocField,Display Depends On,Дисплей зависи от | |||
DocType: Web Page,Insert Code,Insert Code | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,প্রশ্ন | |||
DocType: DocType,Sort Order,সজ্জাক্রম | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,আপনার ইমেইল আইডি | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,আপনার ইমেইল আইডি | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"আপনি নতুন ক্ষেত্র সন্নিবেশ করতে চান, যা পরে ট্যাগ নির্বাচন করুন." | |||
,Document Share Report,ডকুমেন্ট শেয়ার প্রতিবেদন | |||
DocType: User,Last Login,সর্বশেষ লগইন | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,পৃষ্ঠা এইচটিএমএল | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,আরও নোড শুধুমাত্র 'গ্রুপ' টাইপ নোড অধীনে তৈরি করা যেতে পারে | |||
DocType: Web Page,Header,শিরোলেখ | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},অজানা কলাম: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ঐচ্ছিক: সর্বদা এই আইডিতে পাঠাতে. একটি নতুন সারি প্রতিটি ইমেইল আইডি | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ঐচ্ছিক: সর্বদা এই আইডিতে পাঠাতে. একটি নতুন সারি প্রতিটি ইমেইল আইডি | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ভূমিকা {0} সঙ্গে ব্যবহারকারী: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},ইনস্টল অ্যাপ্লিকেশন {0} | |||
DocType: Print Format,Custom Format,পছন্দসই বিন্যাস | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,রিট্যুইট | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,টেমপ্লেট হালনাগাদ ও সংযোজনের আগে CSV বিন্যাসে (কমা পৃথক মান) সংরক্ষণ করুন. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ক্ষেত্রের মান উল্লেখ | |||
DocType: Report,Disabled,অক্ষম | |||
DocType: Email Account,Always use Account's Email ID as Sender,সর্বদা প্রেরক হিসাবে অ্যাকাউন্টের ইমেল আইডি ব্যবহার | |||
DocType: Email Account,Always use Account's Email Address as Sender,সর্বদা প্রেরক হিসাবে অ্যাকাউন্টের ইমেল আইডি ব্যবহার | |||
DocType: Workflow State,eye-close,চোখের বন্ধ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',দয়া করে অন্য একটি পেমেন্ট পদ্ধতি নির্বাচন করুন. {0} মুদ্রায় লেনদেন সমর্থন করে না '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth এর প্রোভাইডার সেটিংস | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,পাতা | |||
DocType: Portal Menu Item,Portal Menu Item,পোর্টাল মেনু আইটেম | |||
DocType: Email Account,Email ID,ইমেইল আইডি | |||
DocType: Email Account,Email Address,ইমেইল আইডি | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,সন্নিবেশ লিংক | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,সম্পদের একটি তালিকা যা ক্লায়েন্ট অ্যাপ ব্যবহারকারী এটি করতে সক্ষম হবেন পরে অ্যাক্সেস থাকবে. <br> যেমন প্রকল্প | |||
DocType: Contact Us Settings,Query Options,ক্যোয়ারী অপশন | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,নোট: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ডকুমেন্ট নাম | |||
DocType: ToDo,Medium,মাঝারি | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,আপনার ইমেইল আইডি যাচাই করুন | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,আপনার ইমেইল আইডি যাচাই করুন | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,লিঙ্ক দেখতে নেই পর্যাপ্ত অনুমতি. | |||
DocType: Customize Form,Customize Form,ফরম কাস্টমাইজ | |||
DocType: Currency,A symbol for this currency. For e.g. $,এই মুদ্রার জন্য একটি প্রতীক. যেমন $ জন্য | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ধাপে অনগ্রসর | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{অ্যাপ_শিরোনাম} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,আপনার সাইটে কনফিগ ড্রপবক্স এক্সেস কী সেট করুন | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,এই ইমেইল ঠিকানায় পাঠানোর অনুমতি এই রেকর্ড মুছে | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,এই অ্যাকাউন্টটি ব্যবহার করে পাঠানো সব ইমেইল জন্য প্রেরক হিসাবে এই অ্যাকাউন্টের উল্লিখিত ইমেইল আইডি ব্যবহার করে. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,এই অ্যাকাউন্টটি ব্যবহার করে পাঠানো সব ইমেইল জন্য প্রেরক হিসাবে এই অ্যাকাউন্টের উল্লিখিত ইমেইল আইডি ব্যবহার করে. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,শুধু বাধ্যতামূলক ক্ষেত্র নতুন রেকর্ডের জন্য প্রয়োজন হয়. যদি আপনি চান আপনি অ বাধ্যতামূলক কলাম মুছে দিতে পারেন. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ইভেন্ট আপডেট করতে অক্ষম | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,পেমেন্ট সমাপ্তি | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,বুকমার্ক | |||
DocType: Note,Note,বিঃদ্রঃ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ভুলের তথ্য | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,সময়রেখা ক্ষেত্রের একটি বৈধ FIELDNAME হবে | |||
DocType: Email Account,Email Ids,ইমেল আইডি | |||
DocType: Email Account,Email Addresses,ইমেল আইডি | |||
DocType: Currency,Symbol,প্রতীক | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,সারি # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,নতুন পাসওয়ার্ড ইমেইল | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,সারিবদ্ধ | |||
DocType: PayPal Settings,Use Sandbox,ব্যবহারের স্যান্ডবক্স | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,নতুন কাস্টম মুদ্রন বিন্যাস | |||
DocType: DocPerm,Create,তৈরি করুন | |||
DocType: Newsletter,A Lead with this email id should exist,এই ইমেইল আইডি দিয়ে লিড বিদ্যমান উচিত | |||
DocType: Newsletter,A Lead with this Email Address should exist,এই ইমেইল আইডি দিয়ে লিড বিদ্যমান উচিত | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},অকার্যকর ফিল্টার: {0} | |||
DocType: Integration Service,Background Events,পটভূমি ঘটনাবলী | |||
DocType: Dropbox Settings,App Access Key,অ্যাপ্লিকেশন অ্যাক্সেস কী | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,শুধু সম্প | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,তোমার নাম | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ফোল্ডার | |||
DocType: Newsletter,Test Email Id,টেস্ট ইমেইল আইডি | |||
DocType: Newsletter,Test Email Address,টেস্ট ইমেইল আইডি | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ব্যবহারকারী {0} অস্তিত্ব নেই | |||
DocType: Website Theme,"If image is selected, color will be ignored.","ইমেজ নির্বাচন করা হয় তাহলে, রঙ উপেক্ষা করা হবে." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ইমেইল একাউন্ট | |||
DocType: Workflow State,Download,ডাউনলোড | |||
DocType: Blog Post,Blog Intro,মুখ্য পৃষ্ঠা Privacy Policy ব্লগ | |||
DocType: Async Task,Result,ফল | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} একটি বৈধ ইমেইল আইডি নয় | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} একটি বৈধ ইমেইল আইডি নয় | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,গালাগাল প্রতিবেদন সক্রিয় | |||
DocType: DocField,Display Depends On,প্রদর্শন উপর নির্ভর | |||
DocType: Web Page,Insert Code,কোড প্রবেশ করান | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Upit | |||
DocType: DocType,Sort Order,Poredak sortiranja | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Vaš e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Vaš e-mail Id | |||
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 | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML stranica | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" | |||
DocType: Web Page,Header,Zaglavlje | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nepoznato Stupac : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcionalno: Uvijek poslati tih IDS. Svaka e-mail ID na novom redu | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcionalno: Uvijek poslati tih IDS. Svaka e-mail ID na novom redu | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Korisnici s ulogom {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instaliranje aplikacija {0} | |||
DocType: Print Format,Custom Format,Custom Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Ažurirajte predložak i sačuvati u CSV (Comma Poseban vrijednosti) formatu prije pričvršćivanja. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Odredite vrijednost polja | |||
DocType: Report,Disabled,Ugašeno | |||
DocType: Email Account,Always use Account's Email ID as Sender,Uvijek koristite računa mail ID kao Sender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Uvijek koristite računa mail ID kao Sender | |||
DocType: Workflow State,eye-close,oka u blizini | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Odaberite drugi način plaćanja. {0} ne podržava transakcije u valuti '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Postavke | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,list | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,E-mail ID | |||
DocType: Email Account,Email Address,E-mail ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Lista resursa koji će klijent aplikacija ima pristup nakon što korisnik dozvoljava. <br> npr projekta | |||
DocType: Contact Us Settings,Query Options,Opcije upita | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Bilješke : | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokument Ime | |||
DocType: ToDo,Medium,Srednji | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Molimo vas da provjerite svoj e-mail id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Molimo vas da provjerite svoj e-mail id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nije dovoljno dozvolu za vidjeti linkove. | |||
DocType: Customize Form,Customize Form,Prilagodite obrazac | |||
DocType: Currency,A symbol for this currency. For e.g. $,Simbol za ovu valutu. Kao npr. $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,korak unatrag | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ Naslov_aplikacije } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ovaj rekord kako bi se omogućilo slanje na ovu e-mail adresu | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Koristi mail ID navedenih u ovom računu kao Sender za sve e-mailove poslao koriste ovaj račun. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Koristi mail ID navedenih u ovom računu kao Sender za sve e-mailove poslao koriste ovaj račun. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Samo obavezna polja su neophodni za nove rekorde. Možete izbrisati neobavezne kolone ako želite. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nije moguće ažurirati događaja | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,plaćanje Kompletna | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,Biljeske | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Greška Report | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline polje mora biti valjan Naziv Polja | |||
DocType: Email Account,Email Ids,E-mail Ids | |||
DocType: Email Account,Email Addresses,E-mail Ids | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nova lozinka je poslana mailom | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Na čekanju | |||
DocType: PayPal Settings,Use Sandbox,Koristite Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Novi prilagođeni format za štampu | |||
DocType: DocPerm,Create,Stvoriti | |||
DocType: Newsletter,A Lead with this email id should exist,Kontakt sa ovim e-mailom bi trebao postojati | |||
DocType: Newsletter,A Lead with this Email Address should exist,Kontakt sa ovim e-mailom bi trebao postojati | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Nevažeći filter: {0} | |||
DocType: Integration Service,Background Events,Pozadina događanja | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Dopusti uređivanje samo za | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tvoje ime | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Je Folder | |||
DocType: Newsletter,Test Email Id,Test E-mail ID | |||
DocType: Newsletter,Test Email Address,Test E-mail ID | |||
DocType: DocType,DocType,Vrsta dokumenta | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Korisnik {0} ne postoji | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ako je odabrana slika, boja će se zanemariti." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Email nalog | |||
DocType: Workflow State,Download,Preuzimanje | |||
DocType: Blog Post,Blog Intro,Blog intro | |||
DocType: Async Task,Result,Rezultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nije ispravan id e-mail-a | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nije ispravan id e-mail-a | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Enable Report | |||
DocType: DocField,Display Depends On,Prikaz Ovisi On | |||
DocType: Web Page,Insert Code,Umetnite kod | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,Ordre de Classificació | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'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/templates/includes/comments/comments.html +38,Your Email Id,El seu ID de correu electrònic | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,El seu ID de correu electrònic | |||
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 | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Pàgina HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Només es poden crear més nodes amb el tipus 'Grup' | |||
DocType: Web Page,Header,Encapçalament | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Columna desconeguda : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcional: Enviar sempre a aquests identificadors. Cada correu electrònic d'identificació en una nova fila | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Enviar sempre a aquests identificadors. Cada correu electrònic d'identificació en una nova fila | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Els usuaris amb rol {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instal·lació de l'aplicació {0} | |||
DocType: Print Format,Custom Format,Format personalitzat | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Actualització de la plantilla i guardar en format CSV (Comma Valors Separats) format abans de fixar. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Especifica el valor del camp | |||
DocType: Report,Disabled,Deshabilitat | |||
DocType: Email Account,Always use Account's Email ID as Sender,Utilitzeu sempre de compte de correu electrònic com ID del remitent | |||
DocType: Email Account,Always use Account's Email Address as Sender,Utilitzeu sempre de compte de correu electrònic com ID del remitent | |||
DocType: Workflow State,eye-close,ull-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Si us plau seleccioneu un altre mètode de pagament. {0} no suporta transaccions en moneda '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Configuració del proveïdor OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,full | |||
DocType: Portal Menu Item,Portal Menu Item,Portal de l'Menú | |||
DocType: Email Account,Email ID,Identificació de l'email | |||
DocType: Email Account,Email Address,Identificació de l'email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Inserir enllaç | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Una llista dels recursos que el client d'aplicació tindrà accés a la vegada que l'usuari ho permet. <br> per exemple, el projecte" | |||
DocType: Contact Us Settings,Query Options,Opcions de consulta | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notes: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Nom del document | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Verifiqui si us plau el seu correu electrònic d'identificació | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Verifiqui si us plau el seu correu electrònic d'identificació | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,No tens prou permisos per veure enllaços. | |||
DocType: Customize Form,Customize Form,Personalitza el Formulari | |||
DocType: Currency,A symbol for this currency. For e.g. $,Un símbol per a aquesta moneda. Per exemple: $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,pas enrere | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Please set Dropbox access keys in your site config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar aquest registre per permetre l'enviament a aquesta adreça de correu electrònic | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Utilitza el ID de correu electrònic esmentat en aquest compte com a remitent per a tots els correus electrònics enviats amb aquest compte. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Utilitza el ID de correu electrònic esmentat en aquest compte com a remitent per a tots els correus electrònics enviats amb aquest compte. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Només els camps obligatoris són necessaris per als nous registres. Pots eliminar columnes de caràcter no obligatori, si ho desitges." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,No es pot actualitzar esdeveniment | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,El pagament complet | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,marcador | |||
DocType: Note,Note,Nota | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Informa d'un problema | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,camp de línia de temps ha de ser un nom de camp vàlid | |||
DocType: Email Account,Email Ids,E-mail Ids | |||
DocType: Email Account,Email Addresses,E-mail Ids | |||
DocType: Currency,Symbol,Símbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Fila # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,S'ha enviat una nova contrassenya per correu electrònic | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,En cua | |||
DocType: PayPal Settings,Use Sandbox,ús Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nou format personalitzat Imprimir | |||
DocType: DocPerm,Create,Crear | |||
DocType: Newsletter,A Lead with this email id should exist,Hauria d'haver-hi un client potencial amb aquest correu electrònic | |||
DocType: Newsletter,A Lead with this Email Address should exist,Hauria d'haver-hi un client potencial amb aquest correu electrònic | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtre no vàlid: {0} | |||
DocType: Integration Service,Background Events,antecedents Esdeveniments | |||
DocType: Dropbox Settings,App Access Key,Aplicació Clau d'Accés | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Només Permetre Edita Per | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,El teu nom | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,És Carpeta | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,Doctype | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,L'usuari {0} no existeix | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Si es selecciona la imatge, es tindrà en compte el color." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Compte de correu electrònic | |||
DocType: Workflow State,Download,Descarregar | |||
DocType: Blog Post,Blog Intro,Bloc Intro | |||
DocType: Async Task,Result,Resultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} no és un correu electrònicvàlid | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no és un correu electrònicvàlid | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Habilita Reportar | |||
DocType: DocField,Display Depends On,display depèn | |||
DocType: Web Page,Insert Code,Insereix Codi | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Dotaz | |||
DocType: DocType,Sort Order,Pořadí řazení | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Váš e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Váš e-mail Id | |||
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í | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML kód stránky | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" | |||
DocType: Web Page,Header,Záhlaví | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Neznámý sloupec: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Volitelné: Vždy zaslat na tyto id. Každé email id na novém řádku | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Volitelné: Vždy zaslat na tyto id. Každé Email Address na novém řádku | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Uživatelé s rolí {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalace aplikace {0} | |||
DocType: Print Format,Custom Format,Vlastní formát | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Aktualizujte šablony a uložit ve formátu CSV (čárkami různé hodnoty) ve formátu před připojením. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Zadejte hodnotu pole | |||
DocType: Report,Disabled,Vypnuto | |||
DocType: Email Account,Always use Account's Email ID as Sender,Vždy používejte účtu e-mailovou ID jako odesílatel | |||
DocType: Email Account,Always use Account's Email Address as Sender,Vždy používejte účtu e-mailovou ID jako odesílatel | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Prosím, vyberte jiný způsob platby. {0} nepodporuje transakce v měně '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Nastavení OAuth Poskytovatel | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,Rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,list | |||
DocType: Portal Menu Item,Portal Menu Item,Portál Položka | |||
DocType: Email Account,Email ID,Email Id | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Vložit odkaz | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Seznam zdrojů, které Klient App bude mít přístup k poté, co ho uživatel dovolí. <br> například projekt" | |||
DocType: Contact Us Settings,Query Options,Možnosti dotazu | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Poznámky: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Název dokumentu | |||
DocType: ToDo,Medium,Střední | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Ověřte prosím svou e-mailovou id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Ověřte prosím svou e-mailovou id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nemáte dostatečná oprávnění pro zobrazení odkazů. | |||
DocType: Customize Form,Customize Form,Přizpůsobit formulář | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Symbol této měny, např. $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,step-backward | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Smazat tento záznam povolit odesílání na tuto e-mailovou adresu | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Používá E-mail ID uvedené v tomto účtu jako odesílatel všech e-mailů odeslaných pomocí tohoto účtu. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Používá E-mail ID uvedené v tomto účtu jako odesílatel všech e-mailů odeslaných pomocí tohoto účtu. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nelze aktualizovat událost | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,platba Complete | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,záložka | |||
DocType: Note,Note,Poznámka | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Časová osa pole musí být platný fieldname | |||
DocType: Email Account,Email Ids,Email IDS | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Řádek č.{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nové heslo zasláno emailem | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Ve frontě | |||
DocType: PayPal Settings,Use Sandbox,použití Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Vytvořit | |||
DocType: Newsletter,A Lead with this email id should exist,Lead s touto e-mailovou id by měla již existovat | |||
DocType: Newsletter,A Lead with this Email Address should exist,Lead s touto e-mailovou id by měla již existovat | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Neplatný filtr: {0} | |||
DocType: Integration Service,Background Events,pozadí Events | |||
DocType: Dropbox Settings,App Access Key,Access Key App | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Je povolenou pouze upravova | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tvé jméno | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Je Folder | |||
DocType: Newsletter,Test Email Id,Testovací Email Id | |||
DocType: Newsletter,Test Email Address,Testovací Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Uživatel: {0} neexistuje | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Pokud je vybraný obraz, bude barva ignorovány." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,E-mailový účet | |||
DocType: Workflow State,Download,Stáhnout | |||
DocType: Blog Post,Blog Intro,Úvod blogu | |||
DocType: Async Task,Result,Výsledek | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} není platné id emailu | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} není platné id emailu | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Zapnout report | |||
DocType: DocField,Display Depends On,Zobrazení závisí na | |||
DocType: Web Page,Insert Code,Vložit kód | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Forespørgsel | |||
DocType: DocType,Sort Order,Sorteringsrækkefølge | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'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/templates/includes/comments/comments.html +38,Your Email Id,Din e-mail-id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Din e-mail-id | |||
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 login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Side HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Yderligere noder kan kun oprettes under 'koncernens typen noder | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Ukendt Kolonne: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Valgfrit: Send altid til disse id'er. Hver e-mail-id på en ny række | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valgfrit: Send altid til disse id'er. Hver e-mail-id på en ny række | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Brugere med rollen {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installation App {0} | |||
DocType: Print Format,Custom Format,Brugerdefineret format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,"Opdatere skabelonen og gemme i CSV (Comma separate værdier) format, før du sætter." | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Angiv værdien af feltet | |||
DocType: Report,Disabled,Deaktiveret | |||
DocType: Email Account,Always use Account's Email ID as Sender,Brug altid Konto E-mail-id som afsender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Brug altid Konto E-mail-id som afsender | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Vælg en anden betalingsmetode. {0} understøtter ikke transaktioner i sedler '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Indstillinger | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,blad | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,Email-id | |||
DocType: Email Account,Email Address,Email-id | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Indsæt link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"En liste over ressourcer, som Client App vil have adgang til, efter at brugeren tillader det. <br> fx projekt" | |||
DocType: Contact Us Settings,Query Options,Query Options | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Bemærkning | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokumentnavn | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Skal du bekræfte din e-mail-id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Skal du bekræfte din e-mail-id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ikke tilladelse til at se links. | |||
DocType: Customize Form,Customize Form,Tilpas Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Et symbol for denne valuta. For eksempel $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,trin-bagud | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Venligst sæt Dropbox genvejstaster i dit site config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Slet denne rekord for at tillade at sende denne e-mail-adresse | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Bruger den i denne konto som afsender for alle e-mails sendt ved hjælp af denne konto Email ID. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Bruger den i denne konto som afsender for alle e-mails sendt ved hjælp af denne konto Email Address. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Kun obligatoriske felter er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner, hvis du ønsker." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Kan ikke opdatere event | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Betaling Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bogmærke | |||
DocType: Note,Note,Bemærk | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fejlrapport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Tidslinje felt skal være en gyldig fieldname | |||
DocType: Email Account,Email Ids,Email Ids | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Ny adgangskode sendt på emai | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Kø | |||
DocType: PayPal Settings,Use Sandbox,Brug Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nyt brugerdefineret Print Format | |||
DocType: DocPerm,Create,Opret | |||
DocType: Newsletter,A Lead with this email id should exist,Et emne med dette e-mail-id skal være oprettet. | |||
DocType: Newsletter,A Lead with this Email Address should exist,Et emne med dette e-mail-id skal være oprettet. | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ugyldig Filter: {0} | |||
DocType: Integration Service,Background Events,Baggrund Begivenheder | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Kun Tillad Edit For | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Dit navn | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Er Mappe | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Brugeren {0} eksisterer ikke | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Hvis der er valgt billede, vil farven blive ignoreret." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email-konto | |||
DocType: Workflow State,Download,Hent | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Resultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} er ikke en gyldig e-mail-id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ikke en gyldig e-mail-id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Aktiver rapport | |||
DocType: DocField,Display Depends On,Displayet afhænger af | |||
DocType: Web Page,Insert Code,Indsæt kode | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Abfrage | |||
DocType: DocType,Sort Order,Sortierung | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'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/templates/includes/comments/comments.html +38,Your Email Id,Ihre E-Mail-ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Ihre E-Mail-ID | |||
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 | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML-Seite | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Weitere Knoten können nur unter Knoten vom Typ ""Gruppe"" erstellt werden" | |||
DocType: Web Page,Header,Kopfzeile | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Unbekannte Spalte: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Optional: Immer an diese IDs senden. Jede E-Mail-ID in einer neuen Zeile | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optional: Immer an diese IDs senden. Jede E-Mail-ID in einer neuen Zeile | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Benutzer mit Rolle {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installiere App {0} | |||
DocType: Print Format,Custom Format,Benutzerdefiniertes Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,Erneut tweeten | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Vor dem Anhängen bitte die Vorlage aktualisieren und im .csv-Format speichern. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Wert des Feldes angeben | |||
DocType: Report,Disabled,Deaktiviert | |||
DocType: Email Account,Always use Account's Email ID as Sender,Immer die E-Mail-ID des Kontos als Absender verwenden | |||
DocType: Email Account,Always use Account's Email Address as Sender,Immer die E-Mail-ID des Kontos als Absender verwenden | |||
DocType: Workflow State,eye-close,geschlossenen Auges | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Bitte wählen Sie eine andere Zahlungsmethode. {0} keine Transaktionen in der Währung unterstützen '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth-Provider-Einstellungen | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,Blatt | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menüpunkt | |||
DocType: Email Account,Email ID,E-Mail-ID | |||
DocType: Email Account,Email Address,E-Mail-ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Verknüpfung einfügen | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Eine Liste der Ressourcen, die der Client-Anwendung Zugriff auf nach dem Benutzer erlaubt, es haben wird. <br> zB Projekt" | |||
DocType: Contact Us Settings,Query Options,Abfrageoptionen | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Hinweise: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown-Format | |||
DocType: DocShare,Document Name,Dokumentenname | |||
DocType: ToDo,Medium,Mittel | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Bitte E-Mail-ID überprüfen | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Bitte E-Mail-ID überprüfen | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Keine ausreichende Berechtigung zum Anzeigen der Verknüpfungen. | |||
DocType: Customize Form,Customize Form,Formular anpassen | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Ein Symbol für diese Währung, z. B. €" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,Schritt zurück | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Bitte Dropbox-Zugriffsdaten in den Einstellungen der Seite setzen | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Verwendet die in diesem Konto angegebene E-Mail-ID als Absender für alle mit diesem Konto versendeten E-Mails. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Verwendet die in diesem Konto angegebene E-Mail-ID als Absender für alle mit diesem Konto versendeten E-Mails. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Für neue Datensätze sind nur Pflichtfelder zwingend erforderlich. Nicht zwingend erforderliche Spalten können gelöscht werden, falls gewünscht." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Ereignis kann nicht aktualisiert werden | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Zahlung abschließen | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,Lesezeichen | |||
DocType: Note,Note,Anmerkung | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fehlerbericht | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline-Feld muss eine gültige Feldname sein | |||
DocType: Email Account,Email Ids,E-Mail-IDs | |||
DocType: Email Account,Email Addresses,E-Mail-IDs | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Zeile #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Neues Passwort per E-Mail versendet | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Warteschlange | |||
DocType: PayPal Settings,Use Sandbox,Verwenden Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Neues benutzerdefiniertes Druckformat | |||
DocType: DocPerm,Create,Erstellen | |||
DocType: Newsletter,A Lead with this email id should exist,Ein Lead mit dieser E-Mail-Kennung sollte existieren | |||
DocType: Newsletter,A Lead with this Email Address should exist,Ein Lead mit dieser E-Mail-Kennung sollte existieren | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ungültiger Filter: {0} | |||
DocType: Integration Service,Background Events,Hintergrund Veranstaltungen | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Änderungen nur zulassen f | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Ihr Name | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Ist Ordner | |||
DocType: Newsletter,Test Email Id,E-Mail-ID testen | |||
DocType: Newsletter,Test Email Address,E-Mail-ID testen | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Benutzer {0} existiert nicht | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Wenn ""Bild"" ausgewählt ist, werden Farben ignoriert." | |||
@@ -2244,7 +2244,7 @@ DocType: Communication,Email Account,E-Mail-Konto | |||
DocType: Workflow State,Download,Herunterladen | |||
DocType: Blog Post,Blog Intro,Blog-Einleitung | |||
DocType: Async Task,Result,Folge | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ist keine gültige E-Mail-Kennung | |||
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-Kennung | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Bericht aktivieren | |||
DocType: DocField,Display Depends On,Anzeige ist abhängig von | |||
DocType: Web Page,Insert Code,Code einfügen | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Ερώτημα | |||
DocType: DocType,Sort Order,Σειρά ταξινόμησης | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Το email σας ταυτότητα | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Το email σας ταυτότητα | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Επιλέξτε την ετικέτα μετά την οποία θέλετε να εισαγάγετε νέο πεδίο. | |||
,Document Share Report,Αναφορά κοινοποίησης εγγράφου | |||
DocType: User,Last Login,Τελευταία είσοδος | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Html σελίδας | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Περαιτέρω κόμβοι μπορούν να δημιουργηθούν μόνο σε κόμβους τύπου ομάδα | |||
DocType: Web Page,Header,Κεφαλίδα | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Άγνωστη στήλη: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Προαιρετικά: πάντα αποστολή σε αυτά τα id. Κάθε email id σε μια νέα σειρά | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Προαιρετικά: πάντα αποστολή σε αυτά τα id. Κάθε Email Address σε μια νέα σειρά | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Χρήστες με ρόλο {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Εγκατάσταση εφαρμογών {0} | |||
DocType: Print Format,Custom Format,Προσαρμοσμένη μορφή | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,Retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Ενημερώστε το πρότυπο και αποθηκεύστε το σε μορφή csv (Comma Separated Values) πριν την επισύναψη. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Καθορίστε την τιμή του πεδίου | |||
DocType: Report,Disabled,Απενεργοποιημένο | |||
DocType: Email Account,Always use Account's Email ID as Sender,Πάντα να χρησιμοποιείτε το Λογαριασμό e-mail ID ως αποστολέα | |||
DocType: Email Account,Always use Account's Email Address as Sender,Πάντα να χρησιμοποιείτε το Λογαριασμό e-mail ID ως αποστολέα | |||
DocType: Workflow State,eye-close,Eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Παρακαλώ επιλέξτε μια άλλη μέθοδο πληρωμής. {0} δεν υποστηρίζει τις συναλλαγές στο νόμισμα '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Ρυθμίσεις Provider OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,Rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,Φύλλο | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Στοιχείο Μενού | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Εισαγωγή συνδέσμου | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Ο κατάλογος των πόρων που θα έχει η εφαρμογή πελάτη πρόσβαση σε αφού ο χρήστης το επιτρέπει. <br> π.χ. έργου | |||
DocType: Contact Us Settings,Query Options,Επιλογές ερωτημάτων | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Σημει | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Κώδικας σελίδας | |||
DocType: DocShare,Document Name,Όνομα εγγράφου | |||
DocType: ToDo,Medium,Μέσο | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Παρακαλούμε επιβεβαιώστε ταυτότητα ηλεκτρονικού ταχυδρομείου σας | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε ταυτότητα ηλεκτρονικού ταχυδρομείου σας | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Δεν υπάρχουν αρκετά δικαιώματα για να δείτε συνδέσμους. | |||
DocType: Customize Form,Customize Form,Προσαρμογή φόρμας | |||
DocType: Currency,A symbol for this currency. For e.g. $,Ένα σύμβολο για το νόμισμα αυτό. Για παράδειγμα $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,Βήμα προς τα πίσω | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Παρακαλώ ορίστε τα κλειδιά πρόσβασης dropbox στις ρυθμίσεις του site σας | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Διαγραφή αυτής της εγγραφής για να επιτρέψει την αποστολή σε αυτήν τη διεύθυνση ηλεκτρονικού ταχυδρομείου | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Χρησιμοποιεί το e-mail ID αναφέρεται σε αυτό το λογαριασμό ως αποστολέα για όλα τα μηνύματα που στέλνονται μέσω αυτού του λογαριασμού. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Χρησιμοποιεί το e-mail ID αναφέρεται σε αυτό το λογαριασμό ως αποστολέα για όλα τα μηνύματα που στέλνονται μέσω αυτού του λογαριασμού. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Μόνο τα υποχρεωτικά πεδία είναι απαραίτητα για νέες εγγραφές. Μπορείτε να διαγράψετε μη υποχρεωτικές στήλες εάν το επιθυμείτε. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Δεν είναι δυνατή η ενημέρωση εκδήλωση | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Πλήρης πληρωμή | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,Σελιδοδείκτης | |||
DocType: Note,Note,Σημείωση | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Αναφορά σφάλματος | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένα έγκυρο ΌνομαΠεδίου | |||
DocType: Email Account,Email Ids,Email ταυτότητες | |||
DocType: Email Account,Email Addresses,Email ταυτότητες | |||
DocType: Currency,Symbol,Σύμβολο | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Γραμμή #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Ο νέος κωδικός απεστάλη μέσω e-mail | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Στην ουρά | |||
DocType: PayPal Settings,Use Sandbox,χρήση Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Νέα προσαρμοσμένη μορφή Εκτύπωση | |||
DocType: DocPerm,Create,Δημιουργία | |||
DocType: Newsletter,A Lead with this email id should exist,Μια επαφή με αυτή τη διεύθυνση email θα πρέπει να υπάρχει | |||
DocType: Newsletter,A Lead with this Email Address should exist,Μια επαφή με αυτή τη διεύθυνση email θα πρέπει να υπάρχει | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Άκυρα Φίλτρο : {0} | |||
DocType: Integration Service,Background Events,Ιστορικό Εκδηλώσεις | |||
DocType: Dropbox Settings,App Access Key,App Κλειδί Πρόσβασης | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Επίτρεψε επεξε | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Το όνομα σου | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Είναι Φάκελος | |||
DocType: Newsletter,Test Email Id,Δοκιμαστικό email ID | |||
DocType: Newsletter,Test Email Address,Δοκιμαστικό Email Address | |||
DocType: DocType,DocType,Τύπος εγγράφου | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Ο χρήστης {0} δεν υπάρχει | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Αν είναι επιλεγμένη εικόνα, το χρώμα θα πρέπει να αγνοηθεί." | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,Ο λογαριασμός ηλεκτρον | |||
DocType: Workflow State,Download,Λήψη | |||
DocType: Blog Post,Blog Intro,Εισαγωγή blog | |||
DocType: Async Task,Result,Αποτέλεσμα | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} Δεν είναι έγκυρη ταυτότητα email | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} Δεν είναι έγκυρη ταυτότητα email | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Ενεργοποίηση έκθεσης | |||
DocType: DocField,Display Depends On,Εμφάνισης εξαρτάται από | |||
DocType: Web Page,Insert Code,Εισαγωγή κώδικα | |||
@@ -163,7 +163,7 @@ DocType: Customize Form,Enter Form Type,Introduzca Tipo de Formulario | |||
DocType: User,Send Password Update Notification,Enviar contraseña Notificación de actualización | |||
apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!" | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Empiece a introducir datos por debajo de esta línea | |||
DocType: Email Account,Always use Account's Email ID as Sender,Utilice siempre la cuenta de correo electrónico como ID del remitente | |||
DocType: Email Account,Always use Account's Email Address as Sender,Utilice siempre la cuenta de correo electrónico como ID del remitente | |||
DocType: Workflow State,eye-close,ojo -cierre | |||
apps/frappe/frappe/public/js/frappe/request.js +304,Report this issue,Reportar Incidencia | |||
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Añade un acript personalizado (cliente o servidor) a un tipo de documento | |||
@@ -364,7 +364,7 @@ DocType: Event,Sunday,Domingo | |||
DocType: Contact Us Settings,Send enquiries to this email address,Puede enviar sus preguntas a la siguiente dirección de correo electrónico | |||
apps/frappe/frappe/config/website.py +18,User editable form on Website.,Forma editable Usuario en el Sitio Web. | |||
DocType: File,File Size,Tamaño del archivo | |||
DocType: Newsletter,A Lead with this email id should exist,Una Iniciativa con este correo electrónico debería existir | |||
DocType: Newsletter,A Lead with this Email Address should exist,Una Iniciativa con este correo electrónico debería existir | |||
DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reglas para transición entre estados, como el siguiente estado y qué función permite cambiar de estado , etc" | |||
DocType: DocType,Show Print First,Mostrar Imprimir Primera | |||
apps/frappe/frappe/public/js/frappe/form/link_selector.js +105,Make a new {0},Crear un nuevo {0} | |||
@@ -421,7 +421,7 @@ apps/frappe/frappe/public/js/frappe/form/share.js +26,Shared with everyone,Compa | |||
apps/frappe/frappe/model/base_document.py +417,Data missing in table,Los datos que faltan en la tabla | |||
DocType: Web Form,Success URL,URL de Éxito | |||
DocType: Workflow Document State,Only Allow Edit For,Sólo Permitir Editar Para | |||
DocType: Newsletter,Test Email Id,Prueba de Identificación del email | |||
DocType: Newsletter,Test Email Address,Prueba de Identificación del email | |||
apps/frappe/frappe/core/doctype/user/user.py +197,Sorry! Sharing with Website User is prohibited.,¡Lo siento! Compartir con los del Sitio Web está prohibido. | |||
DocType: Workflow State,resize-full,cambiar a tamaño completo | |||
apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,Informe {0} está deshabilitado | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Consulta | |||
DocType: DocType,Sort Order,Ordenar por | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'En vista de lista' no está permitido para el tipo {0} en el renglón {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Su ID de correo electrónico | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Su ID de correo electrónico | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Seleccione la etiqueta con la cual desea insertar el nuevo campo. | |||
,Document Share Report,Reporte de documentos compartidos | |||
DocType: User,Last Login,Último ingreso | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Página HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Sólo se pueden crear más nodos bajo nodos de tipo ' Grupo ' | |||
DocType: Web Page,Header,Encabezado | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Columna desconocida: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcional: Enviar siempre a estos identificadores. Cada correo electrónico de identificación en una nueva fila | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Enviar siempre a estos identificadores. Cada correo electrónico de identificación en una nueva fila | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Los usuarios con rol {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalación de la aplicación {0} | |||
DocType: Print Format,Custom Format,Formato personalizado | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,Retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Actualice la plantilla y guárdela en formato CSV (Valores separados por coma) antes de adjuntar. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Especifique el valor del campo | |||
DocType: Report,Disabled,Deshabilitado | |||
DocType: Email Account,Always use Account's Email ID as Sender,Utilice siempre la cuenta de correo electrónico (Email) como ID del remitente | |||
DocType: Email Account,Always use Account's Email Address as Sender,Utilice siempre la cuenta de correo electrónico (Email) como ID del remitente | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Por favor seleccione otro método de pago. {0} no soporta transacciones en moneda '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Configuración del proveedor OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,hoja | |||
DocType: Portal Menu Item,Portal Menu Item,Portal del Menú | |||
DocType: Email Account,Email ID,ID de Correo Electrónico | |||
DocType: Email Account,Email Address,ID de Correo Electrónico | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insertar vínculo | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Una lista de los recursos que el cliente de aplicación tendrá acceso a la vez que el usuario lo permite. <br> por ejemplo, el proyecto" | |||
DocType: Contact Us Settings,Query Options,Opciones de consulta | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notas: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,recorte | |||
DocType: DocShare,Document Name,Nombre de documento | |||
DocType: ToDo,Medium,Medio | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Por favor, verifique su Email de identificación" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Por favor, verifique su Email de identificación" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,No tiene suficientes permisos para ver enlaces. | |||
DocType: Customize Form,Customize Form,Personalizar formulario | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Un símbolo para esta moneda. Por ejemplo, $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,retroceder | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Por favor, establezca las llaves de acceso de Dropbox en la configuración de su sistema" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar este registro para permitir el envío a esta dirección de correo electrónico | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Utiliza el ID de correo electrónico mencionado en esta cuenta como remitente para todos los correos electrónicos enviados con esta cuenta. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Utiliza el ID de correo electrónico mencionado en esta cuenta como remitente para todos los correos electrónicos enviados con esta cuenta. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Sólo los campos obligatorios son necesarios para los nuevos registros. Puede eliminar columnas de carácter no obligatorio, si lo desea." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,No se puede actualizar evento | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,El pago completo | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,marcador | |||
DocType: Note,Note,Nota | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Reporte de error | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,El campo de línea de tiempo debe ser un nombre de campo válido | |||
DocType: Email Account,Email Ids,IDs de Correo Electrónico | |||
DocType: Email Account,Email Addresses,IDs de Correo Electrónico | |||
DocType: Currency,Symbol,Símbolo. | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Línea #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nueva contraseña enviada por correo electrónico | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,En cola | |||
DocType: PayPal Settings,Use Sandbox,uso Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nuevo formato de impresión personalizado | |||
DocType: DocPerm,Create,Crear | |||
DocType: Newsletter,A Lead with this email id should exist,Debe existir una iniciativa con este ID de correo electrónico | |||
DocType: Newsletter,A Lead with this Email Address should exist,Debe existir una iniciativa con este ID de correo electrónico | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtro no válido: {0} | |||
DocType: Integration Service,Background Events,antecedentes Eventos | |||
DocType: Dropbox Settings,App Access Key,Aplicación Clave de Acceso | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Permitir editar para | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tu nombre | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Es Carpeta | |||
DocType: Newsletter,Test Email Id,Prueba de Email | |||
DocType: Newsletter,Test Email Address,Prueba de Email | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,El usuario {0} no existe | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Si se selecciona una imagen, no se tomará en cuenta el color." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Cuentas de correo electrónico | |||
DocType: Workflow State,Download,Descargar | |||
DocType: Blog Post,Blog Intro,Intro. del Blog | |||
DocType: Async Task,Result,Resultado | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} no es un ID de correo electrónico válido | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no es un ID de correo electrónico válido | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Habilitar reporte | |||
DocType: DocField,Display Depends On,Display depende | |||
DocType: Web Page,Insert Code,Insertar código | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,Järjekord | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"In List View 'ei ole lubatud tüüp {0} järjest {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Sinu e-post Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Sinu e-post Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Valige silt, mille järel soovite lisada uue valdkonna." | |||
,Document Share Report,Dokumendi Jaga aruanne | |||
DocType: User,Last Login,Viimane sisselogimine | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Lisaks sõlmed saab ainult loodud töörühm tüüpi sõlmed | |||
DocType: Web Page,Header,Päise | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Tundmatu veerg: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Valikuline: Alati saatke need IDd. Iga e-posti id uue rea | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valikuline: Alati saatke need IDd. Iga e-posti id uue rea | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,"Kasutajad, kellel on osa {0}:" | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Paigaldamine App {0} | |||
DocType: Print Format,Custom Format,Custom Formaat | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Uuenda malli ja salvestada CSV (Comma Eraldi väärtused) formaadis enne kinnitamist. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Määrake väärtus valdkonnas | |||
DocType: Report,Disabled,Invaliidistunud | |||
DocType: Email Account,Always use Account's Email ID as Sender,Kasutage alati konto Email ID saatja kujul | |||
DocType: Email Account,Always use Account's Email Address as Sender,Kasutage alati konto Email Address saatja kujul | |||
DocType: Workflow State,eye-close,silmade lähedal | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Palun valige mõni teine makseviis. {0} ei toeta tehingud sularaha "{1}" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider seaded | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,leht | |||
DocType: Portal Menu Item,Portal Menu Item,Portaal Menüüvalik | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Lingi lisamine | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Nimekirja ressursse, mida klient App on juurdepääs pärast kasutaja seda lubab. <br> nt projekti" | |||
DocType: Contact Us Settings,Query Options,Päringu valikud | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Märkused: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Hinnaalandus | |||
DocType: DocShare,Document Name,Dokumendi nimi | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Palun kontrollige oma e-posti id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Palun kontrollige oma e-posti id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ei piisa vaatamiseks luba linke. | |||
DocType: Customize Form,Customize Form,Kohanda vorm | |||
DocType: Currency,A symbol for this currency. For e.g. $,Sümbol selle valuuta. Sest näiteks $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,samm-tagasi | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Palun määra Dropbox sissepääsuvõtmetena saidi config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Kustuta see rekord lubada saates selle e-posti aadress | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Kasutab Email ID mainitud seda Konto saatja kõigile kirju saata kasutades selle konto. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Kasutab Email Address mainitud seda Konto saatja kõigile kirju saata kasutades selle konto. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Ainult kohustuslikud väljad on vajalikud uue rekordi. Võite kustutada mittekohustuslikud kolonnid, kui soovite." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Ei saa uuendada juhul | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,makse on | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,järjehoidja | |||
DocType: Note,Note,Märge | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Viga aruanne | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline valdkonnas peab olema kehtiv fieldname | |||
DocType: Email Account,Email Ids,E-IDd | |||
DocType: Email Account,Email Addresses,E-IDd | |||
DocType: Currency,Symbol,Sümbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Uus salasõna saadetakse | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Järjekorras | |||
DocType: PayPal Settings,Use Sandbox,Kasuta liivakasti | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Loo | |||
DocType: Newsletter,A Lead with this email id should exist,Plii See e-id peaksid olemas | |||
DocType: Newsletter,A Lead with this Email Address should exist,Plii See e-id peaksid olemas | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Vale Filter: {0} | |||
DocType: Integration Service,Background Events,Taust sündmused | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Ainult Laske Muuda | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Sinu nimi | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Kas Folder | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Kasutaja {0} ei ole olemas | |||
DocType: Website Theme,"If image is selected, color will be ignored.",Kui pilt on valitud värvi ignoreeritakse. | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Emaili konto | |||
DocType: Workflow State,Download,Laadi alla | |||
DocType: Blog Post,Blog Intro,Blogi tutvustus | |||
DocType: Async Task,Result,Tulemus | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ei ole kehtiv e-posti id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ei ole kehtiv e-posti id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Luba aruanne | |||
DocType: DocField,Display Depends On,Näita sõltub | |||
DocType: Web Page,Insert Code,Sisesta kood | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,پرس و جو | |||
DocType: DocType,Sort Order,ترتیب | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'نمایش لیستی' برای نوع {0} در ردیف {1} مجاز نیست | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,ایمیل خود را در ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,ایمیل خود را در ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,برچسب و پس از آن شما می خواهید برای وارد کردن زمینه های جدید را انتخاب کنید. | |||
,Document Share Report,سند اشتراک گزارش | |||
DocType: User,Last Login,تاریخ و زمان آخرین ورود | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,صفحه HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,گره علاوه بر این می تواند تنها تحت نوع گره 'گروه' ایجاد | |||
DocType: Web Page,Header,سربرگ | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ستون ناشناخته: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,اختیاری: همیشه به این شناسه را ارسال. هر شناسه ایمیل را در یک ردیف جدید | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاری: همیشه به این شناسه را ارسال. هر شناسه ایمیل را در یک ردیف جدید | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,کاربران با نقش {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},نصب برنامه {0} | |||
DocType: Print Format,Custom Format,قالب های سفارشی | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,بازتوییت | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,به روز رسانی قالب و ذخیره در CSV (با کاما جدا ارزش) فرمت قبل از اتصال. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,مشخص ارزش این زمینه | |||
DocType: Report,Disabled,غیر فعال | |||
DocType: Email Account,Always use Account's Email ID as Sender,همیشه حساب ایمیل ID به عنوان فرستنده استفاده | |||
DocType: Email Account,Always use Account's Email Address as Sender,همیشه حساب ایمیل ID به عنوان فرستنده استفاده | |||
DocType: Workflow State,eye-close,چشم نزدیک | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',لطفا روش پرداخت دیگری را انتخاب کنید. {0} از انجام تراکنش در ارز را پشتیبانی نمی کند: '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,تنظیمات ارائه دهنده OAuth تأیید | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,برگ | |||
DocType: Portal Menu Item,Portal Menu Item,آیتم های منو را پورتال | |||
DocType: Email Account,Email ID,ایمیل ID | |||
DocType: Email Account,Email Address,ایمیل ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,درج لینک | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,فهرستی از منابع که برنامه سرویس گیرنده دسترسی به پس از کاربر اجازه می دهد تا داشته باشد. <br> به عنوان مثال پروژه | |||
DocType: Contact Us Settings,Query Options,گزینه های پرس و جو | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,یاددا | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,نام سند | |||
DocType: ToDo,Medium,متوسط | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,لطفا شناسه ایمیل خود را تایید کنید | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,لطفا شناسه ایمیل خود را تایید کنید | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,هنوز به اندازه کافی اجازه دیدن لینک ها. | |||
DocType: Customize Form,Customize Form,سفارشی کردن فرم | |||
DocType: Currency,A symbol for this currency. For e.g. $,نماد برای این ارز. برای مثال $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,گام به گام به عقب | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,لطفا کلیدهای دسترسی Dropbox به پیکربندی در سایت خود تنظیم | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,حذف این رکورد اجازه می دهد تا ارسال به این آدرس ایمیل | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,با استفاده از ID ایمیل در این حساب به عنوان فرستنده برای همه ایمیل های فرستاده شده از این حساب ذکر شده است. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,با استفاده از ID ایمیل در این حساب به عنوان فرستنده برای همه ایمیل های فرستاده شده از این حساب ذکر شده است. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,تنها فیلدها اجباری لازم برای پرونده جدید است. شما می توانید ستون اجباری اگر شما می خواهید حذف کنید. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,به روز نمی شود رویداد | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,کامل پرداخت | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,چوب الف | |||
DocType: Note,Note,یادداشت | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,گزارش خطا | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,درست گاهشمار باید یک FIELDNAME معتبر باشد | |||
DocType: Email Account,Email Ids,ایمیل شناسه | |||
DocType: Email Account,Email Addresses,ایمیل شناسه | |||
DocType: Currency,Symbol,نماد | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ردیف # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,کلمه عبور جدید را در ایمیل فرستاده | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,صف | |||
DocType: PayPal Settings,Use Sandbox,استفاده از گودال ماسهبازی | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,جدید سفارشی چاپ فرمت | |||
DocType: DocPerm,Create,ساختن | |||
DocType: Newsletter,A Lead with this email id should exist,یک نفر با این آدرس ایمیل موجود است | |||
DocType: Newsletter,A Lead with this Email Address should exist,یک نفر با این آدرس ایمیل موجود است | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},فیلتر نامعتبر: {0} | |||
DocType: Integration Service,Background Events,پس زمینه رویدادها | |||
DocType: Dropbox Settings,App Access Key,برنامه کلید دسترسی | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,تنها اجازه می د | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,اسم شما | |||
DocType: DocType,InnoDB,سازی InnoDB | |||
DocType: File,Is Folder,است پوشه | |||
DocType: Newsletter,Test Email Id,تست ایمیل کد | |||
DocType: Newsletter,Test Email Address,تست ایمیل کد | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,کاربر {0} وجود ندارد | |||
DocType: Website Theme,"If image is selected, color will be ignored.",اگر تصویر انتخاب شده است، رنگ نادیده گرفته می شود. | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,حساب کاربری ایمیل | |||
DocType: Workflow State,Download,دانلود | |||
DocType: Blog Post,Blog Intro,وبلاگ معرفی | |||
DocType: Async Task,Result,نتیجه | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} این یک شناسه ایمیل معتبر نیست | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} این یک شناسه ایمیل معتبر نیست | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,فعال گزارش | |||
DocType: DocField,Display Depends On,ها بستگی به | |||
DocType: Web Page,Insert Code,قرار دادن کد | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Kysely | |||
DocType: DocType,Sort Order,Lajittelujärjestys | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Listausnäkymässä' ei voi olla asetettuna rivin {1} tyypillä {0} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Sähköpostiosoitteesi | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Sähköpostiosoitteesi | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Valitse nimike jonka jälkeen haluat lisätä uuden kentän | |||
,Document Share Report,asiakirjanjako raportti | |||
DocType: User,Last Login,Viimeksi kirjautunut | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML: | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,tulevat sidoket voi olla ainoastaan 'ryhmä' tyyppisiä sidoksia | |||
DocType: Web Page,Header,ylätunniste | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Tuntematon kolumni: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Valinnainen: Lähetä aina näihin osoitteisiin. Yksi osoite per rivi. | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valinnainen: Lähetä aina näihin osoitteisiin. Yksi osoite per rivi. | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,"Käyttäjät, joilla on rooli {0}:" | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Asentaminen App {0} | |||
DocType: Print Format,Custom Format,oma muoto | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Päivitä mallipohja ja tallenna se .csv tiedostoksi (Comma Separate Values) ennen liittämistä | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,määritä kentän arvo | |||
DocType: Report,Disabled,ei käytössä | |||
DocType: Email Account,Always use Account's Email ID as Sender,Käytä tiliä sähköpostiosoite tunnus kuten lähettäjän | |||
DocType: Email Account,Always use Account's Email Address as Sender,Käytä tiliä sähköpostiosoite tunnus kuten lähettäjän | |||
DocType: Workflow State,eye-close,silmä-kiinni | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Valitse toinen maksutapa. {0} ei tue käteisrahaan '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Asetukset | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,Rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,jatko | |||
DocType: Portal Menu Item,Portal Menu Item,Portaalivalikon valinta | |||
DocType: Email Account,Email ID,sähköpostitunnus | |||
DocType: Email Account,Email Address,sähköpostitunnus | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,aseta linkki | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Luettelo resursseja, jotka asiakkaan App on pääsy, kun käyttäjä sallii sen. <br> esim projekti" | |||
DocType: Contact Us Settings,Query Options,"Kysely, vaihtoehdot" | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Huom: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,asiakirjan nimi | |||
DocType: ToDo,Medium,Keskikokoinen | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Tarkista sähköpostiosoitteesi | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Tarkista sähköpostiosoitteesi | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ei tarpeeksi lupa nähdä linkkejä. | |||
DocType: Customize Form,Customize Form,Muokkaa tietuetyyppiä | |||
DocType: Currency,A symbol for this currency. For e.g. $,"valuutan symboli, esim €" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,askel-taaksepäin | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_otsikko} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Määritä Dropbox pääsyn asetukset | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Poista tämä ennätys jotta lähettämällä tähän sähköpostiosoitteeseen | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Käytä tilin sähköpostiosoitetta kaikkien tililtä lähetettyjen sähköpostien lähettäjänä. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Käytä tilin sähköpostiosoitetta kaikkien tililtä lähetettyjen sähköpostien lähettäjänä. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Uusille tietueille vain pakolliset kentät ovat välttämättömiä, ylimääräiset sarakkeet voidaan poistaa tarvittaessa." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Tapahtumaa ei pysty päivittämään | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Maksu valmis | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,kirjanmerkki | |||
DocType: Note,Note,Muistiinpano | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Virheraportti | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Aikajana kentän täytyy olla kelvollinen fieldname | |||
DocType: Email Account,Email Ids,sähköpostiosoitteet | |||
DocType: Email Account,Email Addresses,sähköpostiosoitteet | |||
DocType: Currency,Symbol,symbooli | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Rivi # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Uusi salasana lähetetty | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Jonossa | |||
DocType: PayPal Settings,Use Sandbox,Käytä Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,uusi oma tulostusmuoto | |||
DocType: DocPerm,Create,tee | |||
DocType: Newsletter,A Lead with this email id should exist,kyseisen sähköpostin tunnuksella löytyy kytketty markkinavihje | |||
DocType: Newsletter,A Lead with this Email Address should exist,kyseisen sähköpostin tunnuksella löytyy kytketty markkinavihje | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},virheellinen suodatus: {0} | |||
DocType: Integration Service,Background Events,Taustatapahtumat | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Vain Salli Edit For | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Nimesi | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,On Folder | |||
DocType: Newsletter,Test Email Id,Testi sähköpostiosoite | |||
DocType: Newsletter,Test Email Address,Testi sähköpostiosoite | |||
DocType: DocType,DocType,Tietuetyyppi | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Käyttäjä {0} ei ole olemassa | |||
DocType: Website Theme,"If image is selected, color will be ignored.",mikäli kuva on valittuna väri ohitetaan | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,sähköpostitili | |||
DocType: Workflow State,Download,Vie | |||
DocType: Blog Post,Blog Intro,Blogi Intro | |||
DocType: Async Task,Result,Tulos | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ei sallittu sähköpostitunnus | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ei sallittu sähköpostitunnus | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,aktivoi raportti | |||
DocType: DocField,Display Depends On,Näyttö riippuu | |||
DocType: Web Page,Insert Code,aseta koodi | |||
@@ -467,7 +467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Requête | |||
DocType: DocType,Sort Order,Ordre de tri | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},« Dans la vu en liste » n'est pas permis pour le type {0} à la ligne {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Votre Email Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Votre Email Address | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Sélectionnez le libellé après lequel vous voulez insérer un nouveau champ. | |||
,Document Share Report,Partager document Rapport | |||
DocType: User,Last Login,Dernière connexion | |||
@@ -651,7 +651,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,D'autres nœuds peuvent être créés que sous les nœuds de type 'Groupe' | |||
DocType: Web Page,Header,En-tête | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Colonne inconnue : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Facultatif: Toujours envoyer à ces identifiants. Chaque ID Email sur une nouvelle ligne | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Facultatif: Toujours envoyer à ces identifiants. Chaque ID Email sur une nouvelle ligne | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Les utilisateurs disposant du rôle {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installation App {0} | |||
DocType: Print Format,Custom Format,Format personnalisé | |||
@@ -720,7 +720,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Mettre à jour le modèle et l'enregistrer au format CSV (Valeurs séparées par virgules) avant de l'attacher. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Spécifiez la valeur du champ | |||
DocType: Report,Disabled,Desactivé | |||
DocType: Email Account,Always use Account's Email ID as Sender,Toujours utiliser L'ID E-mail du compte comme l'expéditeur | |||
DocType: Email Account,Always use Account's Email Address as Sender,Toujours utiliser L'ID E-mail du compte comme l'expéditeur | |||
DocType: Workflow State,eye-close,oeil de près | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',S'il vous plaît choisir un autre mode de paiement. {0} ne supporte pas les transactions en monnaie '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Paramètres OAuth Provider | |||
@@ -863,7 +863,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,feuille | |||
DocType: Portal Menu Item,Portal Menu Item,Article du Menu Portail | |||
DocType: Email Account,Email ID,ID E-mail | |||
DocType: Email Account,Email Address,ID E-mail | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insérer un lien | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Une liste des ressources que l'App client aura accès à après que l'utilisateur le permet. <br> par exemple projet | |||
DocType: Contact Us Settings,Query Options,Options de requête | |||
@@ -899,7 +899,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Remarques: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Nom du document | |||
DocType: ToDo,Medium,Moyen | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,S'il vous plaît vérifier votre ID courriel | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,S'il vous plaît vérifier votre ID courriel | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Autorisation insuffisante pour voir les liens. | |||
DocType: Customize Form,Customize Form,Personnaliser le formulaire | |||
DocType: Currency,A symbol for this currency. For e.g. $,Un symbole pour cette monnaie. Par exemple $ | |||
@@ -1090,7 +1090,7 @@ DocType: Workflow State,step-backward,étape vers l'arrière | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,S'il vous plaît définir les clés d'accès Dropbox sur votre site config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Utilise l'ID E-mail mentionné dans ce compte comme expéditeur pour tous les E-mail envoyés via ce compte. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Utilise l'ID E-mail mentionné dans ce compte comme expéditeur pour tous les E-mail envoyés via ce compte. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Seuls les champs obligatoires sont nécessaires pour les nouveaux enregistrements. Vous pouvez supprimer des colonnes non obligatoires si vous le souhaitez. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Impossible de mettre à jour l'événement | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Paiement complet | |||
@@ -1286,7 +1286,7 @@ DocType: Workflow State,bookmark,favoris | |||
DocType: Note,Note,Remarque | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Rapport d'erreur | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,champ calendrier doit être un nom de champ valide | |||
DocType: Email Account,Email Ids,ID's E-mail | |||
DocType: Email Account,Email Addresses,ID's E-mail | |||
DocType: Currency,Symbol,Symbole | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Ligne # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nouveau mot de passe est envoyé par courriel | |||
@@ -1716,7 +1716,7 @@ DocType: Async Task,Queued,File d'attente | |||
DocType: PayPal Settings,Use Sandbox,Utilisez Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nouveau Format d'impression Personnalisé | |||
DocType: DocPerm,Create,Créer | |||
DocType: Newsletter,A Lead with this email id should exist,Un responsable avec ce ID Email doit exister | |||
DocType: Newsletter,A Lead with this Email Address should exist,Un responsable avec ce ID Email doit exister | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtre invalide : {0} | |||
DocType: Integration Service,Background Events,Événements en Arrière Plan | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1892,7 +1892,7 @@ DocType: Workflow Document State,Only Allow Edit For,Autoriser modifier uniqueme | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Votre nom | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Est un dossier | |||
DocType: Newsletter,Test Email Id,ID Email test | |||
DocType: Newsletter,Test Email Address,ID Email test | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Utilisateur {0} n'existe pas | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Si l'image est sélectionnée, la couleur sera ignoré." | |||
@@ -2247,7 +2247,7 @@ DocType: Communication,Email Account,Compte E-mail | |||
DocType: Workflow State,Download,Télécharger | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Résultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} n'est pas un identifiant de courriel valide | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} n'est pas un identifiant de courriel valide | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Activer Rapport | |||
DocType: DocField,Display Depends On,Affichage dépend | |||
DocType: Web Page,Insert Code,Insérez le code | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,ક્વેરી | |||
DocType: DocType,Sort Order,સૉર્ટ કરો ઓર્ડર | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'યાદી દૃશ્યમાં' પંક્તિ પ્રકાર {0} માટે મંજૂરી નથી {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,તમારા ઇમેઇલ ને | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,તમારા ઇમેઇલ ને | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"તમે નવા ક્ષેત્ર દાખલ કરવા માંગો છો, જે પછી લેબલ પસંદ કરો." | |||
,Document Share Report,દસ્તાવેજ શેર રિપોર્ટ | |||
DocType: User,Last Login,છેલ્લું લૉગિન | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,પેજમાં HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,વધુ ગાંઠો માત્ર 'ગ્રુપ' પ્રકાર ગાંઠો હેઠળ બનાવી શકાય છે | |||
DocType: Web Page,Header,મથાળું | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},અજ્ઞાત કૉલમ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,વૈકલ્પિક: હંમેશા આ ID મોકલો. એક નવી પંક્તિ પર દરેક ઇમેઇલ ને | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,વૈકલ્પિક: હંમેશા આ ID મોકલો. એક નવી પંક્તિ પર દરેક ઇમેઇલ ને | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ભૂમિકા {0} સાથે વપરાશકર્તાઓ: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},સ્થાપિત એપ્લિકેશન {0} | |||
DocType: Print Format,Custom Format,કસ્ટમ ફોર્મેટ | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,રીટ્વીટ | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,આ નમૂનો અપડેટ અને જોડાણ પહેલાં CSV માં ફોર્મેટ (અલ્પવિરામથી અલગ કિંમતો) સાચવો. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,આ ક્ષેત્ર ની કિંમત સ્પષ્ટ કરો | |||
DocType: Report,Disabled,અક્ષમ | |||
DocType: Email Account,Always use Account's Email ID as Sender,હંમેશા મોકલનાર તરીકે એકાઉન્ટનાં ઇમેઇલ ID નો ઉપયોગ | |||
DocType: Email Account,Always use Account's Email Address as Sender,હંમેશા મોકલનાર તરીકે એકાઉન્ટનાં ઇમેઇલ ID નો ઉપયોગ | |||
DocType: Workflow State,eye-close,આંખ બંધ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',કૃપા કરીને અન્ય ચુકવણી પદ્ધતિ પસંદ કરો. {0} ચલણ વ્યવહારો સપોર્ટ કરતું નથી '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,ઑથ પ્રદાતા સેટિંગ્સ | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,પર્ણ | |||
DocType: Portal Menu Item,Portal Menu Item,પોર્ટલ મેનુ વસ્તુ | |||
DocType: Email Account,Email ID,ઇમેઇલ ને | |||
DocType: Email Account,Email Address,ઇમેઇલ ને | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,સામેલ કરો લિંક | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,સંસાધનો યાદી કે જે ક્લાઈન્ટ એપ્લિકેશન વપરાશકર્તા તેને પરવાનગી આપે છે પછી ઍક્સેસ હશે. <br> દા.ત. પ્રોજેક્ટ | |||
DocType: Contact Us Settings,Query Options,ક્વેરી વિકલ્પો | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,નોં | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,દસ્તાવેજ નામ | |||
DocType: ToDo,Medium,મધ્યમ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,તમારા ઇમેઇલ ને ચકાસો | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,તમારા ઇમેઇલ ને ચકાસો | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,કડીઓ જોવા માટે પર્યાપ્ત પરવાનગી. | |||
DocType: Customize Form,Customize Form,ફોર્મ કસ્ટમાઇઝ | |||
DocType: Currency,A symbol for this currency. For e.g. $,આ ચલણ માટે એક પ્રતીક. દા.ત. $ માટે | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,પગલું પછાત | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,તમારી સાઇટ રૂપરેખા ડ્રૉપબૉક્સ વપરાશ કીઓ સુયોજિત કરો | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,આ ઈમેઈલ સરનામાને મોકલવા માટે પરવાનગી આપે છે આ રેકોર્ડ કાઢી નાખો | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,આ એકાઉન્ટ નો ઉપયોગ કરીને મોકલવામાં બધા ઇમેઇલ્સ માટે મોકલનાર તરીકે આ એકાઉન્ટ ઉલ્લેખ ઇમેઇલ આઈડી ઉપયોગ કરે છે. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,આ એકાઉન્ટ નો ઉપયોગ કરીને મોકલવામાં બધા ઇમેઇલ્સ માટે મોકલનાર તરીકે આ એકાઉન્ટ ઉલ્લેખ ઇમેઇલ આઈડી ઉપયોગ કરે છે. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,માત્ર ફરજિયાત ક્ષેત્રો નવા વિક્રમો માટે જરૂરી છે. જો તમે ઈચ્છો તો તમે બિન-ફરજિયાત કૉલમ કાઢી શકો છો. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ઘટના અપડેટ કરવામાં અસમર્થ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ચુકવણી પૂર્ણ | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,બુકમાર્ક | |||
DocType: Note,Note,નૉૅધ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ભૂલ રિપોર્ટ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,સમયરેખા ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ | |||
DocType: Email Account,Email Ids,ઇમેઇલ ids | |||
DocType: Email Account,Email Addresses,ઇમેઇલ ids | |||
DocType: Currency,Symbol,નિશાનીનો | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ROW # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,નવો પાસવર્ડ ઇમેઇલ | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,કતારબદ્ધ | |||
DocType: PayPal Settings,Use Sandbox,ઉપયોગ સેન્ડબોક્સ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,નવા કસ્ટમ પ્રિન્ટ ફોર્મેટ | |||
DocType: DocPerm,Create,બનાવો | |||
DocType: Newsletter,A Lead with this email id should exist,આ ઇમેઇલ ID સાથે લીડ અસ્તિત્વ ધરાવતું હોવું જોઈએ | |||
DocType: Newsletter,A Lead with this Email Address should exist,આ ઇમેઇલ ID સાથે લીડ અસ્તિત્વ ધરાવતું હોવું જોઈએ | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},અમાન્ય ફિલ્ટર કરો: {0} | |||
DocType: Integration Service,Background Events,પૃષ્ઠભૂમિ ઘટનાઓ | |||
DocType: Dropbox Settings,App Access Key,એપ્લિકેશન ઍક્સેસ કી | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,માત્ર ફેર | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,તમારું નામ | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ફોલ્ડર છે | |||
DocType: Newsletter,Test Email Id,પરીક્ષણ ઇમેઇલ આઈડી | |||
DocType: Newsletter,Test Email Address,પરીક્ષણ ઇમેઇલ આઈડી | |||
DocType: DocType,DocType,Doctype | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,વપરાશકર્તા {0} અસ્તિત્વમાં નથી | |||
DocType: Website Theme,"If image is selected, color will be ignored.","છબી પસંદ થયેલ હોય, રંગ અવગણવામાં આવશે." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ઇમેઇલ એકાઉન્ટ | |||
DocType: Workflow State,Download,ડાઉનલોડ કરો | |||
DocType: Blog Post,Blog Intro,પ્રસ્તાવના બ્લોગ | |||
DocType: Async Task,Result,પરિણામ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} માન્ય ઈમેઈલ આઈડી નથી | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} માન્ય ઈમેઈલ આઈડી નથી | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,રિપોર્ટ સક્ષમ | |||
DocType: DocField,Display Depends On,ડિસ્પ્લે પર આધાર રાખે છે | |||
DocType: Web Page,Insert Code,સામેલ કરો કોડ | |||
@@ -417,7 +417,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,שאילתא | |||
DocType: DocType,Sort Order,סדר מיון | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""ברשימת צפייה 'לא אפשר לסוג {0} בשורת {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,הדואר האלקטרוני שלך Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,הדואר האלקטרוני שלך Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,בחר את התווית לאחר שרצונך להוסיף שדה חדש. | |||
,Document Share Report,מסמך שתף דווח | |||
DocType: User,Last Login,הביקור אחרון | |||
@@ -574,7 +574,7 @@ DocType: Page,Page HTML,הדף HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,צמתים נוספים ניתן ליצור אך ורק תחת צמתים הסוג 'הקבוצה' | |||
DocType: Web Page,Header,כותרת | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},טור ידוע: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,אופציונאלי: תמיד לשלוח למזהים הללו. כל id הדואר האלקטרוני בשורה חדשה | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,אופציונאלי: תמיד לשלוח למזהים הללו. כל id הדואר האלקטרוני בשורה חדשה | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,משתמשים עם תפקיד {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},להתקין יישום {0} | |||
DocType: Print Format,Custom Format,פורמט מותאם אישית | |||
@@ -637,7 +637,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,עדכון התבנית ולשמור בCSV (ערכים נפרדים פסיק) פורמט לפני הצמדה. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ציין את הערך של השדה | |||
DocType: Report,Disabled,נכים | |||
DocType: Email Account,Always use Account's Email ID as Sender,השתמש תמיד מזהה דוא"ל של החשבון כשולח | |||
DocType: Email Account,Always use Account's Email Address as Sender,השתמש תמיד מזהה דוא"ל של החשבון כשולח | |||
DocType: Workflow State,eye-close,עין-קרוב | |||
apps/frappe/frappe/public/js/frappe/request.js +304,Report this issue,דווח על בעיה זו | |||
apps/frappe/frappe/public/js/frappe/form/save.js +78,Name is required,שם נדרש | |||
@@ -758,7 +758,7 @@ apps/frappe/frappe/config/setup.py +243,Add fields to forms.,הוספת שדות | |||
DocType: File,rgt,rgt | |||
DocType: Workflow State,leaf,עלה | |||
DocType: Portal Menu Item,Portal Menu Item,פריט תפריט פורטל | |||
DocType: Email Account,Email ID,מזהה דוא"ל | |||
DocType: Email Account,Email Address,מזהה דוא"ל | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,הכנס קישור | |||
DocType: Contact Us Settings,Query Options,שאילתא אפשרויות | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +154,Import Successful!,יבוא מוצלח! | |||
@@ -793,7 +793,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,הערות: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,שם מסמך | |||
DocType: ToDo,Medium,בינוני | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,אנא ודא id הדוא"ל שלך | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,אנא ודא id הדוא"ל שלך | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,לא מספיק רשות לראות קישורים. | |||
DocType: Customize Form,Customize Form,התאמה אישית של טופס | |||
DocType: Currency,A symbol for this currency. For e.g. $,סימן של מטבע זה. לדוגמה: $$ | |||
@@ -965,7 +965,7 @@ DocType: Workflow State,step-backward,צעד אחורה | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{} App_title | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,אנא הגדר מקשי גישת Dropbox בconfig האתר שלך | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,למחוק רשומה זו כדי לאפשר שליחה לכתובת דוא"ל זו | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,משתמש בזיהוי הדואר האלקטרוני שצוין בחשבון זה כשולח לכל הדואר האלקטרוני שנשלח באמצעות חשבון זה. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,משתמש בזיהוי הדואר האלקטרוני שצוין בחשבון זה כשולח לכל הדואר האלקטרוני שנשלח באמצעות חשבון זה. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"רק שדות חובה נחוצים לשיאים חדשים. אתה יכול למחוק את העמודות שאינן חובה, אם תרצה." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,לא ניתן לעדכן את האירוע | |||
DocType: Workflow State,text-height,טקסט גובה | |||
@@ -1129,7 +1129,7 @@ DocType: Workflow State,bookmark,סימנייה | |||
DocType: Note,Note,הערה | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,דוח שגיאות | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,שדה ציר הזמן חייב להיות fieldname תקף | |||
DocType: Email Account,Email Ids,דוא"ל המזהים | |||
DocType: Email Account,Email Addresses,דוא"ל המזהים | |||
DocType: Currency,Symbol,סמל | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,# השורה {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,"דוא""ל סיסמא חדשה" | |||
@@ -1507,7 +1507,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,"Select your Coun | |||
DocType: Async Task,Queued,בתור | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,פורמט הדפסה מותאמת אישית חדש | |||
DocType: DocPerm,Create,צור | |||
DocType: Newsletter,A Lead with this email id should exist,"ליד עם דוא""ל זה צריך להיות קיים" | |||
DocType: Newsletter,A Lead with this Email Address should exist,"ליד עם דוא""ל זה צריך להיות קיים" | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},מסנן לא חוקי: {0} | |||
DocType: OAuth Bearer Token,Access Token,גישת אסימון | |||
DocType: About Us Settings,Org History,ההיסטוריה org | |||
@@ -1666,7 +1666,7 @@ DocType: Email Account,Append To,צרף ל | |||
DocType: Workflow Document State,Only Allow Edit For,אפשר לערוך רק ל | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,השם שלך | |||
DocType: File,Is Folder,האם תיקייה | |||
DocType: Newsletter,Test Email Id,"דוא""ל מבחן זיהוי" | |||
DocType: Newsletter,Test Email Address,"דוא""ל מבחן זיהוי" | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,משתמש {0} אינו קיים | |||
DocType: Website Theme,"If image is selected, color will be ignored.","אם תמונה שנבחרה, צבע יהיה להתעלם ממנו." | |||
@@ -1980,7 +1980,7 @@ DocType: Communication,Email Account,"חשבון דוא""ל" | |||
DocType: Workflow State,Download,הורדה | |||
DocType: Blog Post,Blog Intro,בלוג Intro | |||
DocType: Async Task,Result,תוצאה | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,"{0} אינו מזהה דוא""ל חוקי" | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,"{0} אינו מזהה דוא""ל חוקי" | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,אפשר דווח | |||
DocType: DocField,Display Depends On,התצוגה תלויה | |||
DocType: Web Page,Insert Code,הכנס קוד | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,प्रश्न | |||
DocType: DocType,Sort Order,सॉर्ट क्रम | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},' सूची दृश्य में ' की अनुमति नहीं प्रकार के लिए {0} पंक्ति में {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,अपना ईमेल आईडी | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,अपना ईमेल आईडी | |||
DocType: Custom Field,Select the label after which you want to insert new field.,लेबल का चयन करें जिसके बाद आप नए क्षेत्र सम्मिलित करना चाहते हैं. | |||
,Document Share Report,दस्तावेज़ को साझा रिपोर्ट | |||
DocType: User,Last Login,अंतिम लॉगिन | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,पृष्ठ HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,इसके अलावा नोड्स केवल ' समूह ' प्रकार नोड्स के तहत बनाया जा सकता है | |||
DocType: Web Page,Header,हैडर | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},अज्ञात स्तंभ : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,वैकल्पिक: हमेशा इन आईडी के लिए भेजें. एक नई पंक्ति पर प्रत्येक ईमेल आईडी | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,वैकल्पिक: हमेशा इन आईडी के लिए भेजें. एक नई पंक्ति पर प्रत्येक ईमेल आईडी | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,भूमिका के साथ उपयोक्ता {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},अधिष्ठापन अनुप्रयोग {0} | |||
DocType: Print Format,Custom Format,कस्टम स्वरूप | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,टेम्पलेट अद्यतन और संलग्न करने से पहले सीएसवी में प्रारूप (अल्पविराम अलग मान) को बचाने के। | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,क्षेत्र के मूल्य निर्दिष्ट करें | |||
DocType: Report,Disabled,विकलांग | |||
DocType: Email Account,Always use Account's Email ID as Sender,हमेशा प्रेषक के रूप में खाते का ईमेल आईडी का उपयोग | |||
DocType: Email Account,Always use Account's Email Address as Sender,हमेशा प्रेषक के रूप में खाते का ईमेल आईडी का उपयोग | |||
DocType: Workflow State,eye-close,आंख को बंद | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',कृपया किसी अन्य भुगतान पद्धति का चयन करें। {0} मुद्रा में लेन-देन का समर्थन नहीं करता '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth प्रदाता सेटिंग्स | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,पत्ती | |||
DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू आइटम | |||
DocType: Email Account,Email ID,ईमेल आईडी | |||
DocType: Email Account,Email Address,ईमेल आईडी | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,लिंक डालें | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,संसाधनों की एक सूची है जो ग्राहक App उपयोगकर्ता यह अनुमति देता है के बाद के लिए उपयोग होगा। <br> उदाहरण के लिए परियोजना | |||
DocType: Contact Us Settings,Query Options,क्वेरी विकल्प | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,नोट : | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,दस्तावेज़ का नाम | |||
DocType: ToDo,Medium,मध्यम | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,अपना ईमेल आईडी सत्यापित करें | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,अपना ईमेल आईडी सत्यापित करें | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,लिंक्स को देखने के लिए पर्याप्त अनुमति नहीं है। | |||
DocType: Customize Form,Customize Form,प्रपत्र को अनुकूलित | |||
DocType: Currency,A symbol for this currency. For e.g. $,इस मुद्रा के लिए एक प्रतीक. उदाहरण के लिए $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,कदम से पिछड़े | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ app_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,आपकी साइट config में ड्रॉपबॉक्स का उपयोग चाबियां सेट करें | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,इस ईमेल पते पर भेजने की अनुमति देने के लिए इस अभिलेख को नष्ट | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,इस खाते का उपयोग भेजे गए सभी ईमेल के लिए प्रेषक के रूप में इस खाते में उल्लेख किया है ईमेल आईडी का उपयोग करता है। | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,इस खाते का उपयोग भेजे गए सभी ईमेल के लिए प्रेषक के रूप में इस खाते में उल्लेख किया है ईमेल आईडी का उपयोग करता है। | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,केवल अनिवार्य क्षेत्रों में नए रिकॉर्ड के लिए जरूरी हैं। यदि आप चाहें तो आप गैर-अनिवार्य कॉलम हटा सकते हैं। | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,घटना अपडेट करने में असमर्थ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,भुगतान पूरा | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,बुकमार्क | |||
DocType: Note,Note,नोट | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,त्रुटि की रिपोर्ट | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,इस समय क्षेत्र में एक वैध FIELDNAME होना चाहिए | |||
DocType: Email Account,Email Ids,ईमेल आईडी | |||
DocType: Email Account,Email Addresses,ईमेल आईडी | |||
DocType: Currency,Symbol,प्रतीक | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,नई पासवर्ड ईमेल | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,पंक्तिबद्ध | |||
DocType: PayPal Settings,Use Sandbox,उपयोग सैंडबॉक्स | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,नई कस्टम प्रिंट प्रारूप | |||
DocType: DocPerm,Create,बनाना | |||
DocType: Newsletter,A Lead with this email id should exist,इस ईमेल आईडी के साथ एक लीड मौजूद होना चाहिए | |||
DocType: Newsletter,A Lead with this Email Address should exist,इस ईमेल आईडी के साथ एक लीड मौजूद होना चाहिए | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},अवैध फिल्टर: {0} | |||
DocType: Integration Service,Background Events,पृष्ठभूमि आयोजन | |||
DocType: Dropbox Settings,App Access Key,अनुप्रयोग प्रवेश कुंजी | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,केवल के लि | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,आपका नाम | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,फ़ोल्डर है | |||
DocType: Newsletter,Test Email Id,टेस्ट ईमेल आईडी | |||
DocType: Newsletter,Test Email Address,टेस्ट ईमेल आईडी | |||
DocType: DocType,DocType,Doctype | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,प्रयोक्ता {0} मौजूद नहीं है | |||
DocType: Website Theme,"If image is selected, color will be ignored.","छवि का चयन किया जाता है, तो रंग नजरअंदाज कर दिया जाएगा।" | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,ईमेल खाता | |||
DocType: Workflow State,Download,डाउनलोड | |||
DocType: Blog Post,Blog Intro,ब्लॉग परिचय | |||
DocType: Async Task,Result,परिणाम | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} एक मान्य ईमेल आईडी नहीं है | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} एक मान्य ईमेल आईडी नहीं है | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,रिपोर्ट सक्षम करें | |||
DocType: DocField,Display Depends On,प्रदर्शन पर निर्भर करता है | |||
DocType: Web Page,Insert Code,कोड डालने के लिए | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Upit | |||
DocType: DocType,Sort Order,sortiranje | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'U prikazu popisa' nisu dopušteni za tip {0} u redu {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Vaš e-mail ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Vaš e-mail ID | |||
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,Dokument podijele prijava | |||
DocType: User,Last Login,Zadnja prijava | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML stranica | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" | |||
DocType: Web Page,Header,Zaglavlje | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nepoznato Stupac : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcionalno: Uvijek poslati tih IDS. Svaka e-mail ID na novom redu | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcionalno: Uvijek poslati tih IDS. Svaka e-mail ID na novom redu | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Korisnici s ulogom {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instaliranje aplikacija {0} | |||
DocType: Print Format,Custom Format,Prilagođeni format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Ažuriranje predložak i spremite u CSV (zarezom odvojene vrijednosti) formatu prije postavljanja. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Odredite vrijednost terena | |||
DocType: Report,Disabled,Ugašeno | |||
DocType: Email Account,Always use Account's Email ID as Sender,Uvijek koristite Računa Email ID kao Sender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Uvijek koristite Računa Email Address kao Sender | |||
DocType: Workflow State,eye-close,oka u blizini | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Odaberite drugi način plaćanja. {0} ne podržava transakcije u valuti '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Postavke OAutha Provider | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,list | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Izbornička stavka | |||
DocType: Email Account,Email ID,E-mail ID | |||
DocType: Email Account,Email Address,E-mail ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Popis sredstava koja će Klijent Aplikacija ima pristup nakon što korisnik dopušta. <br> npr projekta | |||
DocType: Contact Us Settings,Query Options,Opcije upita | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Zabilješke | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Smanjenje | |||
DocType: DocShare,Document Name,Dokument Naziv | |||
DocType: ToDo,Medium,Srednji | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Molimo provjerite svoj e-id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Molimo provjerite svoj e-id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nije dovoljno dozvolu za vidjeti linkove. | |||
DocType: Customize Form,Customize Form,Prilagodite obrazac | |||
DocType: Currency,A symbol for this currency. For e.g. $,Simbol za ovu valutu. Kao npr. $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,korak unatrag | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ovaj rekord dopustiti slanje na ovu e-mail adresu | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Koristi Email ID spomenut u ovom računu pošiljatelja za sve e-mailove poslane putem ovog računa. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Koristi Email Address spomenut u ovom računu pošiljatelja za sve e-mailove poslane putem ovog računa. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obavezna polja su potrebna za nove zapise. Ako želite, možete izbrisati neobvezne stupce." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nije moguće ažurirati događaj | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Plaćanje je izvršeno | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,Zabilješka | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Izvješće o pogrešci | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline polje mora biti valjana FIELDNAME | |||
DocType: Email Account,Email Ids,IDS e-pošte | |||
DocType: Email Account,Email Addresses,IDS e-pošte | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nova zaporka poslana mailom | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Čekanju | |||
DocType: PayPal Settings,Use Sandbox,Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Novi Prilagođeni ispis formata | |||
DocType: DocPerm,Create,Stvoriti | |||
DocType: Newsletter,A Lead with this email id should exist,Kontakt sa ovim e-mailom bi trebao postojati | |||
DocType: Newsletter,A Lead with this Email Address should exist,Kontakt sa ovim e-mailom bi trebao postojati | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Nevažeći filter: {0} | |||
DocType: Integration Service,Background Events,Pozadina Događaji | |||
DocType: Dropbox Settings,App Access Key,App Pristup Ključ | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Dopusti uređivanje samo za | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tvoje ime | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Je mape | |||
DocType: Newsletter,Test Email Id,Test E-mail ID | |||
DocType: Newsletter,Test Email Address,Test E-mail ID | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Korisnik {0} ne postoji | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ako je odabrana slika, boja će biti zanemaren." | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,E-mail računa | |||
DocType: Workflow State,Download,Preuzimanje | |||
DocType: Blog Post,Blog Intro,Blog intro | |||
DocType: Async Task,Result,Rezultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nije ispravan id e-mail | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nije ispravan id e-mail | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Omogućite izvješće | |||
DocType: DocField,Display Depends On,Prikaz ovisi o | |||
DocType: Web Page,Insert Code,Umetnite kod | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Érdeklődés | |||
DocType: DocType,Sort Order,Rendezési sorrend | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""A lista nézetben"" nem megengedett {0} típusú az {1} sorban" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Ön e-mail Id azonosítója | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Ön e-mail Id azonosítója | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Válassza ki a címkét, amely után be szeretné szúrni az új területet." | |||
,Document Share Report,Dokumentum Megosztás Jelentés | |||
DocType: User,Last Login,Utolsó belépés | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML oldal | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,További csomópontok csak 'Csoport' típusú csomópontok alatt hozhatók létre | |||
DocType: Web Page,Header,Fejléc | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Ismeretlen oszlop: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Választható: Mindig küldje ezekre az ID azonosítókra. Minden e-mail ID azonosítót egy új soron | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Választható: Mindig küldje ezekre az ID azonosítókra. Minden e-mail ID azonosítót egy új soron | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Felhasználók ezzel a Beosztással {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Alkalmazás telepítése {0} | |||
DocType: Print Format,Custom Format,Custom Formátum | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,"Frissítse a sablont, és mentse mint CSV (vesszővel elválasztva az értékeket) formátumban, mielőtt mellékelné." | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Adja meg a mező értékét | |||
DocType: Report,Disabled,Tiltva | |||
DocType: Email Account,Always use Account's Email ID as Sender,Feladóként mindig használja az e-mail fiók ID azonosítóját | |||
DocType: Email Account,Always use Account's Email Address as Sender,Feladóként mindig használja az e-mail fiók ID azonosítóját | |||
DocType: Workflow State,eye-close,szem-bezárt | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Kérjük, válasszon más fizetési módot. {0} nem támogatja a tranzakciókat ebben a pénznemben '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Szolgáltató beállítások | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,levél | |||
DocType: Portal Menu Item,Portal Menu Item,Portál menüpont | |||
DocType: Email Account,Email ID,E-mail ID azonosító | |||
DocType: Email Account,Email Address,E-mail ID azonosító | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Link beszúrása | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"A listát a forrásokat, amelyeket az Ügyfél App férhet hozzá, miután a felhasználó ezt lehetővé teszi. <br> pl projekt" | |||
DocType: Contact Us Settings,Query Options,Érdeklődés beállítások | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Jegyzetek: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,jelölés | |||
DocType: DocShare,Document Name,Dokumentum neve | |||
DocType: ToDo,Medium,Közepes | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Kérjük, ellenőrizze az e-mail id azonosítóját" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Kérjük, ellenőrizze az e-mail id azonosítóját" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nincs elég jogosultsága a linkek megtekintéséhez. | |||
DocType: Customize Form,Customize Form,Űrlap testreszabása | |||
DocType: Currency,A symbol for this currency. For e.g. $,A szimbólum erre a pénznemre. Pl.: $$ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,visszalépés | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Kérjük, állítsa be a Dropbox hozzáférési kulcsokat az oldal beállításopkban" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ezt a Rekordot törli, hogy elküldhesse erre az e-mail címre" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Ehhez a fiókhoz a küldőként felhasznált E-mail ID azonosítót használja fel az ebből a fiókból kiküldendő emailekhez. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Ehhez a fiókhoz a küldőként felhasznált E-mail ID azonosítót használja fel az ebből a fiókból kiküldendő emailekhez. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Csak a kötelező mezők szükséges új rekordokhoz. Törölheti a nem kötelező oszlopokat, ha akarja." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nem lehet frissíteni az eseményt | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Fizetés befejeződött | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,könyvjelző | |||
DocType: Note,Note,Jegyzet | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Hibajelentés | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Idővonal mezőnek egy érvényes mezőnévnek kell lennie | |||
DocType: Email Account,Email Ids,E-mail ID azonosítók | |||
DocType: Email Account,Email Addresses,E-mail ID azonosítók | |||
DocType: Currency,Symbol,Szimbólum | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Új jelszó e-mailben | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Sorba állított | |||
DocType: PayPal Settings,Use Sandbox,Felhasználási Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Új egyedi nyomtatási forma | |||
DocType: DocPerm,Create,Létrehozás | |||
DocType: Newsletter,A Lead with this email id should exist,Ezzel az Email ID azonosítóval léteznie kell egy Érdeklődésnek | |||
DocType: Newsletter,A Lead with this Email Address should exist,Ezzel az Email Address azonosítóval léteznie kell egy Érdeklődésnek | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Érvénytelen szűrő: {0} | |||
DocType: Integration Service,Background Events,Események háttere | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Csak ő szerkesztheti | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,A neve | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Ez a mappa | |||
DocType: Newsletter,Test Email Id,Teszt email azonosítója | |||
DocType: Newsletter,Test Email Address,Teszt email azonosítója | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,A(z) {0} felhasználó nem létezik | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ha kép van kiválasztva, a színt figyelmen kívül hagyja." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email fiók | |||
DocType: Workflow State,Download,Letöltés | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Eredmény | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nem érvényes e-mail id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nem érvényes e-mail id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Engedélyezze a jelentést | |||
DocType: DocField,Display Depends On,Kijelzés ettől függ | |||
DocType: Web Page,Insert Code,Kód beszúrása | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,Tata Urutan | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Tampilan Daftar' tidak diperbolehkan untuk jenis {0} di baris {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Email Anda Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Email Anda Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Pilih label setelah itu Anda ingin memasukkan bidang baru. | |||
,Document Share Report,Dokumen Saham Laporkan | |||
DocType: User,Last Login,Terakhir Login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Halaman HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup' | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Kolom diketahui: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opsional: Selalu kirim ke id ini. Setiap id email pada baris baru | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opsional: Selalu kirim ke id ini. Setiap id email pada baris baru | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Pengguna dengan peran {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalasi App {0} | |||
DocType: Print Format,Custom Format,Kustom Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,-retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Memperbarui template dan simpan dalam CSV (Comma Nilai terpisah) Format sebelum memasang. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Tentukan nilai lapangan | |||
DocType: Report,Disabled,Dinonaktifkan | |||
DocType: Email Account,Always use Account's Email ID as Sender,Selalu gunakan Akun Email ID sebagai Pengirim | |||
DocType: Email Account,Always use Account's Email Address as Sender,Selalu gunakan Akun Email Address sebagai Pengirim | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Silakan pilih metode pembayaran lain. {0} tidak mendukung transaksi dalam mata uang '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Pengaturan OAuth Provider | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,daun | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,ID Email | |||
DocType: Email Account,Email Address,ID Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Sisipkan link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Sebuah daftar sumber daya yang App Klien akan memiliki akses ke setelah pengguna memungkinkan. <br> misalnya proyek | |||
DocType: Contact Us Settings,Query Options,Opsi Query | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Catatan: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Penurunan harga | |||
DocType: DocShare,Document Name,Dokumen Nama | |||
DocType: ToDo,Medium,Sedang | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Harap verifikasi id email Anda | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Harap verifikasi id email Anda | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Tidak cukup izin untuk melihat link. | |||
DocType: Customize Form,Customize Form,Sesuaikan Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Simbol untuk mata uang ini. Contoh $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,langkah-mundur | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Silakan set tombol akses Dropbox di situs config Anda | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Menghapus catatan ini untuk memungkinkan pengiriman ke alamat email ini | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Menggunakan ID Email disebutkan dalam Akun ini sebagai Pengirim untuk semua email yang dikirim menggunakan Akun ini. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Menggunakan ID Email disebutkan dalam Akun ini sebagai Pengirim untuk semua email yang dikirim menggunakan Akun ini. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Tidak dapat memperbarui acara | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Lengkap pembayaran | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,penanda | |||
DocType: Note,Note,Catatan | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Laporan Kesalahan | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,bidang Timeline harus fieldname valid | |||
DocType: Email Account,Email Ids,Email Id | |||
DocType: Email Account,Email Addresses,Email Address | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,New password email | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Antri | |||
DocType: PayPal Settings,Use Sandbox,Gunakan Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Buat | |||
DocType: Newsletter,A Lead with this email id should exist,Sebuah Lead dengan id email ini harus ada | |||
DocType: Newsletter,A Lead with this Email Address should exist,Sebuah Lead dengan id email ini harus ada | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filter tidak valid: {0} | |||
DocType: Integration Service,Background Events,latar belakang Acara | |||
DocType: Dropbox Settings,App Access Key,Aplikasi Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Hanya Izinkan Sunting Untuk | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Namamu | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Apakah Folder | |||
DocType: Newsletter,Test Email Id,Uji Email Id | |||
DocType: Newsletter,Test Email Address,Uji Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Pengguna {0} tidak ada | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Jika gambar yang dipilih, warna akan diabaikan." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Akun Email | |||
DocType: Workflow State,Download,Unduh | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Hasil | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} bukan id email yang valid | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} bukan id email yang valid | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Aktifkan Laporan | |||
DocType: DocField,Display Depends On,Tampilan Tergantung Pada | |||
DocType: Web Page,Insert Code,Masukkan Kode | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,fyrirspurn | |||
DocType: DocType,Sort Order,Raða Order | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"Í listayfirliti 'ekki leyfð tegund {0} í röð {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Netfang þitt Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Netfang þitt Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Veldu merkimiða eftir sem þú vilt að setja nýja sviði. | |||
,Document Share Report,Skjal Share Skýrsla | |||
DocType: User,Last Login,Last Login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Frekari hnútar geta verið aðeins búin undir 'group' tegund hnúta | |||
DocType: Web Page,Header,haus | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Unknown Dálkur: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Valfrjálst: Alltaf senda þessum auðkenni. Hver email persónuskilríki á nýju röð | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valfrjálst: Alltaf senda þessum auðkenni. Hver email persónuskilríki á nýju röð | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Notendur með hlutverk {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Set App {0} | |||
DocType: Print Format,Custom Format,Custom Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Uppfærðu sniðmát og vista í CSV (Comma Aðskilið gildum) sniði en festa. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Tilgreina gildi á sviði | |||
DocType: Report,Disabled,Fatlaðir | |||
DocType: Email Account,Always use Account's Email ID as Sender,Alltaf nota reikningsins Netfang ID eins Sendandi | |||
DocType: Email Account,Always use Account's Email Address as Sender,Alltaf nota reikningsins Netfang ID eins Sendandi | |||
DocType: Workflow State,eye-close,auga-loka | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Vinsamlegast veldu annan greiðslumáta. {0} styður ekki viðskipti í mynt '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Stillingar | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,blaða | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,Tölvupóstur ID | |||
DocType: Email Account,Email Address,Tölvupóstur ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Listi yfir auðlindum sem Viðskiptavinur App mun hafa aðgang að eftir að notandinn gerir það. <br> td verkefni | |||
DocType: Contact Us Settings,Query Options,fyrirspurn Options | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Skýringar: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Document Name | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Vinsamlega staðfestu netfangið persónuskilríki | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Vinsamlega staðfestu netfangið persónuskilríki | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ekki nóg leyfi til að sjá tengla. | |||
DocType: Customize Form,Customize Form,sérsníða Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Tákn fyrir þennan gjaldmiðil. t.d $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,skref-afturábak | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{APP_TITLE} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Vinsamlegast settu Dropbox aðgang takkana í síðuna samsk þinni | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eyða þessari færslu til að leyfa sendingu á þetta netfang | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Notar Email ID getið í þessum reikningi sem sendanda fyrir öllum tölvupósti send með þessum reikningi. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Notar Email Address getið í þessum reikningi sem sendanda fyrir öllum tölvupósti send með þessum reikningi. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Aðeins nauðsynlega reiti er nauðsynlegt fyrir nýjum færslum. Þú getur eytt valfrjálsar dálka ef þú vilt. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Ekki er hægt að uppfæra atburði | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,greiðsla Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bókamerki | |||
DocType: Note,Note,Note | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,villuskýrslu | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline reitur verður að vera gilt FIELDNAME | |||
DocType: Email Account,Email Ids,email ids | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,tákn | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nýtt lykilorð send | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,biðröð | |||
DocType: PayPal Settings,Use Sandbox,Nota Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Ný Custom Prenta Format | |||
DocType: DocPerm,Create,Búa | |||
DocType: Newsletter,A Lead with this email id should exist,A Lead með þessu id ætti til | |||
DocType: Newsletter,A Lead with this Email Address should exist,A Lead með þessu id ætti til | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ógild Filter: {0} | |||
DocType: Integration Service,Background Events,Bakgrunnur Viðburðir | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Aðeins Leyfa Breyta til | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Nafn þitt | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,er Folder | |||
DocType: Newsletter,Test Email Id,Próf Email Id | |||
DocType: Newsletter,Test Email Address,Próf Email Address | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,User {0} er ekki til | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ef myndin er valið, litur verður hunsað." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,netfangs | |||
DocType: Workflow State,Download,Sækja | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,niðurstaða | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} er ekki gilt email persónuskilríki | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ekki gilt email persónuskilríki | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Virkja Report | |||
DocType: DocField,Display Depends On,Skjánum fer eftir | |||
DocType: Web Page,Insert Code,Setja inn kóða | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,ordine | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Modalità Lista' non consentito per il tipo {0} in riga {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,La tua email Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,La tua Email Address | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Selezionare l'etichetta dopo la quale si desidera inserire nuovo campo. | |||
,Document Share Report,Documento Share Relazione | |||
DocType: User,Last Login,Ultimo Login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Pagina HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Ulteriori nodi possono essere creati solo sotto i nodi di tipo ' Gruppo ' | |||
DocType: Web Page,Header,Intestazione | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Sconosciuto Colonna : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Optional: Invia a queste ids. Ogni id-mail su una nuova riga | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optional: Invia a queste ids. Ogni id-mail su una nuova riga | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Gli utenti con ruolo {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installazione di App {0} | |||
DocType: Print Format,Custom Format,Formato personalizzato | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,rispondi | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Aggiornare il modello e salvarlo in formato CSV (Comma Values separato) formato prima di attaccare. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Specificare il valore del campo | |||
DocType: Report,Disabled,Disabilitato | |||
DocType: Email Account,Always use Account's Email ID as Sender,Usare sempre di ID account e-mail come mittente | |||
DocType: Email Account,Always use Account's Email Address as Sender,Usare sempre di ID account e-mail come mittente | |||
DocType: Workflow State,eye-close,occhio da vicino | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Si prega di selezionare un altro metodo di pagamento. {0} non supporta le transazioni in valuta '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Impostazioni OAuth Provider | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,foglia | |||
DocType: Portal Menu Item,Portal Menu Item,Portal voce di menu | |||
DocType: Email Account,Email ID,ID Email | |||
DocType: Email Account,Email Address,ID Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Inserisci Collegamento | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Un elenco di risorse che l'applicazione client avrà accesso a dopo che l'utente lo permette. <br> ad esempio, del progetto" | |||
DocType: Contact Us Settings,Query Options,Opzioni query | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Note: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Riduzione Prezzo | |||
DocType: DocShare,Document Name,Documento Nome | |||
DocType: ToDo,Medium,Media | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Verifica il tuo id e-mail | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Verifica il tuo id e-mail | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Permessi non sufficienti per vedere i links. | |||
DocType: Customize Form,Customize Form,Personalizzare modulo | |||
DocType: Currency,A symbol for this currency. For e.g. $,Un simbolo per questa valuta. Per esempio $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,passo indietro | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Si prega di impostare tasti di accesso Dropbox nel tuo sito config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminare questo record per consentire l'invio a questo indirizzo email | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Utilizza l'ID e-mail citato in questo account come mittente per tutte le email inviate tramite questo account. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Utilizza l'ID e-mail citato in questo account come mittente per tutte le email inviate tramite questo account. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Solo campi obbligatori sono necessari per i nuovi record. È possibile eliminare le colonne non obbligatori, se lo si desidera." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Impossibile aggiornare evento | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,completa di pagamento | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,segnalibro | |||
DocType: Note,Note,Nota | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Rapporto di errore | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,campo Timeline deve essere un nome di campo valido | |||
DocType: Email Account,Email Ids,Email Ids | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,Simbolo | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nuova password inviata per email | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,In coda | |||
DocType: PayPal Settings,Use Sandbox,Usa Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nuovo formato di stampa personalizzato | |||
DocType: DocPerm,Create,Crea | |||
DocType: Newsletter,A Lead with this email id should exist,Un potenziale cliente (lead) con questa e-mail dovrebbe esistere | |||
DocType: Newsletter,A Lead with this Email Address should exist,Un potenziale cliente (lead) con questa e-mail dovrebbe esistere | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtro non valido: {0} | |||
DocType: Integration Service,Background Events,Sfondo Eventi | |||
DocType: Dropbox Settings,App Access Key,App Accessibilità | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Consenti solo Edit Per | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Il tuo nome | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,È Cartella | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,TipoDoc | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Utente {0} non esiste | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Se si seleziona l'immagine, il colore verrà ignorato." | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,Account Email | |||
DocType: Workflow State,Download,Scarica | |||
DocType: Blog Post,Blog Intro,Intro Blog | |||
DocType: Async Task,Result,Risultato | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} non è un id di email valido | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} non è un id di email valido | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Abilita Report | |||
DocType: DocField,Display Depends On,Visualizzazione dipende | |||
DocType: Web Page,Insert Code,Inserire Codice | |||
@@ -468,7 +468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,クエリー | |||
DocType: DocType,Sort Order,並び順 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},「リスト表示」は行{1}のタイプ{0}では許可されません | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,あなたの電子メールID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,あなたの電子メールID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,新たなフィールドを挿入後にラベルを選択してください。 | |||
,Document Share Report,文書共有レポート | |||
DocType: User,Last Login,最新ログイン | |||
@@ -652,7 +652,7 @@ DocType: Page,Page HTML,ページのHTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,これ以上のノードは「グループ」タイプのノードの下にのみ作成することができます | |||
DocType: Web Page,Header,ヘッダー | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},不明なコラム:{0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,(オプション)常にこれらに送信します。各メールアドレスは新しい行になります | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,(オプション)常にこれらに送信します。各メールアドレスは新しい行になります | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,役割{0}を持つユーザー: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},インストールアプリケーション{0} | |||
DocType: Print Format,Custom Format,カスタム書式 | |||
@@ -721,7 +721,7 @@ DocType: Workflow State,retweet,リツイート | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,添付する前に、テンプレートを更新してCSV(カンマ区切りテキスト)形式で保存する | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,フィールドの値を指定 | |||
DocType: Report,Disabled,無効 | |||
DocType: Email Account,Always use Account's Email ID as Sender,アカウントのメールアドレスを常に送信元として使用 | |||
DocType: Email Account,Always use Account's Email Address as Sender,アカウントのメールアドレスを常に送信元として使用 | |||
DocType: Workflow State,eye-close,目を閉じる | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',他のお支払い方法を選択してください。 {0} '{1}'の通貨で取引をサポートしていません。 | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuthプロバイダーの設定 | |||
@@ -866,7 +866,7 @@ DocType: File,rgt,右 | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,リーフ | |||
DocType: Portal Menu Item,Portal Menu Item,ポータルメニューアイテム | |||
DocType: Email Account,Email ID,メールアドレス | |||
DocType: Email Account,Email Address,メールアドレス | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,リンクの挿入 | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,クライアントアプリケーションは、ユーザがそれを可能にした後にアクセスする必要がありますリソースのリスト。 <br>例えばプロジェクト | |||
DocType: Contact Us Settings,Query Options,クエリーオプション | |||
@@ -902,7 +902,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,注: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,文書名 | |||
DocType: ToDo,Medium,普通 | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,メールアドレスを確認してください | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,メールアドレスを確認してください | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,リンクを参照する権限がありません | |||
DocType: Customize Form,Customize Form,フォームをカスタマイズ | |||
DocType: Currency,A symbol for this currency. For e.g. $,この通貨のシンボル(例:$) | |||
@@ -1093,7 +1093,7 @@ DocType: Workflow State,step-backward,戻る | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,サイト設定でDropboxのアクセスキーを設定してください | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,このメールアドレスに送信できるようにするには、このレコードを削除します | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,このアカウントを使用して送信する全てのメールについて、このアカウントに指定されたメールアドレスを送信元として使用する | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,このアカウントを使用して送信する全てのメールについて、このアカウントに指定されたメールアドレスを送信元として使用する | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新しいレコードには必須フィールドのみが必要です。非必須の列は削除することができます。 | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,イベントを更新することができません | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,お支払いを完了 | |||
@@ -1290,7 +1290,7 @@ DocType: Workflow State,bookmark,ブックマーク | |||
DocType: Note,Note,ノート | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,エラーレポート | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,タイムラインのフィールドは、有効なフィールド名でなければなりません | |||
DocType: Email Account,Email Ids,メールアドレス | |||
DocType: Email Account,Email Addresses,メールアドレス | |||
DocType: Currency,Symbol,シンボル | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,行 {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,新しいパスワードをメールで送信しました | |||
@@ -1723,7 +1723,7 @@ DocType: Async Task,Queued,キュー追加済 | |||
DocType: PayPal Settings,Use Sandbox,サンドボックスを使用してください | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,新しいカスタム印刷フォーマット | |||
DocType: DocPerm,Create,作成 | |||
DocType: Newsletter,A Lead with this email id should exist,このメールアドレスを持つリードが必要です | |||
DocType: Newsletter,A Lead with this Email Address should exist,このメールアドレスを持つリードが必要です | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},無効なフィルタ:{0} | |||
DocType: Integration Service,Background Events,バックグラウンドイベント | |||
DocType: Dropbox Settings,App Access Key,アプリのアクセスキー | |||
@@ -1899,7 +1899,7 @@ DocType: Workflow Document State,Only Allow Edit For,編集のみ可 | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,あなたの名前 | |||
DocType: DocType,InnoDB,InnoDBの | |||
DocType: File,Is Folder,フォルダ | |||
DocType: Newsletter,Test Email Id,テスト用メールアドレス | |||
DocType: Newsletter,Test Email Address,テスト用メールアドレス | |||
DocType: DocType,DocType,文書タイプ | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ユーザー{0}は存在しません | |||
DocType: Website Theme,"If image is selected, color will be ignored.",画像が選択された場合、色は無視されます | |||
@@ -2254,7 +2254,7 @@ DocType: Communication,Email Account,メールアカウント | |||
DocType: Workflow State,Download,ダウンロード | |||
DocType: Blog Post,Blog Intro,ブログイントロ | |||
DocType: Async Task,Result,結果 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0}は有効なメールアドレスではありません | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0}は有効なメールアドレスではありません | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,レポートを有効にする | |||
DocType: DocField,Display Depends On,依存性を表示 | |||
DocType: Web Page,Insert Code,コードを挿入 | |||
@@ -465,7 +465,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,សំណួរ | |||
DocType: DocType,Sort Order,តម្រៀបតាមលំដាប់ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},«នៅក្នុងទិដ្ឋភាពបញ្ជី 'មិនបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,អ៊ីមែលរបស់អ្នកលេខសម្គាល់ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,អ៊ីមែលរបស់អ្នកលេខសម្គាល់ | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ជ្រើសស្លាកបន្ទាប់ពីការដែលអ្នកចង់បញ្ចូលវាលថ្មី។ | |||
,Document Share Report,ឯកសារដែលបានចែករំលែករបាយការណ៍ | |||
DocType: User,Last Login,ចូលចុងក្រោយ | |||
@@ -649,7 +649,7 @@ DocType: Page,Page HTML,HTML ដែលទំព័រ | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,ថ្នាំងបន្ថែមទៀតអាចត្រូវបានបង្កើតក្រោមការថ្នាំងប្រភេទ 'ក្រុម | |||
DocType: Web Page,Header,បឋមកថា | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},មិនស្គាល់ជួរឈរ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ស្រេចចិត្ត: ផ្ញើទៅកាន់លេខសម្គាល់ទាំងនេះជានិច្ច។ លេខសម្គាល់អ៊ីម៉ែលគ្នានៅលើជួរដេកថ្មីមួយ | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ស្រេចចិត្ត: ផ្ញើទៅកាន់លេខសម្គាល់ទាំងនេះជានិច្ច។ លេខសម្គាល់អ៊ីម៉ែលគ្នានៅលើជួរដេកថ្មីមួយ | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,អ្នកប្រើដែលមានតួនាទី {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},ការដំឡើងកម្មវិធី {0} | |||
DocType: Print Format,Custom Format,ទ្រង់ទ្រាយផ្ទាល់ខ្លួន | |||
@@ -718,7 +718,7 @@ DocType: Workflow State,retweet,retweets | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,ធ្វើឱ្យទាន់សម័យពុម្ពនិងរក្សាទុកក្នុងជា CSV (Comma គុណតម្លៃដាច់ដោយឡែក) ទ្រង់ទ្រាយដែលបានមុនពេលដែលការភ្ជាប់។ | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,បញ្ជាក់តម្លៃរបស់វាលនេះ | |||
DocType: Report,Disabled,ជនពិការ | |||
DocType: Email Account,Always use Account's Email ID as Sender,តែងតែប្រើលេខសម្គាល់គណនីអ៊ីម៉ែលថាជាអ្នកផ្ញើ | |||
DocType: Email Account,Always use Account's Email Address as Sender,តែងតែប្រើលេខសម្គាល់គណនីអ៊ីម៉ែលថាជាអ្នកផ្ញើ | |||
DocType: Workflow State,eye-close,បិទភ្នែក | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',សូមជ្រើសវិធីសាស្រ្តទូទាត់ផ្សេងទៀត។ {0} មិនគាំទ្រការប្រតិបត្តិការនៅក្នុងរូបិយប័ណ្ណ '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,ការកំណត់ក្រុមហ៊ុនផ្ដល់ OAuth | |||
@@ -861,7 +861,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ស្លឹក | |||
DocType: Portal Menu Item,Portal Menu Item,ធាតុម៉ឺនុយវិបផតថល | |||
DocType: Email Account,Email ID,លេខសម្គាល់អ៊ីម៉ែល | |||
DocType: Email Account,Email Address,លេខសម្គាល់អ៊ីម៉ែល | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,បញ្ចូលតំណ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,បញ្ជីនៃធនធានដែលកម្មវិធីអតិថិជននឹងមានសិទ្ធិចូលដំណើរការទៅបន្ទាប់ពីអ្នកប្រើអនុញ្ញាតឱ្យវា។ <br> គម្រោងឧ | |||
DocType: Contact Us Settings,Query Options,ជម្រើសសំណួរ | |||
@@ -897,7 +897,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,កំណ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ឈ្មោះឯកសារ | |||
DocType: ToDo,Medium,មធ្យម | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,សូមផ្ទៀងផ្ទាត់លេខសម្គាល់អ៊ីមែលរបស់អ្នក | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,សូមផ្ទៀងផ្ទាត់លេខសម្គាល់អ៊ីមែលរបស់អ្នក | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,មិនមានសិទ្ធិគ្រប់គ្រាន់ក្នុងការមើលឃើញតំណ។ | |||
DocType: Customize Form,Customize Form,ប្ដូរតាមបំណងសំណុំបែបបទ | |||
DocType: Currency,A symbol for this currency. For e.g. $,ជានិមិត្តរូបសម្រាប់រូបិយប័ណ្ណនេះ។ ឧទាហរណ៍ៈ $ | |||
@@ -1088,7 +1088,7 @@ DocType: Workflow State,step-backward,ជំហានថយក្រោយ | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,សូមកំណត់កូនសោកំណត់រចនាសម្ព័ន្ធការចូលដំណើរការ Dropbox ក្នុងតំបន់របស់អ្នក | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,លុបកំណត់ត្រានេះដើម្បីឱ្យផ្ញើទៅកាន់អាសយដ្ឋានអ៊ីមែលនេះ | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ប្រើលេខសម្គាល់អ៊ីមែលបានរៀបរាប់នៅក្នុងគណនីនេះថាជាអ្នកផ្ញើសម្រាប់អ៊ីមែលទាំងអស់ដែលបានផ្ញើដោយប្រើគណនីនេះ។ | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ប្រើលេខសម្គាល់អ៊ីមែលបានរៀបរាប់នៅក្នុងគណនីនេះថាជាអ្នកផ្ញើសម្រាប់អ៊ីមែលទាំងអស់ដែលបានផ្ញើដោយប្រើគណនីនេះ។ | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,មានតែវាលជាចាំបាច់គឺចាំបាច់សម្រាប់កំណត់ត្រាថ្មីមួយ។ អ្នកអាចលុបជួរឈរដែលមិនចាំបាច់ប្រសិនបើអ្នកចង់។ | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,មិនអាចធ្វើឱ្យទាន់សម័យដែលព្រឹត្តិការណ៍ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,បញ្ចប់ការទូទាត់ | |||
@@ -1283,7 +1283,7 @@ DocType: Workflow State,bookmark,កំណត់ចំណាំ | |||
DocType: Note,Note,ចំណាំ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,របាយការណ៍កំហុស & ‧; | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,វាលកំណត់ពេលវេលាត្រូវតែជា fieldname ត្រឹមត្រូវ | |||
DocType: Email Account,Email Ids,អ៊ីម៉ែលលេខសម្គាល់ | |||
DocType: Email Account,Email Addresses,អ៊ីម៉ែលលេខសម្គាល់ | |||
DocType: Currency,Symbol,និមិត្តសញ្ញា | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ជួរដេក # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,ពាក្យសម្ងាត់ថ្មីតាមអ៊ីមែលនៅ | |||
@@ -1713,7 +1713,7 @@ DocType: Async Task,Queued,បានដាក់ជាជួរ | |||
DocType: PayPal Settings,Use Sandbox,ប្រើសេនបក់ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,ញូទ្រង់ទ្រាយបោះពុម្ពផ្ទាល់ខ្លួន | |||
DocType: DocPerm,Create,បង្កើត | |||
DocType: Newsletter,A Lead with this email id should exist,អ្នកដឹកនាំដែលមានលេខសម្គាល់អ៊ីមែលនេះគួរតែមាន | |||
DocType: Newsletter,A Lead with this Email Address should exist,អ្នកដឹកនាំដែលមានលេខសម្គាល់អ៊ីមែលនេះគួរតែមាន | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},តម្រងមិនត្រឹមត្រូវ: {0} | |||
DocType: Integration Service,Background Events,ព្រឹត្តិការណ៍ផ្ទៃខាងក្រោយ | |||
DocType: Dropbox Settings,App Access Key,ការចូលដំណើរការកម្មវិធីគន្លឹះ | |||
@@ -1889,7 +1889,7 @@ DocType: Workflow Document State,Only Allow Edit For,អនុញ្ញាតត | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ឈ្មោះរបស់អ្នក | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,តើការថត | |||
DocType: Newsletter,Test Email Id,ការធ្វើតេស្តអ៊ីម៉ែលលេខសម្គាល់ | |||
DocType: Newsletter,Test Email Address,ការធ្វើតេស្តអ៊ីម៉ែលលេខសម្គាល់ | |||
DocType: DocType,DocType,ចង្អុលបង្ហាញ | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ប្រើ {0} មិនមាន | |||
DocType: Website Theme,"If image is selected, color will be ignored.",ប្រសិនបើបានជ្រើសរូបភាពពណ៌នឹងត្រូវបានអើពើ។ | |||
@@ -2242,7 +2242,7 @@ DocType: Communication,Email Account,គណនីអ៊ីម៉ែល | |||
DocType: Workflow State,Download,ទាញយក | |||
DocType: Blog Post,Blog Intro,កំណត់ហេតុបណ្ដាញសេចក្ដីណែនាំ | |||
DocType: Async Task,Result,លទ្ឋផល | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} គឺមិនមានលេខសម្គាល់អ៊ីមែលត្រឹមត្រូវ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} គឺមិនមានលេខសម្គាល់អ៊ីមែលត្រឹមត្រូវ | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,បើកការរបាយការណ៍ | |||
DocType: DocField,Display Depends On,បង្ហាញអាស្រ័យលើ | |||
DocType: Web Page,Insert Code,បញ្ចូលលេខកូដ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,ಪ್ರಶ್ನೆಯ | |||
DocType: DocType,Sort Order,ವಿಂಗಡಣಾ ಕ್ರಮ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,ನಿಮ್ಮ ಇಮೇಲ್ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,ನಿಮ್ಮ ಇಮೇಲ್ | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ನೀವು ಹೊಸ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೇರಿಸಲು ಬಯಸುವ afterwhich ಲೇಬಲ್ ಆಯ್ಕೆ . | |||
,Document Share Report,ಡಾಕ್ಯುಮೆಂಟ್ ಪಾಲಿನ ವರದಿಯು | |||
DocType: User,Last Login,ಕೊನೆಯ ಲಾಗಿನ್ | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML ಪುಟ | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,ಮತ್ತಷ್ಟು ಗ್ರಂಥಿಗಳು ಮಾತ್ರ ' ಗ್ರೂಪ್ ' ರೀತಿಯ ನೋಡ್ಗಳನ್ನು ಅಡಿಯಲ್ಲಿ ರಚಿಸಬಹುದಾಗಿದೆ | |||
DocType: Web Page,Header,ತಲೆಹೊಡೆತ | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ಅಪರಿಚಿತ ಅಂಕಣ : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ಐಚ್ಛಿಕ: ಯಾವಾಗಲೂ ಈ ಐಡಿಗಳನ್ನು ಕಳುಹಿಸಿ. ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಇಮೇಲ್ ಐಡಿ | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ಐಚ್ಛಿಕ: ಯಾವಾಗಲೂ ಈ ಐಡಿಗಳನ್ನು ಕಳುಹಿಸಿ. ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಇಮೇಲ್ ಐಡಿ | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ಪಾತ್ರ ಬಳಕೆದಾರರು {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},ಅನುಸ್ಥಾಪಿಸುವುದು ಅಪ್ಲಿಕೇಶನ್ {0} | |||
DocType: Print Format,Custom Format,ಕಸ್ಟಮ್ ಸ್ವರೂಪ | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,ರಿಟ್ವೀಟ್ | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,ಟೆಂಪ್ಲೇಟ್ ನವೀಕರಿಸಲು ಮತ್ತು ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು CSV ನಲ್ಲಿ ಸ್ವರೂಪ (ಅಲ್ಪವಿರಾಮದಿಂದ ಪ್ರತ್ಯೇಕ ಮೌಲ್ಯಗಳು) ಉಳಿಸಲು. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ಕ್ಷೇತ್ರದ ನಿಗದಿಸಿ | |||
DocType: Report,Disabled,ಅಂಗವಿಕಲ | |||
DocType: Email Account,Always use Account's Email ID as Sender,ಯಾವಾಗಲೂ ಕಳುಹಿಸಿದವರ ಎಂದು ಖಾತೆ ಇ-ಮೇಲ್ ಐಡಿ ಬಳಸಿ | |||
DocType: Email Account,Always use Account's Email Address as Sender,ಯಾವಾಗಲೂ ಕಳುಹಿಸಿದವರ ಎಂದು ಖಾತೆ ಇ-ಮೇಲ್ ಐಡಿ ಬಳಸಿ | |||
DocType: Workflow State,eye-close,ಕಣ್ಣಿನ ಹತ್ತಿರ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',ಮತ್ತೊಂದು ಪಾವತಿ ವಿಧಾನವನ್ನು ಆಯ್ಕೆ. {0} ಇಲ್ಲ ಚಲಾವಣೆಯ ವ್ಯವಹಾರದಲ್ಲಿ ಬೆಂಬಲ '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth ಅನ್ನು ಒದಗಿಸುವವರು ಸೆಟ್ಟಿಂಗ್ಗಳು | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ಎಲೆ | |||
DocType: Portal Menu Item,Portal Menu Item,ಪೋರ್ಟಲ್ ಮೆನು ಐಟಂ | |||
DocType: Email Account,Email ID,ಇಮೇಲ್ | |||
DocType: Email Account,Email Address,ಇಮೇಲ್ | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,ಲಿಂಕ್ ಸೇರಿಸಿ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,ಪಟ್ಟಿ ಸಂಪನ್ಮೂಲಗಳ ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ ಬಳಕೆದಾರ ನಂತರ ಅನುಮತಿಸುತ್ತದೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿರುತ್ತದೆ. <br> ಉದಾ ಯೋಜನೆಯ | |||
DocType: Contact Us Settings,Query Options,ಪ್ರಶ್ನೆಯ ಆಯ್ಕೆಗಳು | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,ಟಿಪ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ಡಾಕ್ಯುಮೆಂಟ್ ಹೆಸರು | |||
DocType: ToDo,Medium,ಮಧ್ಯಮ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿ ಪರಿಶೀಲಿಸಿ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿ ಪರಿಶೀಲಿಸಿ | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,ಮಾಡಿರುವುದಿಲ್ಲ ಕೊಂಡಿಗಳು ನೋಡಲು ಸಾಕಷ್ಟು ಅನುಮತಿ . | |||
DocType: Customize Form,Customize Form,ಫಾರ್ಮ್ ಕಸ್ಟಮೈಸ್ | |||
DocType: Currency,A symbol for this currency. For e.g. $,ಈ ಕರೆನ್ಸಿ ಒಂದು ಸಂಕೇತ. ಇ ಜಿ ಫಾರ್ $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ಹಂತ ಹಿಂದುಳಿದ | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ App_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,ನಿಮ್ಮ ಸೈಟ್ ಸಂರಚನಾ ಡ್ರಾಪ್ಬಾಕ್ಸ್ accesskeys ಸೆಟ್ ದಯವಿಟ್ಟು | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ಈ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲು ಅವಕಾಶ ಈ ರೆಕಾರ್ಡ್ ಅಳಿಸು | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ಈ ಖಾತೆ ಬಳಸಿ ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಲ್ಲಾ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಿದವರ ಈ ಖಾತೆ ಉಲ್ಲೇಖಿಸಲಾಗಿದೆ ಈಮೇಲ್ ಅಡ್ರೆಸ್ ಬಳಸುತ್ತದೆ. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ಈ ಖಾತೆ ಬಳಸಿ ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಲ್ಲಾ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಿದವರ ಈ ಖಾತೆ ಉಲ್ಲೇಖಿಸಲಾಗಿದೆ ಈಮೇಲ್ ಅಡ್ರೆಸ್ ಬಳಸುತ್ತದೆ. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ಮಾತ್ರ ಕಡ್ಡಾಯವಾಗಿ ಜಾಗ ಹೊಸ ದಾಖಲೆಗಳು ಅವಶ್ಯಕ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಕಡ್ಡಾಯವಲ್ಲದ ಕಾಲಮ್ಗಳನ್ನು ಅಳಿಸಬಹುದು. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ಕ್ರಿಯೆಯನ್ನು ನವೀಕರಿಸಲಾಗುತ್ತಿಲ್ಲ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ಪಾವತಿ ಪೂರ್ಣಗೊಂಡಿದೆ | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,ಓದು - ಗುರುತು | |||
DocType: Note,Note,ನೋಡು | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ದೋಷ ವರದಿ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರ ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು | |||
DocType: Email Account,Email Ids,ಇಮೇಲ್ ಐಡಿಗಳನ್ನು | |||
DocType: Email Account,Email Addresses,ಇಮೇಲ್ ಐಡಿಗಳನ್ನು | |||
DocType: Currency,Symbol,ವಿಗ್ರಹ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ರೋ # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಇಮೇಲ್ | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,ಸರತಿಯಲ್ಲಿ | |||
DocType: PayPal Settings,Use Sandbox,ಸ್ಯಾಂಡ್ಬಾಕ್ಸ್ ಬಳಸಿ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,ಹೊಸ ಕಸ್ಟಮ್ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ | |||
DocType: DocPerm,Create,ರಚಿಸಿ | |||
DocType: Newsletter,A Lead with this email id should exist,ಈ ಇಮೇಲ್ ಐಡಿ Shoulderstand ಒಂದು ಪ್ರಮುಖ ಅಸ್ತಿತ್ವದಲ್ಲಿವೆ | |||
DocType: Newsletter,A Lead with this Email Address should exist,ಈ ಇಮೇಲ್ ಐಡಿ Shoulderstand ಒಂದು ಪ್ರಮುಖ ಅಸ್ತಿತ್ವದಲ್ಲಿವೆ | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},ಅಮಾನ್ಯವಾದ ಫಿಲ್ಟರ್ : {0} | |||
DocType: Integration Service,Background Events,ಹಿನ್ನೆಲೆ ಕ್ರಿಯೆಗಳು | |||
DocType: Dropbox Settings,App Access Key,ಅಪ್ಲಿಕೇಶನ್ ಪ್ರವೇಶ ಕೀ | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,ಮಾತ್ರ ಸಂಪ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ನಿಮ್ಮ ಹೆಸರು | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ಫೋಲ್ಡರ್ | |||
DocType: Newsletter,Test Email Id,ಟೆಸ್ಟ್ ಮಿಂಚಂಚೆ | |||
DocType: Newsletter,Test Email Address,ಟೆಸ್ಟ್ ಮಿಂಚಂಚೆ | |||
DocType: DocType,DocType,doctype | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ಬಳಕೆದಾರ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ | |||
DocType: Website Theme,"If image is selected, color will be ignored.","ಚಿತ್ರ ಆರಿಸಿದಲ್ಲಿ, ಬಣ್ಣ ನಿರ್ಲಕ್ಷಿಸಲಾಗುತ್ತದೆ." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,ಇಮೇಲ್ ಖಾತೆ | |||
DocType: Workflow State,Download,ಡೌನ್ಲೋಡ್ | |||
DocType: Blog Post,Blog Intro,ಪರಿಚಯ ಬ್ಲಾಗ್ | |||
DocType: Async Task,Result,ಫಲಿತಾಂಶ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ಒಂದು ಮಾನ್ಯ ಇಮೇಲ್ ಐಡಿ ಅಲ್ಲ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ಒಂದು ಮಾನ್ಯ ಇಮೇಲ್ ಐಡಿ ಅಲ್ಲ | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,ವರದಿ ಸಕ್ರಿಯಗೊಳಿಸಿ | |||
DocType: DocField,Display Depends On,ಪ್ರದರ್ಶನ ಅವಲಂಬಿಸಿರುತ್ತದೆ | |||
DocType: Web Page,Insert Code,ಕೋಡ್ ಸೇರಿಸಿ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,질문 | |||
DocType: DocType,Sort Order,정렬 순서 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,이메일 아이디 | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,이메일 아이디 | |||
DocType: Custom Field,Select the label after which you want to insert new field.,당신이 새 필드를 삽입 할 후 레이블을 선택합니다. | |||
,Document Share Report,문서 공유 보고서 | |||
DocType: User,Last Login,마지막 로그인 | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,페이지의 HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,또한 노드는 '그룹'형태의 노드에서 생성 할 수 있습니다 | |||
DocType: Web Page,Header,머리글 | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},알 수없는 열 {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,선택 사항 : 항상이 ID로 보낼 수 있습니다.새 행에 각 전자 메일 ID | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,선택 사항 : 항상이 ID로 보낼 수 있습니다.새 행에 각 전자 메일 ID | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,역할이 사용자 {0} | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},설치 응용 프로그램 {0} | |||
DocType: Print Format,Custom Format,사용자 정의 형식 | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,리트 위트 (retweet) | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,템플릿을 업데이트하고 연결하기 전에 CSV의 형식 (쉼표로 분리 된 값)을 저장합니다. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,필드의 값을 지정 | |||
DocType: Report,Disabled,사용 안함 | |||
DocType: Email Account,Always use Account's Email ID as Sender,항상 보낸 사람으로 계정의 전자 메일 ID를 사용 | |||
DocType: Email Account,Always use Account's Email Address as Sender,항상 보낸 사람으로 계정의 전자 메일 ID를 사용 | |||
DocType: Workflow State,eye-close,눈을 닫기 | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',다른 결제 방법을 선택하세요. {0} 통화 거래를 지원하지 않습니다 '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth를 제공 설정 | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,잎 | |||
DocType: Portal Menu Item,Portal Menu Item,포털 메뉴 항목 | |||
DocType: Email Account,Email ID,이메일 ID | |||
DocType: Email Account,Email Address,이메일 ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,링크 삽입 | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,클라이언트 응용 프로그램은 사용자가 허용 한 후에 액세스 할 수 있습니다 자원의 목록입니다. <br> 예를 들어 프로젝트 | |||
DocType: Contact Us Settings,Query Options,쿼리 옵션 | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,주석: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,마크 다운 | |||
DocType: DocShare,Document Name,문서 이름 | |||
DocType: ToDo,Medium,중간 | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,귀하의 이메일 ID를 확인하십시오 | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,귀하의 이메일 ID를 확인하십시오 | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,링크가 아닌 참조 할 수있는 충분한 권한. | |||
DocType: Customize Form,Customize Form,사용자 정의 양식 | |||
DocType: Currency,A symbol for this currency. For e.g. $,이 통화에 대한 기호.예를 들어 $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,스텝 뒤로 | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,사이트 구성에 보관 액세스 키를 설정하십시오 | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,이 이메일 주소로 보낼 수 있도록이 기록을 삭제 | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,이 계정을 사용하여 전송되는 모든 이메일에 대한 보낸 사람이 계정에 언급 된 이메일 ID를 사용합니다. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,이 계정을 사용하여 전송되는 모든 이메일에 대한 보낸 사람이 계정에 언급 된 이메일 ID를 사용합니다. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,만 필수 필드는 새로운 기록을 위해 필요하다.당신이 원하는 경우 필수가 아닌 열을 삭제할 수 있습니다. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,이벤트를 업데이트 할 수 없습니다 | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,결제 완료 | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,북마크 | |||
DocType: Note,Note,정보 | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,오류 보고서 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,타임 라인 필드는 유효한 필드 이름이어야합니다 | |||
DocType: Email Account,Email Ids,이메일 IDS | |||
DocType: Email Account,Email Addresses,이메일 IDS | |||
DocType: Currency,Symbol,상징 | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,행 # {0} : | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,새 암호를 이메일로 전송 | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,대기 중 | |||
DocType: PayPal Settings,Use Sandbox,사용 샌드 박스 | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,새 사용자 정의 인쇄 형식 | |||
DocType: DocPerm,Create,생성 | |||
DocType: Newsletter,A Lead with this email id should exist,이 이메일 ID와 리드가 존재한다 | |||
DocType: Newsletter,A Lead with this Email Address should exist,이 이메일 ID와 리드가 존재한다 | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},잘못된 필터 : {0} | |||
DocType: Integration Service,Background Events,이벤트 | |||
DocType: Dropbox Settings,App Access Key,앱 액세스 키 | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,만 편집을 위해이 허 | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,당신의 이름 | |||
DocType: DocType,InnoDB,InnoDB의 | |||
DocType: File,Is Folder,폴더입니다 | |||
DocType: Newsletter,Test Email Id,테스트 이메일 아이디 | |||
DocType: Newsletter,Test Email Address,테스트 이메일 아이디 | |||
DocType: DocType,DocType,문서 종류 | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,{0} 사용자가 존재하지 않습니다 | |||
DocType: Website Theme,"If image is selected, color will be ignored.","이미지가 선택된 경우, 컬러는 무시 될 것이다." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,이메일 계정 | |||
DocType: Workflow State,Download,다운로드 | |||
DocType: Blog Post,Blog Intro,블로그 소개 | |||
DocType: Async Task,Result,결과 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} 유효한 이메일 ID가 아닌 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} 유효한 이메일 ID가 아닌 | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,보고서 사용 | |||
DocType: DocField,Display Depends On,디스플레이에 따라 달라집니다 | |||
DocType: Web Page,Insert Code,코드에게 삽입 | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Pirs | |||
DocType: DocType,Sort Order,Sort Order | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},ji bo cureyê {0} li row 'Li List View' destûr ne {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Email xwe Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Email xwe Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,li label piştî ku tu dixwazî têxe nav zeviyê ya nû hilbijêre. | |||
,Document Share Report,Dokumentê Share Report | |||
DocType: User,Last Login,Last Login | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,hucûma berfireh dikarin bi tenê di bin 'Group' type hucûma tên afirandin | |||
DocType: Web Page,Header,header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Stûna Unknown: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Bijarî: Her tim bi van nasname bişîne. Her id email li ser row nû | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Bijarî: Her tim bi van nasname bişîne. Her id email li ser row nû | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Bikarhêner li ser bi rola {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Sazkirina App {0} | |||
DocType: Print Format,Custom Format,Format Custom | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Baştir bi şablon û xilas li CSV (Comma Nirxên veqetînin) format Berî. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Hên bi nirxê warê | |||
DocType: Report,Disabled,Bêmecel | |||
DocType: Email Account,Always use Account's Email ID as Sender,Her tim ID Email Account wekî virrêkerî bi kar tînin | |||
DocType: Email Account,Always use Account's Email Address as Sender,Her tim ID Email Account wekî virrêkerî bi kar tînin | |||
DocType: Workflow State,eye-close,eye-nêzîkî | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Ji kerema xwe ve din rêbaza dayina hilbijêre. {0} nayê muamele li currency piştgiriya ne '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Settings Provider OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,pel | |||
DocType: Portal Menu Item,Portal Menu Item,Babetê Menu Portal | |||
DocType: Email Account,Email ID,ID Email | |||
DocType: Email Account,Email Address,ID Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"A list of çavkaniyên ku App Client dê bikaribin piştî ku bikarhênerek bikim, ew destûrê heye. <br> wek nimûne projeya" | |||
DocType: Contact Us Settings,Query Options,Vebijêrkên Lęgerîn | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notes: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Name belgeya | |||
DocType: ToDo,Medium,Medya | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Ji kerema xwe ve id email te piştrast bike | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Ji kerema xwe ve id email te piştrast bike | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Bi destûr bes ji bo dîtina girêdan. | |||
DocType: Customize Form,Customize Form,kesanekirina Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,"A sembola ji bo vê currency. Ji bo nimûne, $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,gav-bi paş ve | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Ji kerema xwe ve set keys access Dropbox li config-numreya te | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Vemirandina ev rekor bi rê şandina ji bo vê navnîşana email | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Zimên ID Email ya di vê Account wek virrêkerî ji bo hemû emails şandin bikaranîna vê Account behsa. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Zimên ID Email ya di vê Account wek virrêkerî ji bo hemû emails şandin bikaranîna vê Account behsa. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Tenê zeviyên diyarkirî ji bo qeydên nû pêwîst in. Tu stûnên non-wêneke eger tu dixwazî jê bibî. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nikare Rojane bûyer | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Complete Payment | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,Not | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,warê Timeline divê fieldname derbasdar be | |||
DocType: Email Account,Email Ids,Email nasname | |||
DocType: Email Account,Email Addresses,Email nasname | |||
DocType: Currency,Symbol,Nîşan | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,şîfreya xwe ya nû bi rêket | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,li hêvîya | |||
DocType: PayPal Settings,Use Sandbox,bikaranîna Ceriban | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Format Custom bo çapkirinê | |||
DocType: DocPerm,Create,Xûliqandin | |||
DocType: Newsletter,A Lead with this email id should exist,A Lead bi vê id email divê hene | |||
DocType: Newsletter,A Lead with this Email Address should exist,A Lead bi vê id email divê hene | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filter Invalid: {0} | |||
DocType: Integration Service,Background Events,background Events | |||
DocType: Dropbox Settings,App Access Key,App Têketinê Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Tenê Destûrê biguherîne | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Navê te | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,e Folder | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Bikarhêner {0} tune | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ger image hilbijartinName, color piştguh bibin." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Account Email | |||
DocType: Workflow State,Download,download | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Netîce | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} e a id email ne derbasdar e | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} e a id email ne derbasdar e | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,çalak Report | |||
DocType: DocField,Display Depends On,Display Dimîne li ser | |||
DocType: Web Page,Insert Code,Code Insert | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,ການສອບຖາມ | |||
DocType: DocType,Sort Order,ຮຽງ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'ໃນຊີ View' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,ອີເມວຂອງທ່ານ Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,ອີເມວຂອງທ່ານ Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ເລືອກເອົາປ້າຍຫຼັງຈາກທີ່ທ່ານຕ້ອງການທີ່ຈະສະແດງກິ່ງງ່າພາກສະຫນາມໃຫມ່. | |||
,Document Share Report,ເອກະສານລາຍວຽກ | |||
DocType: User,Last Login,ລະບົບຫຼ້າສຸດ | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,ຫນ້າ HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,ຂໍ້ເພີ່ມເຕີມສາມາດໄດ້ຮັບການສ້າງຕັ້ງພຽງແຕ່ພາຍໃຕ້ 'ຂອງກຸ່ມຂໍ້ປະເພດ | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ຮູ້ຈັກຄໍລໍາ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ທາງເລືອກ: ສະເຫມີສົ່ງໄປຫັດເຫຼົ່ານີ້. ອີເມວແຕ່ລະສຸດຕິດຕໍ່ກັນໃຫມ່ | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ທາງເລືອກ: ສະເຫມີສົ່ງໄປຫັດເຫຼົ່ານີ້. ອີເມວແຕ່ລະສຸດຕິດຕໍ່ກັນໃຫມ່ | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ຜູ້ໃຊ້ທີ່ມີພາລະບົດບາດ {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},ການຕິດຕັ້ງ App {0} | |||
DocType: Print Format,Custom Format,ຮູບແບບການລູກຄ້າ | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,ປັບປຸງແມ່ແບບແລະຊ່ວຍປະຢັດໃນ CSV (Comma ຄ່າແຍກຕ່າງຫາກ) ຮູບແບບກ່ອນທີ່ຈະຕິດຄັດ. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ລະບຸຄ່າຂອງພາກສະຫນາມໄດ້ | |||
DocType: Report,Disabled,ຄົນພິການ | |||
DocType: Email Account,Always use Account's Email ID as Sender,ສະເຫມີໃຊ້ ID Email ບັນຊີເປັນຜູ້ສົ່ງ | |||
DocType: Email Account,Always use Account's Email Address as Sender,ສະເຫມີໃຊ້ ID Email ບັນຊີເປັນຜູ້ສົ່ງ | |||
DocType: Workflow State,eye-close,ຕາທີ່ໃກ້ຊິດ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',ກະລຸນາເລືອກວິທີການຊໍາລະເງິນອື່ນ. {0} ບໍ່ໄດ້ສະຫນັບສະຫນູນກິດຈະກໍາໃນສະກຸນເງິນ '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,ການຕັ້ງຄ່າໃຫ້ບໍລິການ OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ໃບ | |||
DocType: Portal Menu Item,Portal Menu Item,Menu Item Portal | |||
DocType: Email Account,Email ID,ID Email | |||
DocType: Email Account,Email Address,ID Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,ໃສ່ Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,ບັນຊີລາຍຊື່ຂອງຊັບພະຍາກອນ A ທີ່ App Client ຈະມີການເຂົ້າເຖິງພາຍຫຼັງທີ່ຜູ້ໃຊ້ອະນຸຍາດໃຫ້ມັນ. <br> ຕົວຢ່າງໂຄງການ | |||
DocType: Contact Us Settings,Query Options,ຕົວເລືອກການສອບຖາມ | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,ຫມາ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,markdown | |||
DocType: DocShare,Document Name,ຊື່ເອກະສານ | |||
DocType: ToDo,Medium,ຂະຫນາດກາງ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,ກະລຸນາກວດສອບອີເມວຂອງທ່ານ | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,ກະລຸນາກວດສອບອີເມວຂອງທ່ານ | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,ບໍ່ອະນຸຍາດພຽງພໍເພື່ອເຂົ້າໄປເບິ່ງການເຊື່ອມຕໍ່. | |||
DocType: Customize Form,Customize Form,ປັບຮູບແບບ | |||
DocType: Currency,A symbol for this currency. For e.g. $,ເປັນສັນຍາລັກສໍາລັບການສະກຸນເງິນນີ້. ສໍາລັບຕົວຢ່າງ: $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ຂັ້ນຕອນທີກັບຄື | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,ກະລຸນາຕັ້ງຕົວທີ່ໃຊ້ໃນການເຂົ້າເຖິງ Dropbox ໃນ config ເວັບໄຊຂອງທ່ານ | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ລຶບບັນທຶກນີ້ຈະອະນຸຍາດໃຫ້ສົ່ງໄປຫາທີ່ຢູ່ອີເມວນີ້ | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ການນໍາໃຊ້ລະຫັດອີເມວທີ່ໄດ້ກ່າວມາໃນບັນຊີນີ້ເປັນຜູ້ສົ່ງສໍາລັບອີເມວທັງຫມົດທີ່ສົ່ງການນໍາໃຊ້ບັນຊີນີ້. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ການນໍາໃຊ້ລະຫັດອີເມວທີ່ໄດ້ກ່າວມາໃນບັນຊີນີ້ເປັນຜູ້ສົ່ງສໍາລັບອີເມວທັງຫມົດທີ່ສົ່ງການນໍາໃຊ້ບັນຊີນີ້. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ພຽງແຕ່ຕ້ອງໃສ່ຂໍ້ມູນທີ່ຈໍາເປັນສໍາລັບການບັນທຶກໃຫມ່. ທ່ານສາມາດລຶບຖັນທີ່ບໍ່ແມ່ນການບັງຄັບຖ້າຫາກວ່າທ່ານຕ້ອງການ. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ບໍ່ສາມາດທີ່ຈະປັບປຸງກິດຈະກໍາ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ສໍາເລັດການຊໍາລະເງິນ | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,Bookmark | |||
DocType: Note,Note,ຫມາຍເຫດ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ບົດລາຍງານຄວາມຜິດພາດ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,ພາກສະຫນາມກໍານົດເວລາຕ້ອງເປັນ fieldname ຖືກຕ້ອງ | |||
DocType: Email Account,Email Ids,Email Ids | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,ສັນຍາລັກ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,"ຕິດຕໍ່ກັນ, {0}:" | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,ລະຫັດຜ່ານໃຫມ່ໄດ້ສົ່ງອີເມວ | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,ຄິວ | |||
DocType: PayPal Settings,Use Sandbox,ການນໍາໃຊ້ Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,ຮູບແບບການລູກຄ້າພິມໃຫມ່ | |||
DocType: DocPerm,Create,ສ້າງ | |||
DocType: Newsletter,A Lead with this email id should exist,ທີ່ເຮັດໃຫ້ກັບອີເມວນີ້ຄວນຈະມີ | |||
DocType: Newsletter,A Lead with this Email Address should exist,ທີ່ເຮັດໃຫ້ກັບອີເມວນີ້ຄວນຈະມີ | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},ເຄື່ອງດື່ມ: {0} | |||
DocType: Integration Service,Background Events,ເຫດການຄວາມເປັນມາ | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,ພຽງແຕ່ອະນ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ຊື່ຂອງເຈົ້າ | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ແມ່ນ Folder | |||
DocType: Newsletter,Test Email Id,Id Test Email | |||
DocType: Newsletter,Test Email Address,Id Test Email | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ຜູ້ໃຊ້ {0} ບໍ່ມີ | |||
DocType: Website Theme,"If image is selected, color will be ignored.","ຖ້າຫາກວ່າຮູບພາບໄດ້ຖືກຄັດເລືອກ, ສີຈະໄດ້ຮັບການໃສ່ໃຈ." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ບັນຊີອີເມວ | |||
DocType: Workflow State,Download,ດາວໂຫລດ | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,ຜົນ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ບໍ່ໄດ້ເປັນອີເມວທີ່ຖືກຕ້ອງ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ບໍ່ໄດ້ເປັນອີເມວທີ່ຖືກຕ້ອງ | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,ເຮັດໃຫ້ບົດລາຍງານ | |||
DocType: DocField,Display Depends On,ການສະແດງຂຶ້ນຢູ່ກັບ | |||
DocType: Web Page,Insert Code,ລະຫັດໃສ່ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,užklausa | |||
DocType: DocType,Sort Order,Rikiuoti | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"Sąrašo rodinyje" neleidžiama tipas {0} iš eilės {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Jūsų elektroninio pašto numeris | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Jūsų elektroninio pašto numeris | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Pasirinkite etiketę, po kurios norite įterpti naują lauką." | |||
,Document Share Report,Dokumento Dalintis ataskaita | |||
DocType: User,Last Login,Paskutinis prisijungimas | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML puslapyje | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Daugiau mazgai gali būti kuriamos tik pagal "grupė" tipo mazgų | |||
DocType: Web Page,Header,antraštė | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nėra skiltis: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Neprivaloma: Visada siųsti šiuos ID. Kiekvienas siųsti tapatybės apie naują eilutę | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Neprivaloma: Visada siųsti šiuos ID. Kiekvienas siųsti tapatybės apie naują eilutę | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Vartotojai su {0} vaidmenį: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Įdiegti programą {0} | |||
DocType: Print Format,Custom Format,Pasirinktinis Formatas | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Atnaujinkite šabloną ir išsaugoti CSV (kableliais Atskiri reikšmės) formatą Prieš tvirtindami. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Nurodykite srityje vertę | |||
DocType: Report,Disabled,neįgalusis | |||
DocType: Email Account,Always use Account's Email ID as Sender,Visada naudokite paskyros el ID kaip Siuntėjas | |||
DocType: Email Account,Always use Account's Email Address as Sender,Visada naudokite paskyros el ID kaip Siuntėjas | |||
DocType: Workflow State,eye-close,akių Uždaryti | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Prašome pasirinkti kitą mokėjimo būdą. {0} nepalaiko sandoriams valiuta "{1}" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,"OAuth teikėjas Nustatymai | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,lapas | |||
DocType: Portal Menu Item,Portal Menu Item,Portalo Meniu punktas | |||
DocType: Email Account,Email ID,E-mail ID | |||
DocType: Email Account,Email Address,E-mail ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,įterpti nuorodą | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Šaltinių sąrašas, kuris Klientas ""App turės prieigą prie kai vartotojas leidžia. <br> pvz projektas" | |||
DocType: Contact Us Settings,Query Options,užklausa Nustatymai | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Pastabos: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Akcijos kainos | |||
DocType: DocShare,Document Name,Dokumento pavadinimas | |||
DocType: ToDo,Medium,vidutinis | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Prašome patikrinti savo elektroninio pašto ID | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Prašome patikrinti savo elektroninio pašto ID | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nepakanka leidimo matyti nuorodas. | |||
DocType: Customize Form,Customize Form,tinkinti formą | |||
DocType: Currency,A symbol for this currency. For e.g. $,Simbolis šią valiutą. EG $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,žingsnis atgal | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{APP_TITLE} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Prašome nustatyti Dropbox prieigos raktus į savo svetainę config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ištrinti šį įrašą, kad būtų galima siųsti į šį elektroninio pašto adresą" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Naudoja minėtą šioje sąskaitoje kaip visų laiškų, siunčiamų naudojant šią paskyrą Siuntėjas elektroninio pašto numeris." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Naudoja minėtą šioje sąskaitoje kaip visų laiškų, siunčiamų naudojant šią paskyrą Siuntėjas elektroninio pašto numeris." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tik privalomi laukai yra būtini naujų įrašų. Jūs galite ištrinti neprivalomi stulpelius, jei norite." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nepavyko atnaujinti renginį | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Mokėjimo Užbaigti | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,Pažymėti | |||
DocType: Note,Note,pastaba | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,klaida ataskaita | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Laiko laukas turi būti galiojantis nazwapola | |||
DocType: Email Account,Email Ids,pašto ID | |||
DocType: Email Account,Email Addresses,pašto ID | |||
DocType: Currency,Symbol,simbolis | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Eilutės # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Naujas slaptažodis išsiųstas | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,eilėje | |||
DocType: PayPal Settings,Use Sandbox,Naudokite Smėlio | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nauja Individualizuotos Spausdinti Formatas | |||
DocType: DocPerm,Create,kurti | |||
DocType: Newsletter,A Lead with this email id should exist,Kreipiančiųjų su šiuo elektroninio pašto id turėtų egzistuoti | |||
DocType: Newsletter,A Lead with this Email Address should exist,Kreipiančiųjų su šiuo elektroninio pašto id turėtų egzistuoti | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Neteisingas Filtras: {0} | |||
DocType: Integration Service,Background Events,fono Renginiai | |||
DocType: Dropbox Settings,App Access Key,Programos prieigos raktas | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Leisti tik redagavimą | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tavo vardas | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Ar Byla | |||
DocType: Newsletter,Test Email Id,Testas elektroninio pašto numeris | |||
DocType: Newsletter,Test Email Address,Testas elektroninio pašto numeris | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Vartotojas {0} neegzistuoja | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Jei paveikslėlis yra pasirinktas, spalva bus ignoruojami." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Elektroninio pašto paskyra | |||
DocType: Workflow State,Download,parsisiųsti | |||
DocType: Blog Post,Blog Intro,Dienoraštis Intro | |||
DocType: Async Task,Result,Rezultatas | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nėra galiojantis elektroninio pašto ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nėra galiojantis elektroninio pašto ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Įjungti pranešimą | |||
DocType: DocField,Display Depends On,Rodyti Priklauso nuo | |||
DocType: Web Page,Insert Code,Įveskite kodą | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Jautājums | |||
DocType: DocType,Sort Order,Kārtošanas secība | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""List View"" nav atļauts veidam {0} rindā {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Jūsu e-pasts ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Jūsu e-pasts ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Izvēlieties etiķeti, pēc kura vēlaties ievietot jauno darbības jomu." | |||
,Document Share Report,Dokumentu Share Ziņojums | |||
DocType: User,Last Login,Pēdējā pieteikšanās | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Turpmākas mezglus var izveidot tikai ar ""grupa"" tipa mezgliem" | |||
DocType: Web Page,Header,Galvene | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nezināms sleja: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Pēc izvēles: Vienmēr sūtīt uz šiem ID. Katrā e-pasta id par jaunu kārtas | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Pēc izvēles: Vienmēr sūtīt uz šiem ID. Katrā e-pasta id par jaunu kārtas | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Lietotāji ar lomu {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalēšana App {0} | |||
DocType: Print Format,Custom Format,Custom Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Atjaunināt veidni un saglabāt CSV (Comma Atsevišķi vērtības) formātā pirms pievienošanas. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Precizēt vērtību lauka | |||
DocType: Report,Disabled,Invalīdiem | |||
DocType: Email Account,Always use Account's Email ID as Sender,Vienmēr izmantojiet konta e-pasta ID kā sūtītājs | |||
DocType: Email Account,Always use Account's Email Address as Sender,Vienmēr izmantojiet konta e-pasta ID kā sūtītājs | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Lūdzu, izvēlieties citu maksājuma veidu. {0} neatbalsta darījumus valūtā '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth sniedzējs iestatījumi | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,lapa | |||
DocType: Portal Menu Item,Portal Menu Item,Portāls Izvēlnes pozīcija | |||
DocType: Email Account,Email ID,E-pasta ID | |||
DocType: Email Account,Email Address,E-pasta ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Ievietot Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Saraksts no resursiem, kas Klientam App būs pieejama pēc tam, kad lietotājs to atļauj. <br> piemēram, projekts" | |||
DocType: Contact Us Settings,Query Options,Vaicājuma opcijas | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Piezīmes: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokumenta nosaukums | |||
DocType: ToDo,Medium,Medijs | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Lūdzu, apstipriniet savu e-pasta id" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Lūdzu, apstipriniet savu e-pasta id" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,"Nepietiek atļauju, lai redzētu saites." | |||
DocType: Customize Form,Customize Form,Pielāgot forma | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Simbols šajā valūtā. Lai, piemēram, $$" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,soli atpakaļ | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Lūdzu noteikt Dropbox piekļuves atslēgas vietnes config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Dzēst šo ierakstu, kas ļauj sūtīt uz šo e-pasta adresi" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Izmanto minēto šajā kontā kā nosūtītājs visiem e-pastiem nosūtītas, izmantojot šo kontu e-pasta ID." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Izmanto minēto šajā kontā kā nosūtītājs visiem e-pastiem nosūtītas, izmantojot šo kontu e-pasta ID." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tikai obligāti lauki ir vajadzīgs jaunām ierakstiem. Jūs varat dzēst neobligātiem kolonnas, ja vēlaties." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nevar atjaunināt notikumu | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,maksājumu Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,grāmatzīme | |||
DocType: Note,Note,Piezīme | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Kļūdas ziņojums | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline laukam jābūt derīgam fieldname | |||
DocType: Email Account,Email Ids,E-pasta ID | |||
DocType: Email Account,Email Addresses,E-pasta ID | |||
DocType: Currency,Symbol,Simbols | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Jaunā parole pa e-pastu | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Rindā | |||
DocType: PayPal Settings,Use Sandbox,Izmantot Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Izveidot | |||
DocType: Newsletter,A Lead with this email id should exist,Svins ar šo e-pasta id jāpastāv | |||
DocType: Newsletter,A Lead with this Email Address should exist,Svins ar šo e-pasta id jāpastāv | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Nederīga Filter: {0} | |||
DocType: Integration Service,Background Events,fona notikumi | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Tikai Atļaut Rediģēt | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tavs vārds | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Vai Folder | |||
DocType: Newsletter,Test Email Id,Tests Email Id | |||
DocType: Newsletter,Test Email Address,Tests Email Address | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Lietotāja {0} nepastāv | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ja ir izvēlēts attēls, krāsu tiks ignorētas." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,E-pasta konta | |||
DocType: Workflow State,Download,Download | |||
DocType: Blog Post,Blog Intro,Blogs Intro | |||
DocType: Async Task,Result,Rezultāts | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nav derīga e-pasta id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nav derīga e-pasta id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Ieslēgt ziņojumu | |||
DocType: DocField,Display Depends On,Displejs Atkarīgs On | |||
DocType: Web Page,Insert Code,Ievietot Code | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Пребарување | |||
DocType: DocType,Sort Order,Подредување | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"Во List View" не се дозволени за видот {0} во ред {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Вашата e-mail проект | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Вашата e-mail проект | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикетата по што сакате да го вметнете нова област. | |||
,Document Share Report,Документ Сподели Извештај | |||
DocType: User,Last Login,Најнови најавување | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML страница | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Понатаму јазли може да се создаде само под тип јазли "група" | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Непознат Колумна: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Изборно: Секогаш испрати на овие лични карти. Секој е-мејл ID на нов ред | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Изборно: Секогаш испрати на овие лични карти. Секој е-мејл ID на нов ред | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Корисниците со улогата {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Инсталирање App {0} | |||
DocType: Print Format,Custom Format,Прилагодено формат | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Ажурирање на дефиниција и зачувајте ја во CSV (Comma Одделни вредности) формат пред приложување. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Наведете ја вредноста на полето | |||
DocType: Report,Disabled,Со посебни потреби | |||
DocType: Email Account,Always use Account's Email ID as Sender,Секогаш користете сметка е-мејл ID како испраќач | |||
DocType: Email Account,Always use Account's Email Address as Sender,Секогаш користете сметка е-мејл ID како испраќач | |||
DocType: Workflow State,eye-close,око-близина | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Ве молам изберете друг начин на исплата. {0} не поддржува трансакции во валута "{1}" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Прилагодување на OAuth провајдер | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,лист | |||
DocType: Portal Menu Item,Portal Menu Item,Портал Ставка | |||
DocType: Email Account,Email ID,E-mail проект | |||
DocType: Email Account,Email Address,E-mail проект | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Вметнете линк | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Список на ресурсите кои клиентот стан ќе имаат пристап до по корисник го дозволува тоа. <br> на пр проект | |||
DocType: Contact Us Settings,Query Options,Опции за пребарување | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Забел | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Документ Име | |||
DocType: ToDo,Medium,Медиум | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Ве молиме да се провери вашата e-mail проект | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Ве молиме да се провери вашата e-mail проект | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Не е доволно дозволи за да ја видите линкови. | |||
DocType: Customize Form,Customize Form,Персонализација на образец | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Симбол за оваа валута. На пример, $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,чекор назад | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Ве молиме да се постави Dropbox копчиња за пристап на вашиот сајт config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Избришете оваа евиденција за да се овозможи испраќање на оваа е-маил адреса | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Користи проект-пошта споменати во овој профил како испраќачот за сите пораки испратени со користење на овој профил. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Користи проект-пошта споменати во овој профил како испраќачот за сите пораки испратени со користење на овој профил. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само задолжителни полиња се неопходни за нови рекорди. Можете да ги избришете незадолжителни колони ако сакате. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Не можам да го обновите настан | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Целосно плаќање | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,обележувач | |||
DocType: Note,Note,Забелешка | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Пријави грешка | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Хронологија поле мора да биде валидна fieldname | |||
DocType: Email Account,Email Ids,E-mail ИД | |||
DocType: Email Account,Email Addresses,E-mail ИД | |||
DocType: Currency,Symbol,Симбол | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Ред # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Нова лозинка преку е-маил | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Чекаат на ред | |||
DocType: PayPal Settings,Use Sandbox,Користете Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Нов прилагодено Печатење формат | |||
DocType: DocPerm,Create,Направете | |||
DocType: Newsletter,A Lead with this email id should exist,Потенцијален клиент со овој email id треба да постои | |||
DocType: Newsletter,A Lead with this Email Address should exist,Потенцијален клиент со овој Email Address треба да постои | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Невалиден Филтер: {0} | |||
DocType: Integration Service,Background Events,позадина Настани | |||
DocType: Dropbox Settings,App Access Key,App пристап Клучни | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Само што им ово | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Вашето име | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Е папка | |||
DocType: Newsletter,Test Email Id,Тест-мејл ID | |||
DocType: Newsletter,Test Email Address,Тест-мејл ID | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Корисник {0} не постои | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ако е избрана слика, боја ќе бидат игнорирани." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,E-mail сметка | |||
DocType: Workflow State,Download,Преземи | |||
DocType: Blog Post,Blog Intro,Блог Вовед | |||
DocType: Async Task,Result,Резултат | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} не е валиден-мејл ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не е валиден-мејл ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Овозможи Извештај | |||
DocType: DocField,Display Depends On,Екранот зависат од | |||
DocType: Web Page,Insert Code,Внеси код | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,അന്വേഷണം | |||
DocType: DocType,Sort Order,ക്രമീകരണം | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'പട്ടിക കാഴ്ചയിൽ' വരി ടൈപ്പ് {0} അനുവദിച്ചിട്ടില്ല {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,നിങ്ങളുടെ ഇമെയിൽ ഐഡി | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,നിങ്ങളുടെ ഇമെയിൽ ഐഡി | |||
DocType: Custom Field,Select the label after which you want to insert new field.,നിങ്ങൾ പുതിയ ഫീൽഡ് തിരുകാൻ ആഗ്രഹിക്കുന്ന ശേഷം ലേബൽ തിരഞ്ഞെടുക്കുക. | |||
,Document Share Report,ഡോക്യുമെന്റ് പങ്കിടുക റിപ്പോർട്ട് | |||
DocType: User,Last Login,കഴിഞ്ഞ ലോഗിൻ | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,പേജ് എച്ച്ടിഎംഎൽ | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,കൂടുതലായ നോഡുകൾ മാത്രം 'ഗ്രൂപ്പ്' ടൈപ്പ് നോഡുകൾ പ്രകാരം സൃഷ്ടിക്കാൻ കഴിയും | |||
DocType: Web Page,Header,തലക്കുറി | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},അറിയപ്പെടാത്ത നിരയുടെ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ഓപ്ഷണൽ: എല്ലായ്പ്പോഴും ഈ ഐഡികൾ വരെ അയയ്ക്കുക. ഒരു പുതിയ വരി ഓരോ ഇമെയിൽ ഐഡി | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ഓപ്ഷണൽ: എല്ലായ്പ്പോഴും ഈ ഐഡികൾ വരെ അയയ്ക്കുക. ഒരു പുതിയ വരി ഓരോ ഇമെയിൽ ഐഡി | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,പങ്ക് {0} ഉപയോഗിച്ച് ഉപയോക്താക്കൾ: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},അപ്ലിക്കേഷൻ {0} ഇൻസ്റ്റാൾ | |||
DocType: Print Format,Custom Format,കസ്റ്റം ഫോർമാറ്റ് | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,ReTweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,"ടെംപ്ലേറ്റ് അപ്ഡേറ്റ്, CSV സംരക്ഷിക്കുക (കോമ പ്രത്യേക മൂല്യങ്ങൾ) കൂട്ടിച്ചേർത്തപ്പോൾ മുമ്പ് ഫോർമാറ്റ്." | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,വയലിലെ മൂല്യം വ്യക്തമാക്കുക | |||
DocType: Report,Disabled,രഹിതമായ | |||
DocType: Email Account,Always use Account's Email ID as Sender,അയയ്ക്കുന്നയാൾ ആയി അക്കൗണ്ടിന്റെ ഇമെയിൽ ഐഡി എപ്പോഴും ഉപയോഗിക്കുക | |||
DocType: Email Account,Always use Account's Email Address as Sender,അയയ്ക്കുന്നയാൾ ആയി അക്കൗണ്ടിന്റെ ഇമെയിൽ ഐഡി എപ്പോഴും ഉപയോഗിക്കുക | |||
DocType: Workflow State,eye-close,കണ്ണ്-അടുത്ത | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',മറ്റൊരു പേയ്മെന്റ് രീതി തിരഞ്ഞെടുക്കുക. {0} കറൻസി ഇടപാടുകളും പിന്തുണയ്ക്കുന്നില്ല '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth ദാതാവ് ക്രമീകരണങ്ങൾ | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ഇല | |||
DocType: Portal Menu Item,Portal Menu Item,പോർട്ടൽ മെനു ഇനം | |||
DocType: Email Account,Email ID,ഇമെയിൽ ഐഡി | |||
DocType: Email Account,Email Address,ഇമെയിൽ ഐഡി | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,ലിങ്ക് ഉൾപ്പെടുത്തുക | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,ഉപയോക്താക്കൾക്ക് അനുവദിക്കുന്നു ശേഷം ക്ലയന്റ് അപ്ലിക്കേഷൻ ആക്സസ് ഉണ്ടായിരിക്കും ഉറവിടങ്ങളിലെ ഒരു ലിസ്റ്റ്. <br> ഉദാ പദ്ധതി | |||
DocType: Contact Us Settings,Query Options,അന്വേഷണം ഓപ്ഷനുകൾ | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,കുറ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ഡോക്യുമെന്റ് പേര് | |||
DocType: ToDo,Medium,മീഡിയം | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,നിങ്ങളുടെ ഇമെയിൽ ഐഡി സ്ഥിരീകരിക്കുന്നതിന് ദയവായി | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,നിങ്ങളുടെ ഇമെയിൽ ഐഡി സ്ഥിരീകരിക്കുന്നതിന് ദയവായി | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,ലിങ്കുകൾ കാണാൻ വേണ്ടത്ര അനുമതി. | |||
DocType: Customize Form,Customize Form,ഫോം ഇഷ്ടാനുസൃതമാക്കുക | |||
DocType: Currency,A symbol for this currency. For e.g. $,ഈ കറൻസി പ്രതീകമായി. ഉദാ $ വേണ്ടി | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ഘട്ടം പിന്നാക് | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,നിങ്ങളുടെ സൈറ്റ് ക്രമീകരണ ലെ ഡ്രോപ്പ്ബോക്സ് പ്രവേശനം സജ്ജീകരിക്കുക | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ഈ ഇമെയിൽ വിലാസത്തിലേക്ക് അയയ്ക്കുന്നത് അനുവദിക്കുന്നതിന് ഈ റെക്കോർഡ് ഇല്ലാതാക്കുക | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ഈ അക്കൗണ്ട് ഉപയോഗിച്ച് എല്ലാ ഇമെയിലുകളും വേണ്ടി അയയ്ക്കുന്നയാളുടെ ഈ അക്കൗണ്ട് പരാമർശിച്ചിരിക്കുന്ന ഇമെയിൽ ഐഡി ഉപയോഗിക്കുന്നു. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ഈ അക്കൗണ്ട് ഉപയോഗിച്ച് എല്ലാ ഇമെയിലുകളും വേണ്ടി അയയ്ക്കുന്നയാളുടെ ഈ അക്കൗണ്ട് പരാമർശിച്ചിരിക്കുന്ന ഇമെയിൽ ഐഡി ഉപയോഗിക്കുന്നു. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,മാത്രം നിർബന്ധമായി ഫീൽഡുകളിൽ പുതിയ റെക്കോഡുകൾ അനിവാര്യവുമാണ്. നിങ്ങൾ ആഗ്രഹിക്കുന്നെങ്കിൽ-അല്ലാത്ത നിർബന്ധമായി നിരകൾ ഇല്ലാതാക്കാൻ കഴിയും. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ചേര്ക്കാന് കഴിഞ്ഞില്ല | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,പേയ്മെന്റ് പൂർത്തിയായി | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,ബുക്ക്മാർക്ക് | |||
DocType: Note,Note,കുറിപ്പ് | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,പിശക് റിപ്പോർട്ട് | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,ടൈംലൈൻ ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം | |||
DocType: Email Account,Email Ids,ഇമെയിൽ ഐഡികൾ | |||
DocType: Email Account,Email Addresses,ഇമെയിൽ ഐഡികൾ | |||
DocType: Currency,Symbol,ചിഹ്നം | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,വരി # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,പുതിയ പാസ്വേഡ് ഇമെയിൽ ചെയ്തു | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,ക്യൂവിലാക്കി | |||
DocType: PayPal Settings,Use Sandbox,താങ്കളെ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,പുതിയ കസ്റ്റം പ്രിന്റ് ഫോർമാറ്റ് | |||
DocType: DocPerm,Create,സൃഷ്ടിക്കുക | |||
DocType: Newsletter,A Lead with this email id should exist,ഈ ഇമെയിൽ ഐഡി ഉപയോഗിച്ച് ലീഡ് നിലവിലില്ല വേണം | |||
DocType: Newsletter,A Lead with this Email Address should exist,ഈ ഇമെയിൽ ഐഡി ഉപയോഗിച്ച് ലീഡ് നിലവിലില്ല വേണം | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},അസാധുവായ ഫിൽറ്റർ: {0} | |||
DocType: Integration Service,Background Events,പശ്ചാത്തല ഇവന്റുകൾ | |||
DocType: Dropbox Settings,App Access Key,അപ്ലിക്കേഷൻ ആക്സസ് കീ | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,എഡിറ്റ് എ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,താങ്കളുടെ പേര് | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ഫോൾഡർ | |||
DocType: Newsletter,Test Email Id,ടെസ്റ്റ് ഇമെയിൽ ഐഡി | |||
DocType: Newsletter,Test Email Address,ടെസ്റ്റ് ഇമെയിൽ ഐഡി | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ഉപയോക്താവ് {0} നിലവിലില്ല | |||
DocType: Website Theme,"If image is selected, color will be ignored.","ഇമേജ് തിരഞ്ഞെടുത്താൽ, നിറം അവഗണിക്കപ്പെടുന്നു." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ഇമെയിൽ അക്കൗണ്ട | |||
DocType: Workflow State,Download,ഡൗൺലോഡ് | |||
DocType: Blog Post,Blog Intro,ബ്ലോഗ് അവതാരിക | |||
DocType: Async Task,Result,ഫലം | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} സാധുവായ ഇമെയിൽ ഐഡി അല്ല | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} സാധുവായ ഇമെയിൽ ഐഡി അല്ല | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,റിപ്പോർട്ട് പ്രാപ്തമാക്കുക | |||
DocType: DocField,Display Depends On,പ്രദർശിപ്പിക്കുക ആശ്രയിച്ചിരിക്കുന്നു | |||
DocType: Web Page,Insert Code,തിരുകുക കോഡ് | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,क्वेरी | |||
DocType: DocType,Sort Order,अनुक्रम | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'यादी पहा मध्ये' सलग प्रकार {0} परवानगी नाही {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,आपला ई-मेल आयडी | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,आपला ई-मेल आयडी | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ज्यानंतर नवीन क्षेत्रात समाविष्ट करायचे असेल ते लेबल निवडा. | |||
,Document Share Report,दस्तऐवज अहवाल सामायिक करा | |||
DocType: User,Last Login,अखेरचे लॉगिन | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,पृष्ठ HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,पुढील नोडस् फक्त 'ग्रुप प्रकार नोडस् अंतर्गत तयार केले जाऊ शकते | |||
DocType: Web Page,Header,शीर्षलेख | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},अज्ञात स्तंभ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,पर्यायी: नेहमी या आयडीला पाठवा. प्रत्येक ई-मेल आयडी नवीन रांगेत | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,पर्यायी: नेहमी या आयडीला पाठवा. प्रत्येक ई-मेल आयडी नवीन रांगेत | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,भूमिका {0} सह वापरकर्ते: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},प्रतिष्ठापन अनुप्रयोग {0} | |||
DocType: Print Format,Custom Format,सानुकूल स्वरूप | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,पुन्हा ट्विट करा | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,टेम्प्लेट अद्ययावत करा आणि आधी CSV मध्ये संलग्न करण्याआधी CSV स्वरूपामध्ये (स्वल्पविराम विभक्त मूल्ये) जतन करा. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,शेतातील मूल्य निर्देशीत | |||
DocType: Report,Disabled,अपंग | |||
DocType: Email Account,Always use Account's Email ID as Sender,नेहमी प्रेषक म्हणून खात्याचा ईमेल आयडी वापरा | |||
DocType: Email Account,Always use Account's Email Address as Sender,नेहमी प्रेषक म्हणून खात्याचा ईमेल आयडी वापरा | |||
DocType: Workflow State,eye-close,डोळे बंद | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',कृपया दुसरी देयक पद्धत निवडा. {0} चलन व्यवहार समर्थन करत नाही '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth प्रदाता सेटिंग्ज | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,पाने/leaf | |||
DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू घटक | |||
DocType: Email Account,Email ID,ई-मेल आयडी | |||
DocType: Email Account,Email Address,ई-मेल आयडी | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,लिंक घाला | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,क्लायंट अनुप्रयोग वापरकर्ता परवानगी नंतर प्रवेश असेल संसाधने यादी. <br> उदा प्रकल्प | |||
DocType: Contact Us Settings,Query Options,क्वेरी पर्याय | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,टिप | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,दस्तऐवज नाव | |||
DocType: ToDo,Medium,मध्यम | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,आपला ई-मेल आयडी सत्यापित करा | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,आपला ई-मेल आयडी सत्यापित करा | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,दुवे पहाण्यासाठी पुरेशी परवानगी नाही . | |||
DocType: Customize Form,Customize Form,फॉर्म सानुकूलित | |||
DocType: Currency,A symbol for this currency. For e.g. $,या चलनासाठी एक चिन्ह. उदा $ साठी | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,चरण-मागे | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,आपली साइट संरचना मध्ये ड्रॉपबॉक्स प्रवेश कळा सेट करा | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,या ईमेल पत्त्यावर पाठवून परवानगी देण्यासाठी हे रेकॉर्ड हटवा | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,हे खाते वापरुन पाठवला सर्व ईमेल साठी प्रेषक म्हणून या खात्यात नमूद ईमेल आयडी वापरते. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,हे खाते वापरुन पाठवला सर्व ईमेल साठी प्रेषक म्हणून या खात्यात नमूद ईमेल आयडी वापरते. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,फक्त अनिवार्य शेतात नवीन रेकॉर्डसाठी आवश्यक आहेत. आपली इच्छा असेल तर आपण न-अनिवार्य स्तंभ हटवू शकता. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,कार्यक्रम अद्यतनित करण्यात अक्षम | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,देयक पूर्ण | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,बुकमार्क | |||
DocType: Note,Note,टीप | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,त्रुटी अहवाल | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,टाइमलाइन फील्ड वैध FIELDNAME असणे आवश्यक आहे | |||
DocType: Email Account,Email Ids,ईमेल आयडी | |||
DocType: Email Account,Email Addresses,ईमेल आयडी | |||
DocType: Currency,Symbol,प्रतीक | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,रो # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,नवीन पासवर्ड ई-मेल | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,रांगेत आहे | |||
DocType: PayPal Settings,Use Sandbox,Sandbox वापर | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,नवीन सानुकूल प्रिंट स्वरूप | |||
DocType: DocPerm,Create,तयार करा | |||
DocType: Newsletter,A Lead with this email id should exist,या ई-मेल id असलेले लीड अस्तित्वात पाहिजे | |||
DocType: Newsletter,A Lead with this Email Address should exist,या ई-मेल id असलेले लीड अस्तित्वात पाहिजे | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},अवैध फिल्टर: {0} | |||
DocType: Integration Service,Background Events,पार्श्वभूमी आगामी कार्यक्रम | |||
DocType: Dropbox Settings,App Access Key,अनुप्रयोग प्रवेश की | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,फक्त संपा | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,आपले नाव | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,फोल्डर आहे | |||
DocType: Newsletter,Test Email Id,कसोटी ई मेल आयडी | |||
DocType: Newsletter,Test Email Address,कसोटी ई मेल आयडी | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,सदस्य {0} अस्तित्वात नाही | |||
DocType: Website Theme,"If image is selected, color will be ignored.","प्रतिमा निवडले असेल, तर रंग दुर्लक्ष केले जाईल." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ईमेल खाते | |||
DocType: Workflow State,Download,डाउनलोड | |||
DocType: Blog Post,Blog Intro,Intro ब्लॉग | |||
DocType: Async Task,Result,निकाल | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} हा ई-मेल आयडी वैध नाही | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} हा ई-मेल आयडी वैध नाही | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,अहवाल सक्षम | |||
DocType: DocField,Display Depends On,रोजी प्रदर्शन अवलंबून | |||
DocType: Web Page,Insert Code,घाला कोड | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Pertanyaan | |||
DocType: DocType,Sort Order,Sort Order | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Dalam Lihat Senarai' tidak dibenarkan jenis {0} di baris {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,E-mel anda Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,E-mel anda Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Pilih label yang anda kehendaki untuk memasukkan bidang baru. | |||
,Document Share Report,Dokumen Laporan Share | |||
DocType: User,Last Login,Log masuk lepas | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Nod lagi hanya boleh diwujudkan di bawah nod jenis 'Kumpulan | |||
DocType: Web Page,Header,Tandukan | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Ruang yang tidak diketahui: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Pilihan: Sentiasa hantar ke id ini. Setiap id e-mel pada baris baru | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Pilihan: Sentiasa hantar ke id ini. Setiap id e-mel pada baris baru | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Pengguna dengan peranan {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Memasang App {0} | |||
DocType: Print Format,Custom Format,Format Custom | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Mengemaskini template dan simpan dalam CSV (Comma Nilai berasingan) Format sebelum melampirkan. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Nyatakan nilai medan | |||
DocType: Report,Disabled,Orang kurang upaya | |||
DocType: Email Account,Always use Account's Email ID as Sender,Sentiasa gunakan E-mel ID Akaun sebagai Penghantar | |||
DocType: Email Account,Always use Account's Email Address as Sender,Sentiasa gunakan E-mel ID Akaun sebagai Penghantar | |||
DocType: Workflow State,eye-close,mata yang terletak berhampiran | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Sila pilih kaedah pembayaran yang lain. {0} tidak menyokong urus niaga dalam mata wang '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Tetapan OAuth Pembekal | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,Rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,daun | |||
DocType: Portal Menu Item,Portal Menu Item,Menu Portal Item | |||
DocType: Email Account,Email ID,ID e-mel | |||
DocType: Email Account,Email Address,ID e-mel | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Masukkan Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Senarai sumber mana App Pelanggan akan mempunyai akses kepada selepas pengguna membenarkannya. <br> contohnya projek | |||
DocType: Contact Us Settings,Query Options,Pertanyaan Pilihan | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Nota: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Turun harga | |||
DocType: DocShare,Document Name,Dokumen Nama | |||
DocType: ToDo,Medium,Sederhana | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Sila sahkan id e-mel anda | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Sila sahkan id e-mel anda | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Tidak cukup kebenaran untuk melihat pautan. | |||
DocType: Customize Form,Customize Form,Menyesuaikan Borang | |||
DocType: Currency,A symbol for this currency. For e.g. $,Satu simbol untuk mata wang ini. Contohnya: $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,langkah ke belakang | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{Tajuk_App} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Sila set kunci akses Dropbox dalam config laman anda | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Padam rekod ini untuk membenarkan menghantar ke alamat email ini | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Menggunakan ID E-mel yang dinyatakan di dalam Akaun ini sebagai penghantar untuk semua e-mel yang dihantar menggunakan akaun ini. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Menggunakan ID E-mel yang dinyatakan di dalam Akaun ini sebagai penghantar untuk semua e-mel yang dihantar menggunakan akaun ini. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya medan mandatori yang perlu bagi rekod baru. Anda boleh memadam lajur bukan mandatori jika anda mahu. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Tidak dapat mengemas kini acara | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Complete pembayaran | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,penanda buku | |||
DocType: Note,Note,Nota | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Laporan ralat | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,bidang Timeline mesti FIELDNAME yang sah | |||
DocType: Email Account,Email Ids,E-mel Id | |||
DocType: Email Account,Email Addresses,E-mel Id | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Kata laluan baru melalui e-mel | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Beratur | |||
DocType: PayPal Settings,Use Sandbox,Penggunaan Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Format Custom Cetak | |||
DocType: DocPerm,Create,Buat | |||
DocType: Newsletter,A Lead with this email id should exist,Satu Broker dengan id e-mel ini perlu wujud | |||
DocType: Newsletter,A Lead with this Email Address should exist,Satu Broker dengan id e-mel ini perlu wujud | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Penapis tidak sah: {0} | |||
DocType: Integration Service,Background Events,latar Belakang Peristiwa | |||
DocType: Dropbox Settings,App Access Key,Aplikasi Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Hanya Benarkan Edit Untuk | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Nama awak | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Adakah Folder | |||
DocType: Newsletter,Test Email Id,Id Ujian E-mel | |||
DocType: Newsletter,Test Email Address,Id Ujian E-mel | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Pengguna {0} tidak wujud | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Jika imej dipilih, warna akan diabaikan." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Akaun e-mel | |||
DocType: Workflow State,Download,Muat turun | |||
DocType: Blog Post,Blog Intro,Blog Pengenalan | |||
DocType: Async Task,Result,Keputusan | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} bukan id e-mel yang sah | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} bukan id e-mel yang sah | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Membolehkan Laporan | |||
DocType: DocField,Display Depends On,Paparan Bergantung Pada | |||
DocType: Web Page,Insert Code,Masukkan Kod | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,မေးခွန်း | |||
DocType: DocType,Sort Order,Sort အမိန့် | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'' List ကိုကြည့်ရန်ခုနှစ်တွင် '' အတန်းအတွက်အမျိုးအစား {0} သည်အခွင့်မပေး {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,သင်၏ Email Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,သင်၏ Email Address | |||
DocType: Custom Field,Select the label after which you want to insert new field.,သင်အသစ်များသည်လယ်ပြင်၌ထည့်သွင်းရန်လိုသည့်နောက်ပိုင်းတံဆိပ်ကိုရွေးချယ်ပါ။ | |||
,Document Share Report,စာရွက်စာတမ်းဝေမျှမယ်အစီရင်ခံစာ | |||
DocType: User,Last Login,နောက်ဆုံးဝင်မည် | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,စာမျက်နှာက HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,နောက်ထပ်ဆုံမှတ်များသာ '' Group မှ '' type ကိုဆုံမှတ်များအောက်မှာနေသူများကဖန်တီးနိုင်ပါသည် | |||
DocType: Web Page,Header,header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},အမည်မသိစစ်ကြောင်း: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,optional: အမြဲတမ်းသည်ဤ IDs မှပေးပို့ပါ။ အတန်းအသစ်ကိုအပေါ်တစ်ခုချင်းစီအီးမေးလ်က id | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,optional: အမြဲတမ်းသည်ဤ IDs မှပေးပို့ပါ။ အတန်းအသစ်ကိုအပေါ်တစ်ခုချင်းစီအီးမေးလ်က id | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,အခန်းကဏ္ဍ {0} နှင့်အတူအသုံးပြုသူများက: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},App ကို {0} Installing | |||
DocType: Print Format,Custom Format,custom စီစဉ်ဖွဲ့စည်းမှုပုံစံ | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,တင်းပလိတ်ဖိုင် Update နှင့် CSV အတွက်ကိုကယ်တင် (ကော်မာကိုသီးခြားတန်ဖိုးများ) တွဲခင် format နဲ့။ | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,လယ်ပြင်၏တန်ဖိုးကို specify | |||
DocType: Report,Disabled,ချို့ငဲသော | |||
DocType: Email Account,Always use Account's Email ID as Sender,ပေးပို့သူအဖြစ်အကောင့်ဖွင့်အီးမေးလ် ID ကိုအမြဲသုံး | |||
DocType: Email Account,Always use Account's Email Address as Sender,ပေးပို့သူအဖြစ်အကောင့်ဖွင့်အီးမေးလ် ID ကိုအမြဲသုံး | |||
DocType: Workflow State,eye-close,မျက်စိ-နီးစပ် | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',အခြားပေးချေမှုနည်းလမ်းရွေးချယ်ပါ။ {0} '' {1} '' ငွေကြေးအရောင်းအထောကျပံ့ပေးမထားဘူး | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth ပေးသူက Settings | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,အရွက် | |||
DocType: Portal Menu Item,Portal Menu Item,portal Menu ကို Item | |||
DocType: Email Account,Email ID,အီးမေးလ် ID ကို | |||
DocType: Email Account,Email Address,အီးမေးလ် ID ကို | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Link ကိုထည့်ပါ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,အသုံးပြုသူကခွင့်ပြုပြီးနောက်လိုင်း App ကိုမှဝင်ရောက်ခွင့်ရှိလိမ့်မည်သည့်အရင်းအမြစ်များကိုစာရင်းတစ်ခု။ <br> ဥပမာစီမံကိန်းအတွက် | |||
DocType: Contact Us Settings,Query Options,query က Options | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,မှတ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,စာရွက်စာတမ်းအမည် | |||
DocType: ToDo,Medium,အလယ်အလတ် | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,သင့်ရဲ့အီးမေးလ်က id အတည်ပြုရန် ကျေးဇူးပြု. | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,သင့်ရဲ့အီးမေးလ်က id အတည်ပြုရန် ကျေးဇူးပြု. | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,လင့်များကြည့်ဖို့မလုံလောက်သောခွင့်ပြုချက်။ | |||
DocType: Customize Form,Customize Form,Form တွင် Customize | |||
DocType: Currency,A symbol for this currency. For e.g. $,ဒီငွေကြေးများအတွက်သင်္ကေတ။ ဥပမာ $ for | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ခြေလှမ်း-နောက် | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,သင့်ရဲ့ site ကို config ကိုအတွက် Dropbox ကို access ကိုသော့ထားပေးပါ | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,အဲဒီအီးမေးလ်လိပ်စာပေးပို့ခြင်းခွင့်ပြုပါရန်ဤမှတ်တမ်း Delete | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ဒီအကောင့်ကိုသုံးပြီးစလှေတျတျောအားလုံးအီးမေးလ်များများအတွက်ပေးပို့သူကြောင့်ဒီအကောင့်အတွက်ဖော်ပြခဲ့သောအီးမေးလ် ID ကိုအသုံးပြုသည်။ | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ဒီအကောင့်ကိုသုံးပြီးစလှေတျတျောအားလုံးအီးမေးလ်များများအတွက်ပေးပို့သူကြောင့်ဒီအကောင့်အတွက်ဖော်ပြခဲ့သောအီးမေးလ် ID ကိုအသုံးပြုသည်။ | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,သာမဖြစ်မနေလယ်ကွက်အသစ်မှတ်တမ်းများသည်လိုအပ်သောဖြစ်ကြ၏။ အကယ်လို့ဆန္ဒရှိတယ်ဆိုရင် Non-မဖြစ်မနေကော်လံဖျက်ပစ်နိုင်ပါတယ်။ | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,အဖြစ်အပျက် update ဖို့မအောင်မြင်ဘူး | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ငွေပေးချေမှုရမည့်အပြီးအစီး | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,မှတ်ချက် | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,error အစီရင်ခံစာ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline ကိုလယ်တရားဝင် fieldname ဖြစ်ရပါမည် | |||
DocType: Email Account,Email Ids,အီးမေးလ် IDS | |||
DocType: Email Account,Email Addresses,အီးမေးလ် IDS | |||
DocType: Currency,Symbol,အထိမ်းအမှတ် | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,စကားဝှက်အသစ်မေးလ်ပို့ပေး | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Queued | |||
DocType: PayPal Settings,Use Sandbox,Sandbox ကိုသုံးပါ | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,နယူးအကောက်ခွန်ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ | |||
DocType: DocPerm,Create,ဖန်တီး | |||
DocType: Newsletter,A Lead with this email id should exist,ဒီအီးမေးလ်က id နှင့်အတူတစ်ခဲတည်ရှိနေသင့်ပါတယ် | |||
DocType: Newsletter,A Lead with this Email Address should exist,ဒီအီးမေးလ်က id နှင့်အတူတစ်ခဲတည်ရှိနေသင့်ပါတယ် | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},မမှန်ကန်ခြင်း Filter: {0} | |||
DocType: Integration Service,Background Events,နောက်ခံသမိုင်းပွဲများ | |||
DocType: Dropbox Settings,App Access Key,App ကို Access ကို Key ကို | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Edit ကိုသည်သ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,မင်းနာမည် | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Folder ကို Is | |||
DocType: Newsletter,Test Email Id,စမ်းသပ်မှုအီးမေးလ် Id | |||
DocType: Newsletter,Test Email Address,စမ်းသပ်မှုအီးမေးလ် Id | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,အသုံးပြုသူ {0} မတည်ရှိပါဘူး | |||
DocType: Website Theme,"If image is selected, color will be ignored.",image ကိုရွေးချယ်ထားလျှင်အရောင်လျစ်လျူရှုခံရပါလိမ့်မယ်။ | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,အီးမေးလ်အကောင် | |||
DocType: Workflow State,Download,ဒေါင်းလုပ် | |||
DocType: Blog Post,Blog Intro,ဘလော့ Intro | |||
DocType: Async Task,Result,ရလဒ်ကတော့ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} မှန်ကန်သော email က id မဟုတ်ပါဘူး | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} မှန်ကန်သော email က id မဟုတ်ပါဘူး | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,အစီရင်ခံစာ Enable | |||
DocType: DocField,Display Depends On,display တွင်မူတည် | |||
DocType: Web Page,Insert Code,INSERT Code ကို | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,Sorteervolgorde | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'In lijst weergave' niet toegestaan voor type {0} in rij {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Uw e-id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Uw e-id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Selecteer het label, waarachter u nieuwe veld wilt invoegen." | |||
,Document Share Report,Document Delen Report | |||
DocType: User,Last Login,Laatst ingelogd | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Pagina HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Verder nodes kunnen alleen worden gemaakt op grond van het type nodes 'Groep' | |||
DocType: Web Page,Header,Hoofd | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Onbekend Kolom : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Optioneel: Altijd verzenden naar deze IDs. Elk e-mail ID op een nieuwe rij | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optioneel: Altijd verzenden naar deze IDs. Elk e-mail ID op een nieuwe rij | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Gebruikers met de rol {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Het installeren van App {0} | |||
DocType: Print Format,Custom Format,Aangepast formaat | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Werk de template bij en sla op CSV (Comma Gescheiden Waarden) formaat om als bijlage bij te voegen. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Geef de waarde van het veld | |||
DocType: Report,Disabled,Uitgeschakeld | |||
DocType: Email Account,Always use Account's Email ID as Sender,Gebruik altijd Account's Email ID als Sender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Gebruik altijd Account's Email Address als Sender | |||
DocType: Workflow State,eye-close,oog-gesloten | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Selecteer een andere betaalmethode. {0} ondersteunt geen transacties in valuta '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Instellingen | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,blad | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,E-mail-ID | |||
DocType: Email Account,Email Address,E-mail-ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Link invoegen | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Een lijst van de middelen die de Client App toegang zal moeten nadat de gebruiker toelaat. <br> bijv project | |||
DocType: Contact Us Settings,Query Options,Query-opties | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Opmerkingen | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Documentnaam | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Controleer uw e-id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Controleer uw e-id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Niet genoeg rechten om links te zien. | |||
DocType: Customize Form,Customize Form,Aanpassen formulier | |||
DocType: Currency,A symbol for this currency. For e.g. $,Een symbool voor deze valuta. Voor bijvoorbeeld $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,step-achteruit | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Stel Dropbox access keys in in uw site configuratie | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Verwijder dit record om mailverkeer naar dit e-mailadres toe te staan. | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Maakt gebruik van de op deze rekening vermeld als de afzender van alle e-mails verzonden met dit account E-ID. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Maakt gebruik van de op deze rekening vermeld als de afzender van alle e-mails verzonden met dit account E-ID. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Enige verplichte velden zijn nodig voor nieuwe records. U kunt niet-verplichte kolommen te verwijderen indien u dat wenst. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Kan evenement actualiseren | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,betaling Compleet | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,bladwijzer | |||
DocType: Note,Note,Opmerking | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fout rapport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Timeline veld moet een geldige veldnaam te zijn | |||
DocType: Email Account,Email Ids,E-mail Ids | |||
DocType: Email Account,Email Addresses,E-mail Ids | |||
DocType: Currency,Symbol,Symbool | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Rij # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nieuw wachtwoord verstuurd | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Wachtrij | |||
DocType: PayPal Settings,Use Sandbox,gebruik Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nieuwe Custom Print Format | |||
DocType: DocPerm,Create,Creëren | |||
DocType: Newsletter,A Lead with this email id should exist,Een Lead met dit e-mail ID moet bestaan | |||
DocType: Newsletter,A Lead with this Email Address should exist,Een Lead met dit e-mail ID moet bestaan | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ongeldige Filter : {0} | |||
DocType: Integration Service,Background Events,achtergrond Events | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Sta alleen Bewerken toe voo | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Uw naam | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Is Folder | |||
DocType: Newsletter,Test Email Id,Test E-mail ID | |||
DocType: Newsletter,Test Email Address,Test E-mail ID | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Gebruiker {0} bestaat niet | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Als het beeld is geselecteerd, wordt de kleur worden genegeerd." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,E-mail account | |||
DocType: Workflow State,Download,Download | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Resultaat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} is geen geldig e-mail ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} is geen geldig e-mail ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Inschakelen Rapport | |||
DocType: DocField,Display Depends On,Weergave is afhankelijk van | |||
DocType: Web Page,Insert Code,Code invoegen | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Spørring | |||
DocType: DocType,Sort Order,Sorteringsrekkefølge | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'I List View' ikke tillatt for typen {0} i rad {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Din e-ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Din e-ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Velg etiketten etter som du vil sette inn nytt felt. | |||
,Document Share Report,Dokument Del Rapporter | |||
DocType: User,Last Login,Siste innlogging | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Ytterligere noder kan bare skapt under 'Gruppe' type noder | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Ukjent Kolonne: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Valgfritt: Send alltid til disse IDer. Hver e-id på en ny rad | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valgfritt: Send alltid til disse IDer. Hver e-id på en ny rad | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Brukere med rollen {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installere App {0} | |||
DocType: Print Format,Custom Format,Custom Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Oppdatere malen og lagre i CSV (Comma Separate Values) format før du fester. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Angi verdien av feltet | |||
DocType: Report,Disabled,Funksjonshemmede | |||
DocType: Email Account,Always use Account's Email ID as Sender,Bruk alltid kontoens e-ID som avsender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Bruk alltid kontoens e-ID som avsender | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Vennligst velg en annen betalingsmåte. {0} tillater ikke transaksjoner i valuta {1} | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Innstillinger | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,blad | |||
DocType: Portal Menu Item,Portal Menu Item,Portal menypunkt | |||
DocType: Email Account,Email ID,E-ID | |||
DocType: Email Account,Email Address,E-ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Sett Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,En liste over ressurser som klient app vil ha tilgang til etter at brukeren tillater det. <br> f.eks prosjekt | |||
DocType: Contact Us Settings,Query Options,Query Options | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Merknader: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokumentnavn | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Bekreft e-id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Bekreft e-id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ikke nok tillatelse til å se linker. | |||
DocType: Customize Form,Customize Form,Tilpass Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Et symbol for denne valuta. For eksempel $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,trinn bakover | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Vennligst sett Dropbox hurtigtaster på din config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Slett denne posten for å tillate sende til denne e-postadressen | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Bruker e-ID er nevnt i denne kontoen som avsender for alle e-poster sendt fra denne kontoen. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Bruker e-ID er nevnt i denne kontoen som avsender for alle e-poster sendt fra denne kontoen. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Bare obligatoriske feltene er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner hvis du ønsker det. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Kan ikke oppdatere event | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,betaling Komplett | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bokmerke | |||
DocType: Note,Note,Notat | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Feilrapport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Tidslinje feltet må være en gyldig feltnavn | |||
DocType: Email Account,Email Ids,E-IDer | |||
DocType: Email Account,Email Addresses,E-IDer | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nytt passord mailet | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,I kø | |||
DocType: PayPal Settings,Use Sandbox,bruk Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Skape | |||
DocType: Newsletter,A Lead with this email id should exist,En Lead med denne e-id skal eksistere | |||
DocType: Newsletter,A Lead with this Email Address should exist,En Lead med denne e-id skal eksistere | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ugyldig Filter: {0} | |||
DocType: Integration Service,Background Events,bakgrunns~~POS=TRUNC Hendelser | |||
DocType: Dropbox Settings,App Access Key,App tilgangsnøkkel | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Bare Tillat Rediger For | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Navnet ditt | |||
DocType: DocType,InnoDB,Uskyldig | |||
DocType: File,Is Folder,Er Folder | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Bruker {0} finnes ikke | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Hvis bildet er valgt, vil fargen bli ignorert." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,E-postkonto | |||
DocType: Workflow State,Download,Last ned | |||
DocType: Blog Post,Blog Intro,Blogg Intro | |||
DocType: Async Task,Result,Resultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} er ikke en gyldig e-id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ikke en gyldig e-id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Aktiver Rapporter | |||
DocType: DocField,Display Depends On,Visningen avhenger | |||
DocType: Web Page,Insert Code,Sett inn kode | |||
@@ -467,7 +467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Zapytanie | |||
DocType: DocType,Sort Order,Kolejność | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},Pole 'W widoku listy' nie jest dozwolone dla typu {0} w lini {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Twój e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Twój e-mail Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Wybierz etykietę po której chcesz dodać nowe pole. | |||
,Document Share Report,Raport Udostępniania Dokumentu | |||
DocType: User,Last Login,Ostatnie Logowanie | |||
@@ -651,7 +651,7 @@ DocType: Page,Page HTML,Strona HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Kolejne powiązania mogą być tworzone tylko w powiązaniach typu ""grupa""" | |||
DocType: Web Page,Header,Nagłówek | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Nieznana Kolumna: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcjonalnie: Zawsze wysyłaj do tych identyfikatorów. Każdy identyfikator e-mail na nowy rząd | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcjonalnie: Zawsze wysyłaj do tych identyfikatorów. Każdy identyfikator e-mail na nowy rząd | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Użytkownicy z rolą {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalacja aplikacji {0} | |||
DocType: Print Format,Custom Format,Format niestandardowy | |||
@@ -720,7 +720,7 @@ DocType: Workflow State,retweet, | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,"Aktualizuj szablon i zapisz w formacie CSV, przed załączeniem." | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Określ wartość pola | |||
DocType: Report,Disabled,Wyłączony | |||
DocType: Email Account,Always use Account's Email ID as Sender,"Zawsze należy używać konta e-mail, jak Sender ID" | |||
DocType: Email Account,Always use Account's Email Address as Sender,"Zawsze należy używać konta e-mail, jak Sender ID" | |||
DocType: Workflow State,eye-close,Blisko Oczu | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Proszę wybrać inną metodę płatności. {0} nie obsługuje transakcje w walucie '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Ustawienia OAuth dostawcze | |||
@@ -863,7 +863,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,liść | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Pozycja menu | |||
DocType: Email Account,Email ID,Identyfikator E-mail | |||
DocType: Email Account,Email Address,Identyfikator E-mail | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Wstaw link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Wykaz środków, które App klient będzie miał dostęp do gdy użytkownik na to pozwala. <br> np projekt" | |||
DocType: Contact Us Settings,Query Options,Opcje Zapytania | |||
@@ -899,7 +899,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notatki: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Obniżka cen | |||
DocType: DocShare,Document Name,Nazwa dokumentu | |||
DocType: ToDo,Medium,Średni | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Proszę sprawdzić swój identyfikator e-mail | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Proszę sprawdzić swój identyfikator e-mail | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Brak dostatecznej ilośći zezwoleń żeby zobaczyć linki. | |||
DocType: Customize Form,Customize Form,Dostosuj formularz | |||
DocType: Currency,A symbol for this currency. For e.g. $,Symbol waluty. Np. $ | |||
@@ -1090,7 +1090,7 @@ DocType: Workflow State,step-backward,Cofnij o jeden krok | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title}, | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Proszę ustawić klucze dostępu do aplikacji Dropbox w pliku konfiguracyjnym Twojej strony | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Usuń ten rekord, aby umożliwić wysyłanie na ten adres e-mail" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Używa ID wspomnianą w tym e-mail jako nadawcy Konto dla wszystkich e-maili wysyłanych za pomocą tego konta. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Używa ID wspomnianą w tym e-mail jako nadawcy Konto dla wszystkich e-maili wysyłanych za pomocą tego konta. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tylko pola obowiązkowe są niezbędne do nowych rekordów. Możesz usunąć kolumny nieobowiązkowe, jeśli chcesz." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nie można zaktualizować imprezę | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Płatność pełna | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,zakładka | |||
DocType: Note,Note,Notatka | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Błędny raport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Pole Timeline musi być poprawnym nazwa_pola | |||
DocType: Email Account,Email Ids,E-mail identyfikatory | |||
DocType: Email Account,Email Addresses,E-mail identyfikatory | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Wiersz # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Wysłano e-mailem nowe hasło | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,W kolejce | |||
DocType: PayPal Settings,Use Sandbox,Korzystanie Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nowy format wydruku klienta | |||
DocType: DocPerm,Create,Utwórz | |||
DocType: Newsletter,A Lead with this email id should exist,Podane dane z tym adresem e-mail powinny istnieć | |||
DocType: Newsletter,A Lead with this Email Address should exist,Podane dane z tym adresem e-mail powinny istnieć | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Nieprawidłowy filtr: {0} | |||
DocType: Integration Service,Background Events,tło wydarzeń | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Zezwól tylko na edycję dl | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Twoje imię | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Czy Folder | |||
DocType: Newsletter,Test Email Id,E-mail testowy | |||
DocType: Newsletter,Test Email Address,E-mail testowy | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Użytkownik {0} nie istnieje | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Jeśli wybrano obraz, to kolor będzie ignorowany." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Konto e-mail | |||
DocType: Workflow State,Download,Ściągnij | |||
DocType: Blog Post,Blog Intro,Wprowadzenie Blogu | |||
DocType: Async Task,Result,Wynik | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} błędny identyfikator e-mail | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} błędny identyfikator e-mail | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Włącz raport | |||
DocType: DocField,Display Depends On,Wyświetlania zależy | |||
DocType: Web Page,Insert Code,Wstaw Kod | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,نه خوری | |||
DocType: DocType,Sort Order,سمبالول، منظمول | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'په List View لپاره ډول {0} په قطار نه اجازه {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,ستاسو دبرېښنا ليک Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,ستاسو دبرېښنا ليک Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ليبل وروسته چې تاسو غواړئ چې نوي ډګر ورننباسئ وټاکئ. | |||
,Document Share Report,سند Share راپور | |||
DocType: User,Last Login,تېره ننوتل | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,لا غوټو يوازې ډله 'ډول غوټو لاندې جوړ شي | |||
DocType: Web Page,Header,سرۍ | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},نامعلوم کالم: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,اختیاري: تل د دغو تذکرو واستوي. پر يوه نوي هر يو قطار ایمیل پېژند | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاري: تل د دغو تذکرو واستوي. پر يوه نوي هر يو قطار ایمیل پېژند | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,سره د {0} رول کاروونکي: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},نصبولو ددفتروسایل {0} | |||
DocType: Print Format,Custom Format,د ګمرکونو شکل | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,د کېنډۍ د نوي کولو او ضميمه مخکې په CSV وژغوري (Comma جلا ارزښتونه) بڼه لري. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,د ډګر د ارزښت د مشخص | |||
DocType: Report,Disabled,معلولينو | |||
DocType: Email Account,Always use Account's Email ID as Sender,حساب ليک تذکرو د تل استوونکی وکاروي | |||
DocType: Email Account,Always use Account's Email Address as Sender,حساب ليک تذکرو د تل استوونکی وکاروي | |||
DocType: Workflow State,eye-close,د سترګو نږدې | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',لطفا بل طریقه ټاکي. {0} په اسعارو د راکړې ورکړې ملاتړ نه کوي '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider امستنې | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,د پاڼی | |||
DocType: Portal Menu Item,Portal Menu Item,تانبه Menu د قالب | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,درج لینک | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,د سرچینو لست چې د مراجع ددفتروسایل به وروسته د کارونکي ته اجازه ورکوي چې دا ته لاسرسی ولري. <br> د بيلګې په توګه د پروژې د | |||
DocType: Contact Us Settings,Query Options,خوری غوراوي | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,یادښت | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,سند نوم | |||
DocType: ToDo,Medium,منځني | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,خپل ایمیل پېژند تایید کړي | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,خپل ایمیل پېژند تایید کړي | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,نه کافي اجازې سره د اړيکو په وګورئ. | |||
DocType: Customize Form,Customize Form,دتنظيمولو فورمه | |||
DocType: Currency,A symbol for this currency. For e.g. $,د دې پيسو د يو سمبول. د بيلګې په توګه $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ګام په شا | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,مهرباني وکړئ په خپل ځای جوړول Useragent Dropbox لاسرسي کیلي ګانو څخه جوړ | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,دغه ریکارډ ړنګول چې د دې ایمیل ادرس استولو اجازه | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,کاروي د برېښليک تذکرو د ټولو برېښلیکونه د دې حساب په کارولو سره لیږل د استوونکی په توګه يادونه په دې حساب. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,کاروي د برېښليک تذکرو د ټولو برېښلیکونه د دې حساب په کارولو سره لیږل د استوونکی په توګه يادونه په دې حساب. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,يوازې جبري پټی لپاره د نوي ریکارډونه ضروري دي. تاسو کولای غیر الزامی ستنې ړنګول که تاسو غواړئ. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,د غونډې د اوسمهالولو توان نلري | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,د تادیاتو بشپړ | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,ليکی | |||
DocType: Note,Note,یادښت | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,تېروتنه راپور | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,مهال ویش په برخه باید یو قانوني fieldname وي | |||
DocType: Email Account,Email Ids,Email پېژندپاڼې | |||
DocType: Email Account,Email Addresses,Email پېژندپاڼې | |||
DocType: Currency,Symbol,سمبول | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,د کتارونو تر # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,نوی پټنوم راولي | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,له پيله | |||
DocType: PayPal Settings,Use Sandbox,sandbox استعمال | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,د نوي ګمرک د چاپ شکل | |||
DocType: DocPerm,Create,جوړول | |||
DocType: Newsletter,A Lead with this email id should exist,سره د دې برېښناليک پېژند يو کوونکۍ باید شتون | |||
DocType: Newsletter,A Lead with this Email Address should exist,سره د دې برېښناليک پېژند يو کوونکۍ باید شتون | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},باطلې Filter: {0} | |||
DocType: Integration Service,Background Events,شاليد پیښې | |||
DocType: Dropbox Settings,App Access Key,ددفتروسایل لاسرسی لپاره عمده | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,يوازې اجازه سم | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ستاسو نوم | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ده پوښی | |||
DocType: Newsletter,Test Email Id,امتحان دبرېښنا ليک Id | |||
DocType: Newsletter,Test Email Address,امتحان دبرېښنا ليک Id | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,کارن {0} نه شته | |||
DocType: Website Theme,"If image is selected, color will be ignored.",که انځور، انتخاب، رنګ به سترګې پټې شي. | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email اکانټ | |||
DocType: Workflow State,Download,دانلود | |||
DocType: Blog Post,Blog Intro,Blog سریزه | |||
DocType: Async Task,Result,د پايلو | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} یو باوري برېښنالیک پېژند نه دی | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} یو باوري برېښنالیک پېژند نه دی | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,راپور فعال کړه | |||
DocType: DocField,Display Depends On,وښایئ پورې تړلی دی د | |||
DocType: Web Page,Insert Code,درج کوډ | |||
@@ -259,7 +259,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did n | |||
apps/frappe/frappe/desk/like.py +89,Liked,Gostou | |||
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Enviar agora | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Visualização em Lista' não pode ser utilizado para o tipo {0} na linha {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Seu ID de Email | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Seu ID de Email | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Selecione a etiqueta após a qual você deseja inserir um novo campo. | |||
,Document Share Report,Relatório de Documentos Compartilhados | |||
DocType: User,Last Login,Último Login | |||
@@ -347,7 +347,7 @@ DocType: User,Roles HTML,Funções HTML | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +159,All customizations will be removed. Please confirm.,Todas as personalizações serão removidos. Por favor confirme. | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Outros nós só pode ser criado sob os nós do tipo ""grupo""" | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Coluna desconhecida: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcional: Sempre enviar para esses ids. Cada ID de email em uma nova linha | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Sempre enviar para esses ids. Cada ID de email em uma nova linha | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Os usuários com a função {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalando App {0} | |||
DocType: Workflow State,random,randômico | |||
@@ -386,7 +386,7 @@ DocType: Custom Field,Depends On,Depende de | |||
apps/frappe/frappe/templates/includes/comments/comments.html +20,Login to comment,Faça login para comentar | |||
DocType: Workflow State,retweet,retwitar | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Atualize o modelo e salve em formato CSV (Comma Separate Values) antes de anexar. | |||
DocType: Email Account,Always use Account's Email ID as Sender,Sempre use de Conta Email Sender ID como | |||
DocType: Email Account,Always use Account's Email Address as Sender,Sempre use de Conta Email Sender ID como | |||
DocType: Workflow State,eye-close,olho fechado | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Configurações do Provedor OAuth | |||
apps/frappe/frappe/public/js/frappe/request.js +304,Report this issue,Reportar essa solicitação | |||
@@ -469,7 +469,7 @@ DocType: DocPerm,If user is the owner,Se o usuário é o proprietário | |||
DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ajuda: Para vincular a outro registro no sistema, use "# Form / Nota / [Nota Name]" como a ligação URL. (Não use "http://")" | |||
apps/frappe/frappe/config/setup.py +243,Add fields to forms.,Adicionar campos nos formulários. | |||
DocType: Portal Menu Item,Portal Menu Item,Portal item de menu | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Inserir link | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +154,Import Successful!,Importação Realizada com Sucesso! | |||
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +40,Updating Records,Atualizando Registros | |||
@@ -490,7 +490,7 @@ DocType: System Settings,Enable Scheduled Jobs,Ativar Tarefas Agendadas | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Nome do documento | |||
DocType: ToDo,Medium,Média | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Por favor, verifique seu email id" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Por favor, verifique seu Email Address" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Sem permissão suficiente para ver os links. | |||
DocType: Currency,A symbol for this currency. For e.g. $,Um símbolo para esta moeda. Por exemplo: R$ | |||
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frapê Quadro | |||
@@ -592,7 +592,7 @@ DocType: Workflow State,step-backward,voltar | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Defina teclas de acesso Dropbox em sua configuração local | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Excluir este registro para permitir o envio para esse endereço de email | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Usa o ID de Email mencionado nesta conta como remetente para todos os emails enviados usando esta conta. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Usa o ID de Email mencionado nesta conta como remetente para todos os emails enviados usando esta conta. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Somente os campos obrigatórios são necessários para novos registros. Você pode excluir colunas não-obrigatórias, se desejar." | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Pagamento finalizado | |||
DocType: Workflow State,text-height,altura de texto | |||
@@ -929,7 +929,7 @@ apps/frappe/frappe/website/doctype/web_form/web_form.py +388,You must login to s | |||
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,"Select your Country, Time Zone and Currency","Escolha o seu País, Fuso Horário e Moeda" | |||
DocType: Async Task,Queued,Enfileiradas | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: Newsletter,A Lead with this email id should exist,Deve existir um Cliente em Potencial com esse endereço de email | |||
DocType: Newsletter,A Lead with this Email Address should exist,Deve existir um Cliente em Potencial com esse endereço de email | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtro inválido: {0} | |||
DocType: OAuth Bearer Token,Access Token,Token de Acesso | |||
DocType: About Us Settings,Org History,org História | |||
@@ -1028,7 +1028,7 @@ DocType: Web Form,Success URL,URL de sucesso | |||
DocType: Email Account,Append To,Acrescente Para | |||
DocType: Workflow Document State,Only Allow Edit For,Somente permite edição para | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Seu Nome | |||
DocType: Newsletter,Test Email Id,Endereço de Email de Teste | |||
DocType: Newsletter,Test Email Address,Endereço de Email de Teste | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Usuário {0} não existe | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Se a imagem for selecionada, a cor será ignorado." | |||
DocType: User,Mute Sounds,Desativar Sons | |||
@@ -1214,7 +1214,7 @@ apps/frappe/frappe/print/doctype/print_format/print_format.js +31,Make Default,T | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +401,Fieldtype {0} for {1} cannot be indexed,FieldType {0} para {1} não pode ser indexado | |||
DocType: Workflow State,Download,Baixar | |||
DocType: Blog Post,Blog Intro,Introdução do Blog | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} não é um ID de email válido | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} não é um ID de email válido | |||
DocType: DocField,Display Depends On,Visualização depende | |||
DocType: ToDo,Low,Baixa | |||
DocType: Event,Ref Type,Tipo de Ref. | |||
@@ -467,7 +467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Consulta | |||
DocType: DocType,Sort Order,Ordem de classificação | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Na Vista de Lista' não é permitida para o tipo {0} na linha {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Seu e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Seu e-mail Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Selecione o rótulo após o qual você deseja inserir novo campo. | |||
,Document Share Report,Relatório de Partilha de Documento | |||
DocType: User,Last Login,Última Sessão | |||
@@ -651,7 +651,7 @@ DocType: Page,Page HTML,Página HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Só podem ser criados subgrupos em subgrupos do tipo 'Grupo' | |||
DocType: Web Page,Header,Cabeçalho | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Coluna desconhecido: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Opcional: Enviar sempre para estas IDs. Cada ID de email numa nova linha | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Enviar sempre para estas IDs. Cada ID de email numa nova linha | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Os usuários com papel {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},A Instalar a App {0} | |||
DocType: Print Format,Custom Format,Formato Personalizado | |||
@@ -720,7 +720,7 @@ DocType: Workflow State,retweet,retuitar | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Atualizar o modelo e salve em formato CSV (Comma Valores Separados) formato antes de anexar. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Especifique o valor do campo | |||
DocType: Report,Disabled,Desativado | |||
DocType: Email Account,Always use Account's Email ID as Sender,Utilizar sempre o Email da Conta como Remetente | |||
DocType: Email Account,Always use Account's Email Address as Sender,Utilizar sempre o Email da Conta como Remetente | |||
DocType: Workflow State,eye-close,olho-fechado | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Por favor, selecione outro método de pagamento. {0} não suporta transações em moeda '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Configurações do provedor de OAuth | |||
@@ -863,7 +863,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,folha | |||
DocType: Portal Menu Item,Portal Menu Item,Item do Menu do Portal | |||
DocType: Email Account,Email ID,ID de Email | |||
DocType: Email Account,Email Address,ID de Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Inserir Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Uma lista de recursos que o aplicativo cliente terá acesso a depois que o usuário permita. <br> por exemplo, do projeto" | |||
DocType: Contact Us Settings,Query Options,Opções de Consulta | |||
@@ -899,7 +899,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notas: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Desconto | |||
DocType: DocShare,Document Name,Nome do Documento | |||
DocType: ToDo,Medium,Médio | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Por favor, verifique a sua ID de email" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Por favor, verifique a sua ID de email" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Não tem permissões suficientes para ver os links. | |||
DocType: Customize Form,Customize Form,Personalizar Formulário | |||
DocType: Currency,A symbol for this currency. For e.g. $,Um símbolo para esta moeda. Por ex: $ | |||
@@ -1090,7 +1090,7 @@ DocType: Workflow State,step-backward,passo para trás- | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{título_da_app} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Por favor, defina as teclas de acesso da Dropbox na config do seu site" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar este registo para permitir o envio para este endereço de email | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Usa o ID e-mail mencionado nesta conta como o Sender para todos os e-mails enviados usando esta conta. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Usa o ID e-mail mencionado nesta conta como o Sender para todos os e-mails enviados usando esta conta. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Só são os campos obrigatórios é que são necessários para efetuar novos registos. Se desejar pode eliminar as colunas não obrigatórias. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Não é possível atualizar evento | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,completar o pagamento | |||
@@ -1286,7 +1286,7 @@ DocType: Workflow State,bookmark,favorito | |||
DocType: Note,Note,Nota | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Reportar Erro | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,campo Timeline deve ser um nome de campo válido | |||
DocType: Email Account,Email Ids,IDs de Email | |||
DocType: Email Account,Email Addresses,IDs de Email | |||
DocType: Currency,Symbol,Símbolo | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Linha #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nova senha enviada por email | |||
@@ -1716,7 +1716,7 @@ DocType: Async Task,Queued,Em Fila | |||
DocType: PayPal Settings,Use Sandbox,Use Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Novo Formato de Impressão Personalizado | |||
DocType: DocPerm,Create,Criar | |||
DocType: Newsletter,A Lead with this email id should exist,Deve existir um Potencial Cliente com esta ID de email | |||
DocType: Newsletter,A Lead with this Email Address should exist,Deve existir um Potencial Cliente com esta ID de email | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtro Inválido: {0} | |||
DocType: Integration Service,Background Events,Eventos fundo | |||
DocType: Dropbox Settings,App Access Key,App Chave de Acesso | |||
@@ -1892,7 +1892,7 @@ DocType: Workflow Document State,Only Allow Edit For,Só Permitir Editação Par | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Seu nome | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,É Pasta | |||
DocType: Newsletter,Test Email Id,Email Id teste | |||
DocType: Newsletter,Test Email Address,Email Address teste | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Utilizador {0} não existe | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Se a imagem for selecionada, a cor será ignorada." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Conta de Email | |||
DocType: Workflow State,Download,Transferir | |||
DocType: Blog Post,Blog Intro,Intr. do Blog | |||
DocType: Async Task,Result,Resultado | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} não é uma ID de email válida | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} não é uma ID de email válida | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Ativar Relatório | |||
DocType: DocField,Display Depends On,A Visualização Depende De | |||
DocType: Web Page,Insert Code,Inserir Código | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Interogare | |||
DocType: DocType,Sort Order,Ordine de sortare | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""În vizualizare listă"" nu este permisã pentru tipul {0} în rândul {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,E-mail ID-ul dvs. | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,E-mail ID-ul dvs. | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Selectați eticheta după care doriți să inserați câmpul nou. | |||
,Document Share Report,Document Share Raporteaza | |||
DocType: User,Last Login,Ultima autentificare | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Pagina HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Noduri suplimentare pot fi create numai în noduri de tip 'Grup' | |||
DocType: Web Page,Header,Antet | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Coloana necunoscută: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Optional: trimite întotdeauna la aceste id-uri. Fiecare id-ul de e-mail pe un rând nou | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optional: trimite întotdeauna la aceste id-uri. Fiecare id-ul de e-mail pe un rând nou | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Utilizatorii cu rol de {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalarea App {0} | |||
DocType: Print Format,Custom Format,Format personalizat | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Actualizati-șablon și salva în CSV (Comma Valori separate) format înainte de a atașa. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Precizați valoarea câmpului | |||
DocType: Report,Disabled,Dezactivat | |||
DocType: Email Account,Always use Account's Email ID as Sender,Utilizați întotdeauna cont de identitate Email Sender ca | |||
DocType: Email Account,Always use Account's Email Address as Sender,Utilizați întotdeauna cont de identitate Email Sender ca | |||
DocType: Workflow State,eye-close,ochi-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Vă rugăm să selectați o altă metodă de plată. {0} nu acceptă tranzacții în valută "{1} ' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Setări Provider OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,frunze | |||
DocType: Portal Menu Item,Portal Menu Item,Meniu portal Articol | |||
DocType: Email Account,Email ID,Id Email | |||
DocType: Email Account,Email Address,Id Email | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Introduceți link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"O listă de resurse pe care App Clientul va avea acces la după ce utilizatorul permite acest lucru. <br> de exemplu, proiect" | |||
DocType: Contact Us Settings,Query Options,Opțiuni de interogare | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Observații | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Document Nume | |||
DocType: ToDo,Medium,Medie | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Vă rugăm să verificați ID-ul dvs. de e-mail | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Vă rugăm să verificați ID-ul dvs. de e-mail | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nu este suficient de permisiunea de a vedea link-uri. | |||
DocType: Customize Form,Customize Form,Particularizarea Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Un simbol pentru această monedă. De exemplu, $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,pas-înapoi | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Vă rugăm să setați tastele de acces Dropbox pe site-ul dvs. de configurare | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ștergeți acest record, pentru a permite trimiterea de la această adresă de e-mail" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Folosește ID-ul de e-mail menționată în acest cont ca Sender pentru toate e-mailurile trimise folosind acest cont. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Folosește ID-ul de e-mail menționată în acest cont ca Sender pentru toate e-mailurile trimise folosind acest cont. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Numai câmpurile obligatorii sunt necesare pentru noi recorduri. Puteți șterge coloane care nu sunt obligatorii, dacă doriți." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Imposibil de a actualiza eveniment | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,complet de plată | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,semn de carte | |||
DocType: Note,Note,Notă | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Eroare Raport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,câmp Cronologie trebuie să fie un nume_camp validă | |||
DocType: Email Account,Email Ids,Email Id-urile | |||
DocType: Email Account,Email Addresses,Email Address-urile | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Rând # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Noua parolă prin e-mail | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Coada de așteptare | |||
DocType: PayPal Settings,Use Sandbox,utilizare Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Nou format personalizat Print | |||
DocType: DocPerm,Create,Creează | |||
DocType: Newsletter,A Lead with this email id should exist,Un Lider cu acest id de e-mail ar trebui să existe | |||
DocType: Newsletter,A Lead with this Email Address should exist,Un Lider cu acest id de e-mail ar trebui să existe | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filtru invalid: {0} | |||
DocType: Integration Service,Background Events,Evenimente de fundal | |||
DocType: Dropbox Settings,App Access Key,Aplicația Cheia de acces | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Permiteți numai Editare pe | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Numele dumneavoastră | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Este Folder | |||
DocType: Newsletter,Test Email Id,Test de e-mail Id-ul | |||
DocType: Newsletter,Test Email Address,Test de e-mail Id-ul | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Utilizatorul {0} nu există | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Dacă este selectată a imaginii, culori vor fi ignorate." | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,Contul de e-mail | |||
DocType: Workflow State,Download,Descărcare fişier | |||
DocType: Blog Post,Blog Intro,Intro blog | |||
DocType: Async Task,Result,Rezultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nu este un id de email valid | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nu este un id de email valid | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Activați Raport | |||
DocType: DocField,Display Depends On,Depinde de afișare | |||
DocType: Web Page,Insert Code,Introduceți codul | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Запрос | |||
DocType: DocType,Sort Order,Порядок сортировки | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""Режим Просмотра Списком"" не допускается для типа {0} в строке {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Ваш E-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Ваш E-mail Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Выберите метку, после чего Вы хотите вставить новое поле." | |||
,Document Share Report,Документ Поделиться Пожаловаться | |||
DocType: User,Last Login,Последний Войти | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Страница HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Дальнейшие узлы могут быть созданы только под узлами типа «Группа» | |||
DocType: Web Page,Header,Шапка | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Неизвестный Колонка: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Дополнительно: Всегда отправить этих идентификаторов. Каждый электронный идентификатор на новую строку | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Дополнительно: Всегда отправить этих идентификаторов. Каждый электронный идентификатор на новую строку | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Пользователи с ролью {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Установка приложения {0} | |||
DocType: Print Format,Custom Format,Собственный формат | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,ретвит | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Обновить шаблон и сохранить в формате CSV (Comma отдельные значения) формат перед установкой. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Укажите значение поля | |||
DocType: Report,Disabled,Отключено | |||
DocType: Email Account,Always use Account's Email ID as Sender,"Всегда используйте счета Email ID, как Sender" | |||
DocType: Email Account,Always use Account's Email Address as Sender,"Всегда используйте счета Email Address, как Sender" | |||
DocType: Workflow State,eye-close,глаз близко | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Пожалуйста, выберите другой способ оплаты. {0} не поддерживает транзакции в валюте '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth провайдера Настройки | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,РТГ | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,лист | |||
DocType: Portal Menu Item,Portal Menu Item,Портал Пункт меню | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Вставить ссылку | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Список ресурсов, которые Клиент App будет иметь доступ к после того, как пользователь позволяет. <br> например, проект" | |||
DocType: Contact Us Settings,Query Options,Параметры запроса | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Замет | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Уценка | |||
DocType: DocShare,Document Name,Название документа | |||
DocType: ToDo,Medium,Средний | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Пожалуйста, проверьте ваш электронный идентификатор" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Пожалуйста, проверьте ваш электронный идентификатор" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,"Не хватает разрешения, чтобы увидеть ссылки." | |||
DocType: Customize Form,Customize Form,Настроить форму | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Символ для этой валюты. Например, $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,шаг назад | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Удалить эту запись, чтобы отправлять на этот адрес" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Использование указанного в этом счете в качестве отправителя для всех писем, отправляемых с помощью этого счета Email ID." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Использование указанного в этом счете в качестве отправителя для всех писем, отправляемых с помощью этого счета Email Address." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Только обязательные поля обязательны для новых записей. Вы можете удалить необязательные столбцы, если хотите." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Не удалось обновить событие | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Оплата Полная | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,закладка | |||
DocType: Note,Note,Заметка | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Сообщение об ошибке | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Сроки поле должно быть действительным имя_поля | |||
DocType: Email Account,Email Ids,E-mail идентификаторы | |||
DocType: Email Account,Email Addresses,E-mail идентификаторы | |||
DocType: Currency,Symbol,Символ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Строка #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Новый пароль выслан на email | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,В очереди | |||
DocType: PayPal Settings,Use Sandbox,Использование Песочница | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Новый пользовательский Формат печати | |||
DocType: DocPerm,Create,Создать | |||
DocType: Newsletter,A Lead with this email id should exist,Руководитеть с таким email должен существовать | |||
DocType: Newsletter,A Lead with this Email Address should exist,Руководитеть с таким email должен существовать | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Неверный Фильтр: {0} | |||
DocType: Integration Service,Background Events,Фоновые события | |||
DocType: Dropbox Settings,App Access Key,App Ключ доступа | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Только Разреши | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Ваше имя | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Папка | |||
DocType: Newsletter,Test Email Id,Тест электронный идентификатор | |||
DocType: Newsletter,Test Email Address,Тест электронный идентификатор | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Пользователь {0} не существует | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Если выбранное изображение, цвет будет игнорироваться." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Email Account | |||
DocType: Workflow State,Download,Скачать | |||
DocType: Blog Post,Blog Intro,Блог Intro | |||
DocType: Async Task,Result,Результат | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} не является допустимым E-mail ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не является допустимым E-mail ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Включить отчет | |||
DocType: DocField,Display Depends On,Показание зависит от | |||
DocType: Web Page,Insert Code,Вставить код | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,විමසුම් | |||
DocType: DocType,Sort Order,වර්ග නියමය | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'ලැයිස්තුව දැක්වීම' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,ඔබේ විද්යුත් අංකය | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,ඔබේ විද්යුත් අංකය | |||
DocType: Custom Field,Select the label after which you want to insert new field.,ඔබට නව ක්ෂේත්ර ඇතුළු කිරීමට අවශ්ය කළ පසු ලේබලය තෝරන්න. | |||
,Document Share Report,ලේඛන මෙම දැන්වීම වාර්තා කරන්න | |||
DocType: User,Last Login,පසුගිය ලොගින් වන්න | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,පිටුව HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,තවදුරටත් මංසල පමණි 'සමූහය වර්ගය මංසල යටතේ නිර්මාණය කිරීම ද කළ හැක | |||
DocType: Web Page,Header,ශීර්ෂකය | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},නොදන්නා තීරුව: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,"විකල්ප: සෑම විටම, මේවා හැඳුනුම් පත් කිරීමට යවන්න. නව පේළියක් එක් එක් විද්යුත් තැපැල් id" | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,"විකල්ප: සෑම විටම, මේවා හැඳුනුම් පත් කිරීමට යවන්න. නව පේළියක් එක් එක් විද්යුත් තැපැල් id" | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,භූමිකාව {0} සහිත පරිශීලකයන්: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},යෙදුම් {0} ස්ථාපනය | |||
DocType: Print Format,Custom Format,රේගු ආකෘතිය | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,සැකිල්ල යාවත්කාලීන හා CSV සුරැකීමට (කොමාවකින් වෙන් අගයන්) අනුයුක්ත පෙර ආකෘතිය. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ක්ෂේත්රයේ වටිනාකම නියම කරන්න | |||
DocType: Report,Disabled,ආබාධිත | |||
DocType: Email Account,Always use Account's Email ID as Sender,ගිණුම ගේ විද්යුත් හැඳුනුම්පත යවන්නාගේ ලෙස සෑම විටම භාවිතා | |||
DocType: Email Account,Always use Account's Email Address as Sender,ගිණුම ගේ විද්යුත් හැඳුනුම්පත යවන්නාගේ ලෙස සෑම විටම භාවිතා | |||
DocType: Workflow State,eye-close,ඇසින් සමීප | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',කරුණාකර වෙනත් ගෙවීමේ ක්රමයක් තෝරාගන්න. {0} මුදල් ගනුදෙනු සඳහා පහසුකම් සපයන්නේ නැත '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth සපයන්නා සැකසුම් | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,කොළ | |||
DocType: Portal Menu Item,Portal Menu Item,ද්වාරය මෙනු අයිතමය | |||
DocType: Email Account,Email ID,ඊ-තැපැල් හැඳුනුම්පත | |||
DocType: Email Account,Email Address,ඊ-තැපැල් හැඳුනුම්පත | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,ඇතුළු කරන්න ලින්ක් | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,පරිශීලක ඉඩ සලසන පසු සේවාලාභියා යෙදුම හැකියාව ලැබේ වන සම්පත් පිළිබඳ ලැයිස්තුවක්. <br> උදා: ව්යාපෘතිය | |||
DocType: Contact Us Settings,Query Options,විමසුම් විකල්ප | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,සටහ | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,අති | |||
DocType: DocShare,Document Name,ලේඛන නම | |||
DocType: ToDo,Medium,මධ්යම | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,ඔබගේ ඊ-තැපැල් ලිපිනය id සත්යාපනය කරන්න | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,ඔබගේ ඊ-තැපැල් ලිපිනය id සත්යාපනය කරන්න | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,සබැඳි බලන්න තරම් අවසර නැත. | |||
DocType: Customize Form,Customize Form,ආකෘතිය රිසිකරණය | |||
DocType: Currency,A symbol for this currency. For e.g. $,මෙම මුදල් සඳහා සංකේතය. උදා: $ සඳහා | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,පියවර පසුගාමී | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,ඔබේ වෙබ් අඩවිය config දී හෝ නාමාවලි ප්රවේශ යතුර තබා කරුණාකර | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,මෙම ඊ-තැපැල් ලිපිනය වෙත යැවීමට මෙම වාර්තාව මකන්න | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,මෙම ගිණුම භාවිතා යවන ලද සියළු විද්යුත් තැපැල් සඳහා යවන්නාගේ ලෙස මෙම ගිණුමේ සඳහන් විද්යුත් හැඳුනුම්පත භාවිතා කරයි. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,මෙම ගිණුම භාවිතා යවන ලද සියළු විද්යුත් තැපැල් සඳහා යවන්නාගේ ලෙස මෙම ගිණුමේ සඳහන් විද්යුත් හැඳුනුම්පත භාවිතා කරයි. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"නව වාර්තා අනිවාර්ය ක්ෂේත්ර පමණක් අවශ්ය වේ. ඔබ කැමති නම්, ඔබ-අනිවාර්ය නොවන තීරු මකා දැමිය හැකිය." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,අවස්ථාවට යාවත්කාල කිරීමට නොහැකි | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ගෙවීම් සම්පූර්ණ | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,පිටු සලකුණු කිරීම | |||
DocType: Note,Note,සටහන | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,දෝෂ වාර්තාව | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,කාල නියමය ක්ෂේත්රයේ වලංගු fieldname විය යුතුය | |||
DocType: Email Account,Email Ids,විද්යුත් හැඳුනුම් පත් | |||
DocType: Email Account,Email Addresses,විද්යුත් හැඳුනුම් පත් | |||
DocType: Currency,Symbol,සංකේතය | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ෙරෝ # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,නව මුරපදය ඊ-තැපැල් | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,පේළි | |||
DocType: PayPal Settings,Use Sandbox,වැලිපිල්ල භාවිතා | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,නව රේගු මුද්රණය ආකෘතිය | |||
DocType: DocPerm,Create,නිර්මාණය | |||
DocType: Newsletter,A Lead with this email id should exist,මෙම ඊ-තැපැල් id සහිත ඊයම් පැවතිය යුතුය | |||
DocType: Newsletter,A Lead with this Email Address should exist,මෙම ඊ-තැපැල් id සහිත ඊයම් පැවතිය යුතුය | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},වලංගු නොවන පෙරහන: {0} | |||
DocType: Integration Service,Background Events,පසුබිම සිදුවීම් | |||
DocType: Dropbox Settings,App Access Key,යෙදුම ප්රවේශ යතුර | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,පමණක් ඉඩ ද | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ඔබගේ නම | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ෆෝල්ඩරය වේ | |||
DocType: Newsletter,Test Email Id,ටෙස්ට් විද්යුත් අංකය | |||
DocType: Newsletter,Test Email Address,ටෙස්ට් විද්යුත් අංකය | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,පරිශීලක {0} නොපවතියි | |||
DocType: Website Theme,"If image is selected, color will be ignored.","රූපය තෝරාගෙන තිබේ නම්, වර්ණ නොසලකා හරිනු ලැබේ." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ඊ-තැපැල් ගිණුම | |||
DocType: Workflow State,Download,බාගත | |||
DocType: Blog Post,Blog Intro,බ්ලොග් හැදින්වීමේ | |||
DocType: Async Task,Result,ප්රතිඵල | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} වලංගු ඊ-id නොවේ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} වලංගු ඊ-id නොවේ | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,වාර්තාව සබල කරන්න | |||
DocType: DocField,Display Depends On,ප්රදර්ශනය මත රඳා පවතී | |||
DocType: Web Page,Insert Code,ඇතුළු කරන්න සංග්රහයේ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Dotaz | |||
DocType: DocType,Sort Order,Pořadí řazení | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'V zozname' nie je dovolené pre typ {0} na riadku {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Váš e-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Váš e-mail Id | |||
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é prihlásenie | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML kód stránky | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" | |||
DocType: Web Page,Header,Záhlavie | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Neznámý sloupec: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Volitelné: Vždy zaslat na tyto id. Každé email id na novém řádku | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Volitelné: Vždy zaslat na tyto id. Každé Email Address na novém řádku | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Uživatelé s rolí {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Inštalácia aplikácie {0} | |||
DocType: Print Format,Custom Format,Vlastní formát | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Aktualizujte šablony a uložit ve formátu CSV (čárkami různé hodnoty) ve formátu před připojením. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Zadejte hodnotu pole | |||
DocType: Report,Disabled,Vypnuto | |||
DocType: Email Account,Always use Account's Email ID as Sender,Vždy používajte účtu e-mailovú ID ako odosielateľ | |||
DocType: Email Account,Always use Account's Email Address as Sender,Vždy používajte účtu e-mailovú ID ako odosielateľ | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Prosím, vyberte iný spôsob platby. {0} nepodporuje transakcie v mene '{1}'" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Nastavenie OAuth Poskytovateľ | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,Rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,list | |||
DocType: Portal Menu Item,Portal Menu Item,portál Položka | |||
DocType: Email Account,Email ID,Email Id | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Vložit odkaz | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Zoznam zdrojov, ktoré Klient App bude mať prístup k potom, čo ho užívateľ dovolí. <br> napríklad projekt" | |||
DocType: Contact Us Settings,Query Options,Možnosti dotazu | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Poznámky: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Názov dokumentu | |||
DocType: ToDo,Medium,Střední | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Overte prosím svoju e-mailovú id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Overte prosím svoju e-mailovú id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Nemáte dostatečná oprávnění pro zobrazení odkazů. | |||
DocType: Customize Form,Customize Form,Přizpůsobit formulář | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Symbol této měny, např. $" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,step-backward | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Zmazať tento záznam povoliť odosielanie na túto e-mailovú adresu | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Používa E-mail ID uvedené v tomto účte ako odosielateľ všetkých e-mailov odoslaných pomocou tohto účtu. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Používa E-mail ID uvedené v tomto účte ako odosielateľ všetkých e-mailov odoslaných pomocou tohto účtu. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Nie je možné aktualizovať udalosť | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,platba Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,záložka | |||
DocType: Note,Note,Poznámka | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Časová os poľa musí byť platný fieldname | |||
DocType: Email Account,Email Ids,Email IDS | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Řádek #{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nové heslo zaslané emailom | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Vo fronte | |||
DocType: PayPal Settings,Use Sandbox,použitie Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New Custom Print Format | |||
DocType: DocPerm,Create,Vytvořit | |||
DocType: Newsletter,A Lead with this email id should exist,Obchodná iniciatíva s touto emailovou adresou by už mala existovať | |||
DocType: Newsletter,A Lead with this Email Address should exist,Obchodná iniciatíva s touto emailovou adresou by už mala existovať | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Neplatný filtr: {0} | |||
DocType: Integration Service,Background Events,pozadia Events | |||
DocType: Dropbox Settings,App Access Key,Access Key App | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Je povolenou pouze upravova | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tvoje meno | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Je Folder | |||
DocType: Newsletter,Test Email Id,Testovací Email Id | |||
DocType: Newsletter,Test Email Address,Testovací Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Uživatel: {0} neexistuje | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ak je vybratý obraz, bude farba ignorované." | |||
@@ -2245,7 +2245,7 @@ DocType: Communication,Email Account,E-mailový účet | |||
DocType: Workflow State,Download,Stáhnout | |||
DocType: Blog Post,Blog Intro,Úvod blogu | |||
DocType: Async Task,Result,Výsledok | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} není platné id emailu | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} není platné id emailu | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Zapnout report | |||
DocType: DocField,Display Depends On,Zobrazenie závisí od | |||
DocType: Web Page,Insert Code,Vložit kód | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Poizvedba | |||
DocType: DocType,Sort Order,Sort Order | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"V pogledu seznama" ni dovoljen za tip {0} v vrstici {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,E-ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,E-ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Izberite oznako, po kateri želite vstaviti novo polje." | |||
,Document Share Report,Dokument Share Report | |||
DocType: User,Last Login,Zadnja prijava | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Nadaljnje vozlišča lahko ustvari samo na podlagi tipa vozlišča "skupina" | |||
DocType: Web Page,Header,Glava | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Neznan Kolumna: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Neobvezno: Vedno pošljite na teh ids. Vsak email id na novo vrstico | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Neobvezno: Vedno pošljite na teh ids. Vsak Email Address na novo vrstico | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Uporabniki z vlogo {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Namestitev App {0} | |||
DocType: Print Format,Custom Format,Oblika po meri | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,Retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Posodobite predlogo in shranite v CSV (z vejico ločene vrednosti) formatu pred pritrditvijo. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Določite vrednost na področju | |||
DocType: Report,Disabled,Onemogočeno | |||
DocType: Email Account,Always use Account's Email ID as Sender,Vedno uporabljajte Računa Email ID kot Sender | |||
DocType: Email Account,Always use Account's Email Address as Sender,Vedno uporabljajte Računa Email Address kot Sender | |||
DocType: Workflow State,eye-close,eye-blizu | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Izberite drug način plačila. {0} ne podpira transakcije v valuti '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Nastavitve Ponudnik OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,leaf | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,E-pošta ID | |||
DocType: Email Account,Email Address,E-pošta ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Vstavi povezavo | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Seznam virov, ki jih bo imela stranka App dostop do ko uporabnik to dovoli. <br> na primer projekt" | |||
DocType: Contact Us Settings,Query Options,Možnosti poizvedbe | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Opombe: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Ime dokument | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Prosimo, preverite svoj email id" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Prosimo, preverite svoj Email Address" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Ni dovolj dovoljenja za ogled povezav. | |||
DocType: Customize Form,Customize Form,Prilagodite obrazec | |||
DocType: Currency,A symbol for this currency. For e.g. $,Simbol za to valuto. Na primer $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,korak nazaj | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Prosim, nastavite tipke za dostop Dropbox v vašem mestu config" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ta zapis omogoča pošiljanje na ta e-poštni naslov | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Uporablja Email ID omenjen v tem računu kot Sender za vse e-poštnih sporočil, poslanih z uporabo tega računa." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Uporablja Email Address omenjen v tem računu kot Sender za vse e-poštnih sporočil, poslanih z uporabo tega računa." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obvezna polja so potrebni za nove zapise. Lahko izbrišete neobvezujočih stolpce, če želite." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Ne morem posodobiti dogodek | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,plačilo Complete | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,zaznamek | |||
DocType: Note,Note,Zapisek | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Prijavi napako | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Časovnica polje mora biti veljaven fieldname | |||
DocType: Email Account,Email Ids,E-pošta ID-ji | |||
DocType: Email Account,Email Addresses,E-pošta ID-ji | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Vrstica # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Novo geslo po e-pošti | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,V čakalni vrsti | |||
DocType: PayPal Settings,Use Sandbox,uporaba Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,New meri Print Format | |||
DocType: DocPerm,Create,Ustvari | |||
DocType: Newsletter,A Lead with this email id should exist,Vodilno vlogo pri tem email id morala obstajati | |||
DocType: Newsletter,A Lead with this Email Address should exist,Vodilno vlogo pri tem Email Address morala obstajati | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Neveljaven Filter: {0} | |||
DocType: Integration Service,Background Events,Ozadje Dogodki | |||
DocType: Dropbox Settings,App Access Key,App ključ za dostop | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,"Dovoli samo uredi," | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tvoje ime | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Je Folder | |||
DocType: Newsletter,Test Email Id,Testna Email Id | |||
DocType: Newsletter,Test Email Address,Testna Email Address | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Uporabnik {0} ne obstaja | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Če je izbrana slika, bo barva prezreti." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email račun | |||
DocType: Workflow State,Download,Prenos | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Rezultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ni veljaven email id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ni veljaven Email Address | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Omogoči poročilo | |||
DocType: DocField,Display Depends On,Prikaz je odvisen od | |||
DocType: Web Page,Insert Code,Vstavite Code | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Pyetje | |||
DocType: DocType,Sort Order,Rendit | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"Në Lista View" nuk lejohet për llojin {0} në rresht {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Email Juaj Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Email Juaj Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Zgjidhni etiketën pasi që ju doni të futur fushë të re. | |||
,Document Share Report,Dokumenti Shpërndaj Raporto | |||
DocType: User,Last Login,Kycja e fundit | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Faqe HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Nyjet e mëtejshme mund të krijohet vetëm në nyjet e tipit 'Grupit' | |||
DocType: Web Page,Header,Arkitra | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Kolona Panjohur: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Fakultativ: Gjithmonë dërgoni në këto kartat e identitetit. Çdo id email në një rresht të ri | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Fakultativ: Gjithmonë dërgoni në këto kartat e identitetit. Çdo id email në një rresht të ri | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Përdoruesit me rolin {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Instalimi App {0} | |||
DocType: Print Format,Custom Format,Format Custom | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Update template dhe për të shpëtuar në CSV (Comma Vlerat Individuale) format para se të bashkëngjitur. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Specifikoni vlerën e fushës | |||
DocType: Report,Disabled,I paaftë | |||
DocType: Email Account,Always use Account's Email ID as Sender,Gjithmonë përdorni llogarinë e Email ID si Dërguesit | |||
DocType: Email Account,Always use Account's Email Address as Sender,Gjithmonë përdorni llogarinë e Email Address si Dërguesit | |||
DocType: Workflow State,eye-close,sy-ngushtë | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Ju lutem zgjidhni një tjetër metodë e pagesës. {0} nuk mbështet transaksionet në monedhë të '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Cilësimet OAuth Provider | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,fletë | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Fut Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Një listë e burimeve të cilat Klienti App do të kenë qasje për të, pasi përdoruesit e lejon atë. <br> p.sh. projekti" | |||
DocType: Contact Us Settings,Query Options,Query Options | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Shënime: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokumenti Emri | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Ju lutem verifikoni id tuaj e-mail | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Ju lutem verifikoni id tuaj e-mail | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Jo leje të mjaftueshme për të parë lidhjet. | |||
DocType: Customize Form,Customize Form,Customize Form | |||
DocType: Currency,A symbol for this currency. For e.g. $,Një simbol për këtë monedhë. Për shembull $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,hap prapa | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Ju lutemi të vendosur çelësat Dropbox akses ne faqen config tuaj | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Fshije këtë rekord për të lejuar dërgimin në këtë adresë e-mail | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Përdor Email ID e përmendur në këtë llogari sa Dërguesit për të gjitha emailet e dërguara përdorur këtë llogari. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Përdor Email Address e përmendur në këtë llogari sa Dërguesit për të gjitha emailet e dërguara përdorur këtë llogari. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Vetëm Fushat e detyrueshme janë të nevojshme për të dhënat e reja. Ju mund të fshini kolona jo-detyrueshme në qoftë se ju dëshironi. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Në pamundësi për të rinovuar ngjarje | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Complete pagesa | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,Shënim | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Gabim Raport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Fusha Timeline duhet të jetë një fieldname vlefshme | |||
DocType: Email Account,Email Ids,Email IDS | |||
DocType: Email Account,Email Addresses,Email Addresses | |||
DocType: Currency,Symbol,Simbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Row # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Fjalëkalimi i ri me email | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,Queued | |||
DocType: PayPal Settings,Use Sandbox,Përdorimi Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Re Format Custom Print | |||
DocType: DocPerm,Create,Krijoj | |||
DocType: Newsletter,A Lead with this email id should exist,Një Lead me këtë id email duhet të ekzistojë | |||
DocType: Newsletter,A Lead with this Email Address should exist,Një Lead me këtë id email duhet të ekzistojë | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Filter pavlefshme: {0} | |||
DocType: Integration Service,Background Events,Historiku Events | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Vetëm Lejo Edit për | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Emri juaj | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Është Folder | |||
DocType: Newsletter,Test Email Id,Test Email Id | |||
DocType: Newsletter,Test Email Address,Test Email Address | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Përdoruesi {0} nuk ekziston | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Nëse imazhi është zgjedhur, ngjyra do të injorohen." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email Llogaria | |||
DocType: Workflow State,Download,Shkarko | |||
DocType: Blog Post,Blog Intro,Blog Intro | |||
DocType: Async Task,Result,Rezultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} nuk është një ID e vlefshme email | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nuk është një ID e vlefshme email | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Aktivizo Raportin | |||
DocType: DocField,Display Depends On,Display varet | |||
DocType: Web Page,Insert Code,Fut Kodi | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Питање | |||
DocType: DocType,Sort Order,сортировку | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},""" В Список"" не допускается для типа {0} в строке {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Ваш Емаил ИД | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Ваш Емаил ИД | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Изаберите ознаку након чега желите да убаците ново поље. | |||
,Document Share Report,Документ Подели Пријави | |||
DocType: User,Last Login,Последњи Улазак | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Страна ХТМЛ | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Даље чворови могу бити само створена под ' групе' типа чворова | |||
DocType: Web Page,Header,Заглавље | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Неизвестный Колонка: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Опционо: Увек пошаљите ове ИД. Сваки емаил ид на нови ред | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Опционо: Увек пошаљите ове ИД. Сваки емаил ид на нови ред | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Пользователи с ролью {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Инсталирање апликација {0} | |||
DocType: Print Format,Custom Format,Прилагођени Формат | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,ретвеет | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Упдате предложак и сачувајте у ЦСВ (Цомма посебних вредности) формат пре постављања. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Одређивање вредности на терену | |||
DocType: Report,Disabled,Онеспособљен | |||
DocType: Email Account,Always use Account's Email ID as Sender,Увек користите обзир Емаил ИД као Сендер | |||
DocType: Email Account,Always use Account's Email Address as Sender,Увек користите обзир Емаил ИД као Сендер | |||
DocType: Workflow State,eye-close,ока близу | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Молимо одаберите други начин плаћања. {0} не подржава трансакције у валути '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,ОАутх Провидер Подешавања | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,ргт | |||
DocType: Email Account,Sendgrid,Сендгрид | |||
DocType: Workflow State,leaf,лист | |||
DocType: Portal Menu Item,Portal Menu Item,Портал Ставка менија | |||
DocType: Email Account,Email ID,Е-маил ИД | |||
DocType: Email Account,Email Address,Е-маил ИД | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Убаци линк | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Листа средстава које ће клијент апликација има приступ након што корисник то дозвољава. <br> нпр пројекат | |||
DocType: Contact Us Settings,Query Options,Упит Опције | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Напом | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Маркдовн | |||
DocType: DocShare,Document Name,Документ Име | |||
DocType: ToDo,Medium,Средњи | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Молимо Вас да потврдите свој емаил ид | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Молимо Вас да потврдите свој емаил ид | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Није довољно дозволу да виде линкове. | |||
DocType: Customize Form,Customize Form,Прилагодите формулар | |||
DocType: Currency,A symbol for this currency. For e.g. $,Симбол за ову валуту. За пример $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,корак-назад | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ app_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Обриши овај запис како би се омогућило слање на ову емаил адресу | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Користи Емаил ИД поменути у овом рачуну као пошиљалац за све емаил поруке послате преко овог рачуна. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Користи Емаил ИД поменути у овом рачуну као пошиљалац за све емаил поруке послате преко овог рачуна. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само обавезна поља су неопходни за нове евиденције. Можете обрисати необавезне колоне ако желите. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Није могуће ажурирати догађај | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,plaćanje Комплетна | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,боокмарк | |||
DocType: Note,Note,Приметити | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Грешка Извештај | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Тимелине поље мора бити валидан фиелднаме | |||
DocType: Email Account,Email Ids,Е-маил Идс | |||
DocType: Email Account,Email Addresses,Е-маил Идс | |||
DocType: Currency,Symbol,Симбол | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Ред # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Новый пароль по электронной почте | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Куеуед | |||
DocType: PayPal Settings,Use Sandbox,Употреба Песак | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Нови Прилагођени Принт Формат | |||
DocType: DocPerm,Create,Створити | |||
DocType: Newsletter,A Lead with this email id should exist,Олово са овом е ид треба да постоје | |||
DocType: Newsletter,A Lead with this Email Address should exist,Олово са овом е ид треба да постоје | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Неверный Фильтр: {0} | |||
DocType: Integration Service,Background Events,бацкгроунд догађаји | |||
DocType: Dropbox Settings,App Access Key,Апп Приступни тастер | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Само Дозволи Е | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Твоје име | |||
DocType: DocType,InnoDB,ИнноДБ | |||
DocType: File,Is Folder,Да ли је Папка | |||
DocType: Newsletter,Test Email Id,Тест маил Ид | |||
DocType: Newsletter,Test Email Address,Тест маил Ид | |||
DocType: DocType,DocType,ДОЦТИПЕ | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Пользователь {0} не существует | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Ако је изабрана слика, боја ће бити игнорисан." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Емаил рачуна | |||
DocType: Workflow State,Download,скачать | |||
DocType: Blog Post,Blog Intro,Блог Интро | |||
DocType: Async Task,Result,Резултат | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} не является допустимым ID E-mail | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не является допустимым ID E-mail | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Омогући Репорт | |||
DocType: DocField,Display Depends On,Екрану зависе од | |||
DocType: Web Page,Insert Code,Инсерт Цоде | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Query | |||
DocType: DocType,Sort Order,Sorteringsordning | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""I listvy"" inte tillåtet för typ {0} i rad {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Din e-id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Din e-id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Välj etiketten efter vilken du vill infoga nya fält. | |||
,Document Share Report,Dokument Dela Rapport | |||
DocType: User,Last Login,Senaste inloggning | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Page HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Ytterligare noder kan endast skapas under "grupp" typ noder | |||
DocType: Web Page,Header,Header | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Okänd Kolumn: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Tillval: Skicka alltid dessa ids. Varje e-id på en ny rad | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Tillval: Skicka alltid dessa ids. Varje e-id på en ny rad | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Användare med rollen {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Installera App {0} | |||
DocType: Print Format,Custom Format,Anpassad Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Uppdatera mallen och spara i CSV (Comma separata värden) format innan monteringen. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Ange värdet av fältet | |||
DocType: Report,Disabled,Inaktiverad | |||
DocType: Email Account,Always use Account's Email ID as Sender,Använd alltid konto Email ID som avsändare | |||
DocType: Email Account,Always use Account's Email Address as Sender,Använd alltid konto Email Address som avsändare | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Välj en annan betalningsmetod. {0} stöder inte transaktioner i sedlar "{1}" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Inställningar | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,blad | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menyobjekt | |||
DocType: Email Account,Email ID,E-post-ID | |||
DocType: Email Account,Email Address,E-post-ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Infoga länk | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,En lista över resurser som Kunden App kommer att ha tillgång till efter att användaren tillåter det. <br> t.ex. projektet | |||
DocType: Contact Us Settings,Query Options,Fråge Alternativ | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Anmärkning | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Dokumentnamn | |||
DocType: ToDo,Medium,Medium | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Kontrollera din e-post id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Kontrollera din e-post id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Inte tillräcklig behörighet att se länkar. | |||
DocType: Customize Form,Customize Form,Anpassa Formulär | |||
DocType: Currency,A symbol for this currency. For e.g. $,En symbol för denna valuta. För t.ex. $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,steg bakåt | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Ställ Dropbox snabbtangenter på din sida config | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Radera denna post för att tillåta sändning till denna e-postadress | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Använder e-ID som nämns i detta konto som avsändare för all epost som skickas med det här kontot. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Använder e-ID som nämns i detta konto som avsändare för all epost som skickas med det här kontot. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Endast obligatoriska fält är nödvändiga för nya register. Du kan ta bort icke-obligatoriska kolumner om du vill. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Det går inte att uppdatera händelse | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,betalning Komplett | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,bokmärke | |||
DocType: Note,Note,Notera | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Felrapport | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Tidslinje fält måste vara en giltig fältnamn | |||
DocType: Email Account,Email Ids,E-post Ids | |||
DocType: Email Account,Email Addresses,E-post Ids | |||
DocType: Currency,Symbol,Symbol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Rad # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Nytt lösenord mailat | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,I kö | |||
DocType: PayPal Settings,Use Sandbox,användning Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Ny anpassat Utskriftsformat | |||
DocType: DocPerm,Create,Skapa | |||
DocType: Newsletter,A Lead with this email id should exist,En start med denna epost-id ska finnas | |||
DocType: Newsletter,A Lead with this Email Address should exist,En start med denna epost-id ska finnas | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ogiltig Filter: {0} | |||
DocType: Integration Service,Background Events,bakgrunds Händelser | |||
DocType: Dropbox Settings,App Access Key,App Tillgång Key | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Endast Tillåt Redigera fö | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Ditt namn | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Är Mapp | |||
DocType: Newsletter,Test Email Id,Test e-post ID | |||
DocType: Newsletter,Test Email Address,Test e-post ID | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Användare {0} inte existerar | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Om bilden är vald, kommer färgen att ignoreras." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,Email Konto | |||
DocType: Workflow State,Download,Hämta | |||
DocType: Blog Post,Blog Intro,Blogg Intro | |||
DocType: Async Task,Result,Resultat | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} är inte ett giltig epost-id | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} är inte ett giltig epost-id | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Aktivera rapport | |||
DocType: DocField,Display Depends On,Visas beror på | |||
DocType: Web Page,Insert Code,Infoga kod | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,வினா | |||
DocType: DocType,Sort Order,வரிசையை | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},' பட்டியல் பார்வையில் ' அனுமதி இல்லை வகை {0} வரிசையில் {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,உங்கள் மின்னஞ்சல் ஐடி | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,உங்கள் மின்னஞ்சல் ஐடி | |||
DocType: Custom Field,Select the label after which you want to insert new field.,நீங்கள் புதிய துறையில் சேர்க்க வேண்டும் பின்னர் லேபிள் தேர்வு. | |||
,Document Share Report,ஆவண பகிர் அறிக்கை | |||
DocType: User,Last Login,கடைசியாக உட்சென்ற தேதி | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,பக்கம் HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,மேலும் முனைகளில் ஒரே 'குரூப்' வகை முனைகளில் கீழ் உருவாக்கப்பட்ட | |||
DocType: Web Page,Header,தலை கீழாக நீரில் மூழ்குதல் | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},தெரியாத வரிசை : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,விருப்பப்பட்ட: எப்போதும் இந்த ஐடிகள் அனுப்ப. ஒரு புதிய வரிசையில் ஒவ்வொரு மின்னஞ்சல் ஐடி | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,விருப்பப்பட்ட: எப்போதும் இந்த ஐடிகள் அனுப்ப. ஒரு புதிய வரிசையில் ஒவ்வொரு மின்னஞ்சல் ஐடி | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,பங்கு பயனர்கள் {0} : | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},நிறுவுதல் ஆப் {0} | |||
DocType: Print Format,Custom Format,விருப்ப வடிவம் | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,மறு ட்வீட் செய்க | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,டெம்ப்ளேட் புதுப்பிக்கவும் மற்றும் இணைக்கிறேன் முன் CSV இல் வடிவமைப்பில் (Comma தனி மதிப்புகள்) சேமிக்க. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,துறையில் மதிப்பு குறிப்பிடவும் | |||
DocType: Report,Disabled,முடக்கப்பட்டது | |||
DocType: Email Account,Always use Account's Email ID as Sender,எப்போதும் அனுப்புநர் என கணக்கின் மின்னஞ்சல் ஐடி பயன்படுத்த | |||
DocType: Email Account,Always use Account's Email Address as Sender,எப்போதும் அனுப்புநர் என கணக்கின் மின்னஞ்சல் ஐடி பயன்படுத்த | |||
DocType: Workflow State,eye-close,கண் நெருக்கமான | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',மற்றொரு கட்டண முறையை தேர்ந்தெடுக்கவும். {0} நாணய பரிவர்த்தனையில் ஆதரிக்கவில்லை '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,அறிந்திருந்தால் வழங்குநர் அமைப்புகள் | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,இலை | |||
DocType: Portal Menu Item,Portal Menu Item,போர்டல் மெனு உருப்படி | |||
DocType: Email Account,Email ID,மின்னஞ்சல் ஐடி | |||
DocType: Email Account,Email Address,மின்னஞ்சல் ஐடி | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,வாசகன் | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,வாடிக்கையாளர் பயன்பாட்டை பயனர் அதை அனுமதிக்கிறது பின்னர் அணுக வேண்டும் இது வளங்களை பட்டியல். <br> எ.கா. திட்டம் | |||
DocType: Contact Us Settings,Query Options,கேள்வி விருப்பங்கள் | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,குற | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ஆவண பெயர் | |||
DocType: ToDo,Medium,ஊடகம் | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,உங்கள் மின்னஞ்சல் ஐடி சரிபார்க்கவும் | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,உங்கள் மின்னஞ்சல் ஐடி சரிபார்க்கவும் | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,இல்லை இணைப்புகளை பார்க்க போதுமான அனுமதி. | |||
DocType: Customize Form,Customize Form,படிவம் தனிப்பயனாக்கு | |||
DocType: Currency,A symbol for this currency. For e.g. $,இந்த நாணயம் ஒரு குறியீடு. உதாரணமாக $ க்கு | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,படி-பின்தங்கிய | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ app_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,உங்கள் தளத்தில் கட்டமைப்பு டிராப்பாக்ஸ் அணுகல் விசைகள் அமைக்கவும் | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,இந்த மின்னஞ்சல் முகவரிக்கு அனுப்பும் அனுமதிக்க இந்தப் பதிவை நீக்கு | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,இந்த கணக்கை பயன்படுத்தி அனுப்பப்படும் அனைத்து மின்னஞ்சல்கள் அனுப்புநர் இந்த கணக்கு குறிப்பிடப்பட்டுள்ளது மின்னஞ்சல் ஐடி பயன்படுத்துகிறது. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,இந்த கணக்கை பயன்படுத்தி அனுப்பப்படும் அனைத்து மின்னஞ்சல்கள் அனுப்புநர் இந்த கணக்கு குறிப்பிடப்பட்டுள்ளது மின்னஞ்சல் ஐடி பயன்படுத்துகிறது. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"ஒரே கட்டாய துறைகள், புதிய பதிவுகள் அவசியம். நீங்கள் விரும்பினால் நீங்கள் அல்லாத கட்டாய பத்திகள் நீக்க முடியும்." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,நிகழ்வை முடியவில்லை | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,கொடுப்பனவு முழுமையான | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,புக்மார்க் | |||
DocType: Note,Note,குறிப்பு | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,பிழை அறிக்கை | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,காலக்கெடு புலத்தில் செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் | |||
DocType: Email Account,Email Ids,மின்னஞ்சல் ஐடிகள் | |||
DocType: Email Account,Email Addresses,மின்னஞ்சல் ஐடிகள் | |||
DocType: Currency,Symbol,அடையாளம் | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,ரோ # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,புதிய கடவுச்சொல்லை மின்னஞ்சல் | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,வரிசைப்படுத்திய | |||
DocType: PayPal Settings,Use Sandbox,சாண்ட்பாக்ஸினைப் பயன்படுத்தவும் | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,புதிய தனிபயன் அச்சு வடிவம் | |||
DocType: DocPerm,Create,உருவாக்கு | |||
DocType: Newsletter,A Lead with this email id should exist,வாடிக்கையாளர் மின்னஞ்சல் முகவரி ஏற்கனவே பெறப்பட்டுள்ளது | |||
DocType: Newsletter,A Lead with this Email Address should exist,வாடிக்கையாளர் மின்னஞ்சல் முகவரி ஏற்கனவே பெறப்பட்டுள்ளது | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},செல்லாத வடிகட்டவும்: {0} | |||
DocType: Integration Service,Background Events,பின்னணி நிகழ்வுகள் | |||
DocType: Dropbox Settings,App Access Key,ஆப் அணுகல் விசை | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,மட்டும் த | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,உங்கள் பெயர் | |||
DocType: DocType,InnoDB,InnoDB என்ற | |||
DocType: File,Is Folder,அடைவு | |||
DocType: Newsletter,Test Email Id,டெஸ்ட் மின்னஞ்சல் விலாசம் | |||
DocType: Newsletter,Test Email Address,டெஸ்ட் மின்னஞ்சல் விலாசம் | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,பயனர் {0} இல்லை | |||
DocType: Website Theme,"If image is selected, color will be ignored.","படத்தை தேர்ந்தெடுக்கப்பட்டால், நிறம் மட்டும் புறக்கணிக்கப்படும்." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,மின்னஞ்சல் கணக் | |||
DocType: Workflow State,Download,பதிவிறக்கம் | |||
DocType: Blog Post,Blog Intro,வலைப்பதிவு அறிமுகம் | |||
DocType: Async Task,Result,முடிவு | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} சரியான மின்னஞ்சல் ஐடி அல்ல | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} சரியான மின்னஞ்சல் ஐடி அல்ல | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,இயக்கு | |||
DocType: DocField,Display Depends On,காட்சி பொறுத்தது | |||
DocType: Web Page,Insert Code,கோட் செருக | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,ప్రశ్న | |||
DocType: DocType,Sort Order,క్రమబద్ధీకరణ క్రమం | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'లిస్ట్ వ్యూ' వరుసగా రకం {0} అనుమతించబడలేదు {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,మీ టపా | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,మీ టపా | |||
DocType: Custom Field,Select the label after which you want to insert new field.,మీరు కొత్త రంగంలో ఇన్సర్ట్ కోరుకుంటున్న తర్వాత లేబుల్ ఎంచుకోండి. | |||
,Document Share Report,డాక్యుమెంట్ Share నివేదిక | |||
DocType: User,Last Login,చివరి లాగిన్ | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,పేజ్ HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,మరింత నోడ్స్ మాత్రమే 'గ్రూప్' రకం నోడ్స్ కింద రూపొందించినవారు చేయవచ్చు | |||
DocType: Web Page,Header,శీర్షిక | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},తెలియని కాలమ్: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ఐచ్ఛిక: ఎల్లప్పుడూ లో ఈ ఐడిలు కు పంపండి. ఒక కొత్త వరుసగా ప్రతి టపా | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ఐచ్ఛిక: ఎల్లప్పుడూ లో ఈ ఐడిలు కు పంపండి. ఒక కొత్త వరుసగా ప్రతి టపా | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,పాత్ర {0} తో వినియోగదారులు: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},సంస్థాపిస్తోంది App {0} | |||
DocType: Print Format,Custom Format,కస్టమ్ ఫార్మాట్ | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,మళ్ళీ ట్వీట్ | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,టెంప్లేట్ అప్డేట్ మరియు అటాచ్ ముందు CSV ఫార్మాట్ (కామాతో ప్రత్యేక విలువలు) సేవ్. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ఫీల్డ్ యొక్క విలువను | |||
DocType: Report,Disabled,వికలాంగుల | |||
DocType: Email Account,Always use Account's Email ID as Sender,ఎల్లప్పుడూ పంపినవారు గా ఖాతా యొక్క ఇమెయిల్ ID ఉపయోగించడానికి | |||
DocType: Email Account,Always use Account's Email Address as Sender,ఎల్లప్పుడూ పంపినవారు గా ఖాతా యొక్క ఇమెయిల్ ID ఉపయోగించడానికి | |||
DocType: Workflow State,eye-close,కంటికి దగ్గరగా | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',దయచేసి మరొక చెల్లింపు విధానాన్ని ఎంచుకోండి. {0} కరెన్సీలో లావాదేవీలు మద్దతు లేదు '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,ను ప్రొవైడర్ సెట్టింగులు | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,ఆకు | |||
DocType: Portal Menu Item,Portal Menu Item,పోర్టల్ మెను ఐటెమ్ | |||
DocType: Email Account,Email ID,ఇమెయిల్ ID | |||
DocType: Email Account,Email Address,ఇమెయిల్ ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,లింక్ ను ఇన్సర్ట్ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,క్లయింట్ అనువర్తనం వినియోగదారు తర్వాత అది అనుమతిస్తుంది ప్రాప్యత కలిగి ఉంటుంది ఇది వనరుల జాబితా. <br> ఉదా ప్రాజెక్ట్ | |||
DocType: Contact Us Settings,Query Options,ప్రశ్న ఎంపికల్లో | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,గమన | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,డాక్యుమెంట్ పేరు | |||
DocType: ToDo,Medium,మీడియం | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,మీ మెయిల్ ఐడి ధృవీకరించండి | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,మీ మెయిల్ ఐడి ధృవీకరించండి | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,లింకులు చూడటానికి తగినంత అనుమతి. | |||
DocType: Customize Form,Customize Form,ఫారం అనుకూలీకరించండి | |||
DocType: Currency,A symbol for this currency. For e.g. $,ఈ కరెన్సీ కోసం ఒక చిహ్నం. ఉదా $ కోసం | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,దశల వెనుకబడిన | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,మీ సైట్ config డ్రాప్బాక్స్ యాక్సెస్ కీలు సెట్ చెయ్యండి | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ఈ ఈమెయిల్ చిరునామాకు పంపడం అనుమతిస్తుంది ఈ రికార్డ్ తొలగించు | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ఈ ఖాతా ఉపయోగించి పంపిన అన్ని ఇమెయిల్స్ కోసం పంపినవారు ఈ ఖాతా పేర్కొన్నారు ఇమెయిల్ ID ఉపయోగిస్తుంది. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ఈ ఖాతా ఉపయోగించి పంపిన అన్ని ఇమెయిల్స్ కోసం పంపినవారు ఈ ఖాతా పేర్కొన్నారు ఇమెయిల్ ID ఉపయోగిస్తుంది. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,మాత్రమే తప్పనిసరి ఖాళీలను కొత్త రికార్డులు అవసరం. మీరు అనుకుంటే మీరు కాని తప్పనిసరి నిలువు తొలగించవచ్చు. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ఈవెంట్ నవీకరించలేకపోతున్నారా | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,చెల్లింపు పూర్తయింది | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,బుక్మార్క్ | |||
DocType: Note,Note,గమనిక | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,లోపం నివేదిక | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,కాలక్రమం లో ఒక చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి | |||
DocType: Email Account,Email Ids,ఇమెయిల్ ఐడీలు | |||
DocType: Email Account,Email Addresses,ఇమెయిల్ ఐడీలు | |||
DocType: Currency,Symbol,మానవ చిత్ర | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,రో # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,కొత్త సంకేతపదం ఇమెయిల్ | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,క్యూలో | |||
DocType: PayPal Settings,Use Sandbox,శాండ్బాక్స్ ఉపయోగించండి | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,న్యూ కస్టమ్ ప్రింట్ ఫార్మాట్ | |||
DocType: DocPerm,Create,సృష్టించు | |||
DocType: Newsletter,A Lead with this email id should exist,ఈ టపా ఒక ప్రధాన ఉండాలి | |||
DocType: Newsletter,A Lead with this Email Address should exist,ఈ టపా ఒక ప్రధాన ఉండాలి | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},చెల్లని వడపోత: {0} | |||
DocType: Integration Service,Background Events,నేపధ్యం ఈవెంట్స్ | |||
DocType: Dropbox Settings,App Access Key,అనువర్తనం యాక్సెస్ కీ | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,మాత్రమే మ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,నీ పేరు | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,ఫోల్డర్ని | |||
DocType: Newsletter,Test Email Id,టెస్ట్ ఇమెయిల్ ఐడి | |||
DocType: Newsletter,Test Email Address,టెస్ట్ ఇమెయిల్ ఐడి | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,వాడుకరి {0} ఉనికిలో లేదు | |||
DocType: Website Theme,"If image is selected, color will be ignored.","చిత్రం ఎంపిక చేస్తే, రంగు విస్మరించబడుతుంది." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,ఇమెయిల్ ఖాతా | |||
DocType: Workflow State,Download,డౌన్లోడ్ | |||
DocType: Blog Post,Blog Intro,పరిచయ బ్లాగ్ | |||
DocType: Async Task,Result,ఫలితం | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} చెల్లుబాటు అయ్యే ఇమెయిల్ ID కాదు | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} చెల్లుబాటు అయ్యే ఇమెయిల్ ID కాదు | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,నివేదిక ప్రారంభించు | |||
DocType: DocField,Display Depends On,ప్రదర్శించు ఆధారపడి | |||
DocType: Web Page,Insert Code,చొప్పించు కోడ్ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,สอบถาม | |||
DocType: DocType,Sort Order,เรียง | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},' ในมุมมองรายการ ' ไม่ได้รับอนุญาตสำหรับประเภท {0} ในแถว {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,อีเมล์ ID ของคุณ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,อีเมล์ ID ของคุณ | |||
DocType: Custom Field,Select the label after which you want to insert new field.,เลือกป้ายชื่อหลังจากที่คุณต้องการแทรกเขตข้อมูลใหม่ | |||
,Document Share Report,แบ่งปันเอกสารรายงาน | |||
DocType: User,Last Login,เข้าสู่ระบบล่าสุด | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,HTML หน้า | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,โหนด เพิ่มเติมสามารถ ถูกสร้างขึ้น ภายใต้ โหนด ' กลุ่ม ประเภท | |||
DocType: Web Page,Header,ส่วนหัว | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},ไม่ทราบ คอลัมน์ : {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,ตัวเลือก: ส่งไปให้รหัสเหล่านี้ อีเมล์แต่ละแถวใหม่ | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ตัวเลือก: ส่งไปให้รหัสเหล่านี้ อีเมล์แต่ละแถวใหม่ | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,ผู้ใช้ที่มี บทบาท {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},การติดตั้ง App {0} | |||
DocType: Print Format,Custom Format,รูปแบบที่กำหนดเอง | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,อัพเดทแม่แบบและบันทึกในรูปแบบ CSV (Comma เฉพาะกิจค่า) รูปแบบก่อนที่จะแนบ | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,ระบุค่าของฟิลด์ | |||
DocType: Report,Disabled,ถูกปิดการใช้งาน | |||
DocType: Email Account,Always use Account's Email ID as Sender,มักจะใช้อีเมล์ ID ของบัญชีเป็นผู้ส่ง | |||
DocType: Email Account,Always use Account's Email Address as Sender,มักจะใช้อีเมล์ ID ของบัญชีเป็นผู้ส่ง | |||
DocType: Workflow State,eye-close,ตาใกล้ | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',โปรดเลือกวิธีการชำระเงินอีกครั้ง {0} ไม่สนับสนุนการทำธุรกรรมในสกุลเงิน '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,การตั้งค่าของผู้ให้บริการ OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,SendGrid | |||
DocType: Workflow State,leaf,ใบไม้ | |||
DocType: Portal Menu Item,Portal Menu Item,รายการเมนูพอร์ทัล | |||
DocType: Email Account,Email ID,ID อีเมล์ | |||
DocType: Email Account,Email Address,ID อีเมล์ | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,ใส่ที่อยู่เว็บไซต์ | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,รายการของทรัพยากรที่ app ลูกค้าจะสามารถเข้าถึงหลังจากที่ผู้ใช้จะช่วยให้มัน <br> เช่นโครงการ | |||
DocType: Contact Us Settings,Query Options,ตัวเลือกแบบสอบถาม | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,บัน | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,ชื่อเอกสาร | |||
DocType: ToDo,Medium,กลาง | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,โปรดตรวจสอบอีเมลของคุณ id | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,โปรดตรวจสอบอีเมลของคุณ id | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,ไม่ได้รับอนุญาตพอที่จะเห็นการเชื่อมโยง | |||
DocType: Customize Form,Customize Form,ปรับแต่งรูปแบบ | |||
DocType: Currency,A symbol for this currency. For e.g. $,สัญลักษณ์สำหรับสกุลเงินนี้. ตัวอย่างเช่น $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,ขั้นตอนย้อนหลั | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,โปรดตั้งค่า คีย์ การเข้าถึง Dropbox ใน การตั้งค่า เว็บไซต์ของคุณ | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ลบบันทึกนี้จะอนุญาตให้ส่งไปยังที่อยู่อีเมลนี้ | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,ใช้อีเมล์ ID ที่ระบุไว้ในบัญชีนี้เป็นผู้ส่งอีเมลทั้งหมดที่ส่งโดยใช้บัญชีนี้ | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,ใช้อีเมล์ ID ที่ระบุไว้ในบัญชีนี้เป็นผู้ส่งอีเมลทั้งหมดที่ส่งโดยใช้บัญชีนี้ | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,เฉพาะข้อมูลที่จำเป็นต้องมีความจำเป็นสำหรับระเบียนใหม่ คุณสามารถลบคอลัมน์ไม่ได้รับคำสั่งหากคุณต้องการ | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ไม่สามารถปรับเหตุการณ์ให้เป็นค่าล่าสุดได้ | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ดำเนินการชำระเงิน | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,คั่น | |||
DocType: Note,Note,หมายเหตุ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,รายงานข้อผิดพลาด | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,ข้อมูล Timeline จะต้องเป็น fieldname ที่ถูกต้อง | |||
DocType: Email Account,Email Ids,อีเมล์หมายเลข | |||
DocType: Email Account,Email Addresses,อีเมล์หมายเลข | |||
DocType: Currency,Symbol,สัญญลักษณ์ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,แถว # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,ส่ง รหัสผ่านใหม่ | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,จัดคิว | |||
DocType: PayPal Settings,Use Sandbox,ใช้ Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,รูปแบบใหม่ที่กำหนดเองพิมพ์ | |||
DocType: DocPerm,Create,สร้าง | |||
DocType: Newsletter,A Lead with this email id should exist,ควรมีช่องทางที่ใช้อีเมลนี้อยู่ | |||
DocType: Newsletter,A Lead with this Email Address should exist,ควรมีช่องทางที่ใช้อีเมลนี้อยู่ | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},กรอง ที่ไม่ถูกต้อง : {0} | |||
DocType: Integration Service,Background Events,เหตุการณ์พื้นหลัง | |||
DocType: Dropbox Settings,App Access Key,App คีย์ | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,อนุญาตให้ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,ชื่อของคุณ | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,เป็นโฟลเดอร์ | |||
DocType: Newsletter,Test Email Id,Email รหัสการทดสอบ | |||
DocType: Newsletter,Test Email Address,Email รหัสการทดสอบ | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,ผู้ใช้ {0} ไม่อยู่ | |||
DocType: Website Theme,"If image is selected, color will be ignored.",หากภาพเลือกสีจะถูกละเว้น | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,บัญชีอีเมล์ | |||
DocType: Workflow State,Download,ดาวน์โหลด | |||
DocType: Blog Post,Blog Intro,แนะนำบล็อก | |||
DocType: Async Task,Result,ผล | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ไม่ได้เป็น id ของ อีเมลที่ถูกต้อง | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ไม่ได้เป็น id ของ อีเมลที่ถูกต้อง | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,เปิดใช้งานการรายงาน | |||
DocType: DocField,Display Depends On,จอแสดงผลขึ้นอยู่กับ | |||
DocType: Web Page,Insert Code,ใส่รหัส | |||
@@ -496,7 +496,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Sorgu | |||
DocType: DocType,Sort Order,Sıralama | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'Liste görüntüle' izin türü için {0} üst üste {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,E-posta Kimliği | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,E-posta Kimliği | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Select the label after which you want to insert new field. | |||
,Document Share Report,Belge Paylaş Raporu | |||
DocType: User,Last Login,Son Giriş | |||
@@ -684,7 +684,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be | |||
DocType: Web Page,Header,Başlık | |||
DocType: Web Page,Header,Başlık | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Bilinmeyen Sütun: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,"İsteğe Bağlı: Daima bu kimlikleri gönderin. Yeni bir satırda, her e-posta id" | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,"İsteğe Bağlı: Daima bu kimlikleri gönderin. Yeni bir satırda, her e-posta id" | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Rolüne sahip kullanıcılar {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},App Kurma{0} | |||
DocType: Print Format,Custom Format,Özel Formatı | |||
@@ -757,7 +757,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Şablonu güncelleyin ve takmadan önce CSV formatında (Virgülle Ayrı Değerler) kaydedin. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Alanın değerini belirtin | |||
DocType: Report,Disabled,Devredışı | |||
DocType: Email Account,Always use Account's Email ID as Sender,Daima Sender olarak Hesabınızın E-Posta kimliği kullanmak | |||
DocType: Email Account,Always use Account's Email Address as Sender,Daima Sender olarak Hesabınızın E-Posta kimliği kullanmak | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',başka bir ödeme yöntemi seçin. {0} para işlemleri desteklemiyor '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Sağlayıcı Ayarları | |||
@@ -907,7 +907,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,yaprak | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menü Maddesi | |||
DocType: Email Account,Email ID,E-posta kimliği | |||
DocType: Email Account,Email Address,E-posta kimliği | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Ekle Bağlantı | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Müşteri App kullanıcı izin verdiği sonra erişimi olacak kaynakların listesi. <br> örneğin, proje" | |||
DocType: Contact Us Settings,Query Options,Sorgu Seçenekleri | |||
@@ -950,7 +950,7 @@ apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Tümünü İ | |||
DocType: DocShare,Document Name,Belge Adı | |||
DocType: ToDo,Medium,Orta | |||
DocType: ToDo,Medium,Orta | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,E-posta id doğrulayın | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,E-posta id doğrulayın | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Değil linkleri görmek için yeterli izin yok | |||
DocType: Customize Form,Customize Form,Formu özelleştirmek | |||
DocType: Currency,A symbol for this currency. For e.g. $,Bu para için bir sembol mesela $ için | |||
@@ -1148,7 +1148,7 @@ DocType: Workflow State,step-backward,step-backward | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{App_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Lütfen site yapılandırmanızda Dropbox erişim anahtarı ayarlayınız | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Bu e-posta adresine gönderilmesine izin Bu kayıt silinsin | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Bu Hesap kullanılarak gönderilen tüm e-postalar için Sender olarak bu Hesabına belirtilen e-posta kimliği kullanır. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Bu Hesap kullanılarak gönderilen tüm e-postalar için Sender olarak bu Hesabına belirtilen e-posta kimliği kullanır. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Sadece zorunlu alanlar yeni kayıtlar için gereklidir. İsterseniz zorunlu olmayan sütunları silebilirsiniz. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Etkinlik güncellenemedi | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Ödeme Tamamlandı | |||
@@ -1358,7 +1358,7 @@ DocType: Note,Note,Not | |||
DocType: Note,Note,Not | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Hata raporu | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Zaman alanı geçerli AlanAdı olmalıdır | |||
DocType: Email Account,Email Ids,E-posta Noları | |||
DocType: Email Account,Email Addresses,E-posta Noları | |||
DocType: Currency,Symbol,Sembol | |||
DocType: Currency,Symbol,Sembol | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Satır # {0}: | |||
@@ -1808,7 +1808,7 @@ DocType: Async Task,Queued,Sıraya alınmış | |||
DocType: PayPal Settings,Use Sandbox,Kullanım Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Yeni Özel Baskı Biçimi | |||
DocType: DocPerm,Create,Oluştur | |||
DocType: Newsletter,A Lead with this email id should exist,Bu e-posta sistemde zaten kayıtlı | |||
DocType: Newsletter,A Lead with this Email Address should exist,Bu e-posta sistemde zaten kayıtlı | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Geçersiz Filtre: {0} | |||
DocType: Integration Service,Background Events,Arka plan Olaylar | |||
DocType: Dropbox Settings,App Access Key,Uygulama Erişim Anahtarı | |||
@@ -1992,8 +1992,8 @@ DocType: Workflow Document State,Only Allow Edit For,Only Allow Edit For | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Adınız | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Klasör mı | |||
DocType: Newsletter,Test Email Id,Test E-posta Kimliği | |||
DocType: Newsletter,Test Email Id,Test E-posta Kimliği | |||
DocType: Newsletter,Test Email Address,Test E-posta Kimliği | |||
DocType: Newsletter,Test Email Address,Test E-posta Kimliği | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Kullanıcı {0} yok | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Görüntü seçilirse, renk göz ardı edilecektir." | |||
@@ -2367,7 +2367,7 @@ DocType: Communication,Email Account,E-posta Hesabı | |||
DocType: Workflow State,Download,indir | |||
DocType: Blog Post,Blog Intro,Blog girişi | |||
DocType: Async Task,Result,Sonuç | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} geçerli bir e-posta adresi değildir | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} geçerli bir e-posta adresi değildir | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Rapor etkinleştirin | |||
DocType: DocField,Display Depends On,Görüntü şuna bağlı | |||
DocType: Web Page,Insert Code,Kod Ekle | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Запит | |||
DocType: DocType,Sort Order,Порядок сортування | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""У вигляді списку"" не допускається для типу {0} в рядку {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Ваш E-mail Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Ваш E-mail Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,"Виберіть мітку, після чого Ви хочете вставити нове поле." | |||
,Document Share Report,Звіт про оприлюднені документи | |||
DocType: User,Last Login,Останній вхід | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Сторінка HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Подальші вузли можуть бути створені тільки під вузлами типу "група" | |||
DocType: Web Page,Header,Тема | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Невідомий Колонка: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Додатково: Завжди надсилати на ці ідентифікатори. Кожен електронний ідентифікатор на новому рядку | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Додатково: Завжди надсилати на ці ідентифікатори. Кожен електронний ідентифікатор на новому рядку | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Люди з ролі {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Встановлення програми {0} | |||
DocType: Print Format,Custom Format,Користувацький Формат | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,перечіріканье | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Оновіть шаблон і збережіть його у форматі CSV (comma separated values) перед долученням. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Вкажіть значення в полі | |||
DocType: Report,Disabled,Неактивний | |||
DocType: Email Account,Always use Account's Email ID as Sender,Завжди використовуйте рахунки Email ID відправника в | |||
DocType: Email Account,Always use Account's Email Address as Sender,Завжди використовуйте рахунки Email Address відправника в | |||
DocType: Workflow State,eye-close,очі близько | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',"Будь ласка, виберіть інший спосіб оплати. {0} не підтримує транзакції в валюті "{1} '" | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth провайдера Налаштування | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,полк | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,лист | |||
DocType: Portal Menu Item,Portal Menu Item,Пункт меню порталу | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Вставити гіперпосилання | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Список ресурсів, які Клієнт App матиме доступ до після того, як користувач дозволяє. <br> наприклад, проект" | |||
DocType: Contact Us Settings,Query Options,Опції Запит | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Примі | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Уцінка | |||
DocType: DocShare,Document Name,Назва документа | |||
DocType: ToDo,Medium,Середній | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,"Будь ласка, перевірте ваш електронний ідентифікатор" | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,"Будь ласка, перевірте ваш електронний ідентифікатор" | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,"Не вистачає дозволу, щоб побачити посилання." | |||
DocType: Customize Form,Customize Form,Налаштувати форму | |||
DocType: Currency,A symbol for this currency. For e.g. $,"Символ цієї валюти. Наприклад, ₴" | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,крок назад | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{} App_title | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,"Будь ласка, встановіть ключі доступу Dropbox у конфігурації вашого сайту" | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Видалити цей запис, щоб дозволити відправляти на цей e-mail" | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,"Використання зазначеного в цьому рахунку в якості відправника для всіх листів, відправлених з використанням цього облікового запису електронної пошти ID." | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,"Використання зазначеного в цьому рахунку в якості відправника для всіх листів, відправлених з використанням цього облікового запису електронної пошти ID." | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Лише обов'язкові поля, необхідні для нових записів. Ви можете видалити необов'язкові стовпці, якщо хочете." | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Не вдалося оновити подія | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,оплата Повна | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,закладка | |||
DocType: Note,Note,Примітка | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Звіт про помилки | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,Терміни поле повинно бути дійсним ім'я_поля | |||
DocType: Email Account,Email Ids,E-mail ідентифікатори | |||
DocType: Email Account,Email Addresses,E-mail ідентифікатори | |||
DocType: Currency,Symbol,Символ | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Ряд # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Новий пароль по електронній пошті | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,У черзі | |||
DocType: PayPal Settings,Use Sandbox,Використання Пісочниця | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Новий користувальницький друку Формат | |||
DocType: DocPerm,Create,Створити | |||
DocType: Newsletter,A Lead with this email id should exist,Повинен існувати Lead з таким e-mail ідентифікатором | |||
DocType: Newsletter,A Lead with this Email Address should exist,Повинен існувати Lead з таким e-mail ідентифікатором | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Невірний фільтр: {0} | |||
DocType: Integration Service,Background Events,фонові події | |||
DocType: Dropbox Settings,App Access Key,App Ключ доступу | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,Тільки Дозволи | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Ваше ім'я | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,є текою | |||
DocType: Newsletter,Test Email Id,Тест Email ID | |||
DocType: Newsletter,Test Email Address,Тест Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Користувач {0} не існує | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Якщо вибране зображення, колір буде ігноруватися." | |||
@@ -2243,7 +2243,7 @@ DocType: Communication,Email Account,E-mail аккаунт | |||
DocType: Workflow State,Download,Завантажити | |||
DocType: Blog Post,Blog Intro,Блог Інтро | |||
DocType: Async Task,Result,Результат | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} не є допустимою адресою електронної пошти | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не є допустимою адресою електронної пошти | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Включити звіт | |||
DocType: DocField,Display Depends On,Показання залежить від | |||
DocType: Web Page,Insert Code,Вставити код | |||
@@ -464,7 +464,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,سوال | |||
DocType: DocType,Sort Order,ترتیب | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},'فہرست میں،' صف میں داخل {0} کرنے کی اجازت نہیں {1} | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,آپ کا ای میل کی شناخت | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,آپ کا ای میل کی شناخت | |||
DocType: Custom Field,Select the label after which you want to insert new field.,آپ نئے میدان داخل کرنا چاہتے ہیں، جس کے بعد لیبل منتخب کریں. | |||
,Document Share Report,دستاویز کا اشتراک رپورٹ | |||
DocType: User,Last Login,آخری لاگ ان | |||
@@ -646,7 +646,7 @@ DocType: Page,Page HTML,صفحے کے HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,مزید نوڈس صرف 'گروپ' قسم نوڈس کے تحت پیدا کیا جا سکتا | |||
DocType: Web Page,Header,ہیڈر | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},نامعلوم کالم: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,اختیاری: ہمیشہ ان کی شناخت کرنے کے لئے بھیج. ایک نئی صف پر ہر ای میل کی شناخت | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاری: ہمیشہ ان کی شناخت کرنے کے لئے بھیج. ایک نئی صف پر ہر ای میل کی شناخت | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,کردار {0} کے ساتھ صارفین: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},نصب اپلی کیشن {0} | |||
DocType: Print Format,Custom Format,اپنی مرضی کی شکل | |||
@@ -714,7 +714,7 @@ DocType: Workflow State,retweet,ریٹویٹ | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,سانچے کو اپ ڈیٹ اور منسلک کرنے سے پہلے CSV میں فارمیٹ (کاما علیحدہ اقدار) کو بچانے کے. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,فیلڈ کی قدر کی وضاحت | |||
DocType: Report,Disabled,معذور | |||
DocType: Email Account,Always use Account's Email ID as Sender,ہمیشہ مرسل کے طور پر اکاؤنٹ کی ای میل آئی ڈی کا استعمال کرتے ہیں | |||
DocType: Email Account,Always use Account's Email Address as Sender,ہمیشہ مرسل کے طور پر اکاؤنٹ کی ای میل آئی ڈی کا استعمال کرتے ہیں | |||
DocType: Workflow State,eye-close,آنکھ بند | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',ایک اور طریقہ ادائیگی کا انتخاب کریں. {0} کرنسی میں لین دین کی حمایت نہیں کرتا '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,سے OAuth مھیا ترتیبات | |||
@@ -855,7 +855,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,میل Sendgrid | |||
DocType: Workflow State,leaf,پتی | |||
DocType: Portal Menu Item,Portal Menu Item,پورٹل مینو اشیاء | |||
DocType: Email Account,Email ID,ای میل ID | |||
DocType: Email Account,Email Address,ای میل ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,داخل کریں لنک | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,وسائل کی ایک فہرست ہے جس میں کلائنٹ اے پی پی کے بعد صارف کو یہ اجازت دیتا ہے تک رسائی حاصل ہوگی. <br> مثال کے طور پر اس منصوبے | |||
DocType: Contact Us Settings,Query Options,استفسار کے اختیارات | |||
@@ -889,7 +889,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,نوٹس: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,ڈالنے | |||
DocType: DocShare,Document Name,دستاویز کا نام | |||
DocType: ToDo,Medium,میڈیم | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,آپ کا ای میل ID براہ کرم توثیق کریں | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,آپ کا ای میل ID براہ کرم توثیق کریں | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,لنک دیکھنے کے لئے کافی نہیں کی اجازت. | |||
DocType: Customize Form,Customize Form,فارم اپنی مرضی کے مطابق | |||
DocType: Currency,A symbol for this currency. For e.g. $,اس کرنسی کے لئے ایک علامت. مثال کے طور پر $ کے لئے | |||
@@ -1080,7 +1080,7 @@ DocType: Workflow State,step-backward,قدم پیچھے | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,آپ کی ویب سائٹ تشکیل میں ڈراپ باکس رسائی کی چابیاں مقرر کریں | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,اس ای میل ایڈریس پر بھیجنے کی اجازت دینے کے لیے اس ریکارڈ کو حذف کریں | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,اس اکاؤنٹ کا استعمال کرتے ہوئے بھیجے گئے تمام ای میلز کے لئے مرسل کے طور پر اس کے اکاؤنٹ میں ذکر ای میل آئی ڈی کا استعمال کرتا ہے. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,اس اکاؤنٹ کا استعمال کرتے ہوئے بھیجے گئے تمام ای میلز کے لئے مرسل کے طور پر اس کے اکاؤنٹ میں ذکر ای میل آئی ڈی کا استعمال کرتا ہے. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,صرف لازمی شعبوں نئے ریکارڈ کے لئے ضروری ہیں. اگر تم چاہو تو غیر لازمی کالم حذف کر سکتے ہیں. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,ایونٹ کو اپ ڈیٹ کرنے سے قاصر | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,ادائیگی مکمل | |||
@@ -1272,7 +1272,7 @@ DocType: Workflow State,bookmark,بک مارک | |||
DocType: Note,Note,نوٹ | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,غلطی کی رپورٹ | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,ٹائم لائن میدان میں ایک درست FIELDNAME ہونا ضروری ہے | |||
DocType: Email Account,Email Ids,ای میل کی شناخت | |||
DocType: Email Account,Email Addresses,ای میل کی شناخت | |||
DocType: Currency,Symbol,علامت | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,صف # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,نیا پاس ورڈ ای میل | |||
@@ -1694,7 +1694,7 @@ DocType: Async Task,Queued,قطار میں | |||
DocType: PayPal Settings,Use Sandbox,سینڈباکس استعمال | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,نئے اپنی مرضی کے پرنٹ کی شکل | |||
DocType: DocPerm,Create,بنائیں | |||
DocType: Newsletter,A Lead with this email id should exist,یہ ای میل آئی ڈی کے ساتھ ایک لیڈ وجود چاہئے | |||
DocType: Newsletter,A Lead with this Email Address should exist,یہ ای میل آئی ڈی کے ساتھ ایک لیڈ وجود چاہئے | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},غلط فلٹر: {0} | |||
DocType: Integration Service,Background Events,پس منظر تقریبات | |||
DocType: Dropbox Settings,App Access Key,اپلی رسائی کلید | |||
@@ -1869,7 +1869,7 @@ DocType: Workflow Document State,Only Allow Edit For,صرف ترمیم کے لئ | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,تمھارا نام | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,فولڈر ہے | |||
DocType: Newsletter,Test Email Id,ٹیسٹ ای میل کی شناخت | |||
DocType: Newsletter,Test Email Address,ٹیسٹ ای میل کی شناخت | |||
DocType: DocType,DocType,DOCTYPE | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,صارف {0} موجود نہیں ہے | |||
DocType: Website Theme,"If image is selected, color will be ignored.",تصویر منتخب کیا جاتا ہے تو، رنگ کو نظر انداز کیا جائے گا. | |||
@@ -2219,7 +2219,7 @@ DocType: Communication,Email Account,ای میل اکاؤنٹ | |||
DocType: Workflow State,Download,ڈاؤن لوڈ | |||
DocType: Blog Post,Blog Intro,انٹرو بلاگ | |||
DocType: Async Task,Result,نتیجہ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} ایک درست ای میل کی شناخت نہیں ہے | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ایک درست ای میل کی شناخت نہیں ہے | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,رپورٹ فعال | |||
DocType: DocField,Display Depends On,ڈسپلے پر انحصار کرتا ہے | |||
DocType: Web Page,Insert Code,داخل کوڈ | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,Truy vấn | |||
DocType: DocType,Sort Order,Xếp theo thứ tự | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},"""Trong danh sách Xem' không cho phép loại {0} trong hàng {1}" | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,Email của bạn Id | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,Email của bạn Id | |||
DocType: Custom Field,Select the label after which you want to insert new field.,Chọn nhãn sau đó bạn muốn chèn lĩnh vực mới. | |||
,Document Share Report,Tài liệu Chia sẻ Báo cáo | |||
DocType: User,Last Login,Đăng nhập | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,Trang HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,Các nút khác có thể được chỉ tạo ra dưới các nút kiểu 'Nhóm' | |||
DocType: Web Page,Header,Phần đầu | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Cột không rõ: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,Tùy chọn: Luôn luôn gửi đến các id. Mỗi email id trên một hàng mới | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Tùy chọn: Luôn luôn gửi đến các id. Mỗi Email Address trên một hàng mới | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,Người sử dụng với vai trò {0}: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},Cài đặt App {0} | |||
DocType: Print Format,Custom Format,Tuỳ chỉnh Format | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,retweet | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,Cập nhật các mẫu và lưu trong CSV (Comma giá trị riêng) định dạng trước khi đính kèm. | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,Xác định giá trị của trường | |||
DocType: Report,Disabled,Đã tắt | |||
DocType: Email Account,Always use Account's Email ID as Sender,Luôn luôn sử dụng Email ID tài khoản của người gửi là | |||
DocType: Email Account,Always use Account's Email Address as Sender,Luôn luôn sử dụng Email Address tài khoản của người gửi là | |||
DocType: Workflow State,eye-close,mắt gần | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',Vui lòng chọn phương thức thanh toán khác. {0} không hỗ trợ giao dịch tiền tệ '{1}' | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,Cài đặt nhà cung cấp OAuth | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,rgt | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,lá | |||
DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item | |||
DocType: Email Account,Email ID,Email ID | |||
DocType: Email Account,Email Address,Email Address | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Chèn Link | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Một danh sách các nguồn App Khách hàng sẽ có quyền truy cập đến sau khi người dùng cho phép nó. <br> ví dụ như dự án | |||
DocType: Contact Us Settings,Query Options,Tùy chọn truy vấn | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Ghi chú: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,Document Name | |||
DocType: ToDo,Medium,Trung bình | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,Vui lòng kiểm tra id email của bạn | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,Vui lòng kiểm tra id email của bạn | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,Không đủ quyền để xem liên kết. | |||
DocType: Customize Form,Customize Form,Tùy chỉnh mẫu | |||
DocType: Currency,A symbol for this currency. For e.g. $,Biểu tượng đồng tiền này. Ví dụ như $ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,bước lùi | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{app_title} | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,Xin vui lòng thiết lập các phím truy cập Dropbox trong cấu hình trang web của bạn | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Xóa hồ sơ này để cho phép gửi đến địa chỉ email này | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Sử dụng ID Email nêu tại khoản này là người gửi cho tất cả các email được gửi bằng cách sử dụng tài khoản này. | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Sử dụng ID Email nêu tại khoản này là người gửi cho tất cả các email được gửi bằng cách sử dụng tài khoản này. | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Chỉ các trường bắt buộc là cần thiết để làm hồ sơ mới. Bạn có thể xóa các cột không bắt buộc nếu bạn muốn. | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,Không thể cập nhật sự kiện | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,Hoàn tất thanh toán | |||
@@ -1285,7 +1285,7 @@ DocType: Workflow State,bookmark,bookmark | |||
DocType: Note,Note,Nốt nhạc | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Báo cáo lỗi | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,lĩnh vực Timeline phải là một fieldname hợp lệ | |||
DocType: Email Account,Email Ids,Email Id | |||
DocType: Email Account,Email Addresses,Email Address | |||
DocType: Currency,Symbol,Biểu tượng | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,Hàng # {0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,Mật khẩu mới qua email | |||
@@ -1715,7 +1715,7 @@ DocType: Async Task,Queued,Xếp hàng | |||
DocType: PayPal Settings,Use Sandbox,sử dụng Sandbox | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,Mới Custom In Format | |||
DocType: DocPerm,Create,Tạo | |||
DocType: Newsletter,A Lead with this email id should exist,Một Lead với id email này nên có | |||
DocType: Newsletter,A Lead with this Email Address should exist,Một Lead với id email này nên có | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Bộ lọc không hợp lệ: {0} | |||
DocType: Integration Service,Background Events,Bối cảnh sự kiện | |||
DocType: Dropbox Settings,App Access Key,App Access Key | |||
@@ -1891,7 +1891,7 @@ DocType: Workflow Document State,Only Allow Edit For,Cho phép chỉ sửa Đố | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,Tên của bạn | |||
DocType: DocType,InnoDB,InnoDB | |||
DocType: File,Is Folder,Là Folder | |||
DocType: Newsletter,Test Email Id,Kiểm tra Email Id | |||
DocType: Newsletter,Test Email Address,Kiểm tra Email Address | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,Người sử dụng {0} không tồn tại | |||
DocType: Website Theme,"If image is selected, color will be ignored.","Nếu hình ảnh được lựa chọn, màu sắc sẽ được bỏ qua." | |||
@@ -2246,7 +2246,7 @@ DocType: Communication,Email Account,Tài khoản Email | |||
DocType: Workflow State,Download,Đã tải xuống | |||
DocType: Blog Post,Blog Intro,Giới thiệu Blog | |||
DocType: Async Task,Result,Kết quả | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0} không phải là một id email hợp lệ | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} không phải là một id email hợp lệ | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Kích hoạt tính năng Report | |||
DocType: DocField,Display Depends On,Hiện thị dựa trên | |||
DocType: Web Page,Insert Code,Chèn Mã | |||
@@ -415,7 +415,7 @@ apps/frappe/frappe/desk/like.py +89,Liked,喜歡 | |||
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,立即發送 | |||
DocType: Report,Query,查詢 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},“在列表視圖中”第{1}行的類型{0}不允許 | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,您的電子郵件ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,您的電子郵件ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,之後要插入新字段中選擇的標籤。 | |||
,Document Share Report,文檔分享舉報 | |||
DocType: User,Last Login,上次登錄 | |||
@@ -571,7 +571,7 @@ DocType: Page,Page HTML,頁面的HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,此外節點可以在'集團'類型的節點上創建 | |||
DocType: Web Page,Header,頁首 | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},未知專欄: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,選項:總是發送給這些ID。每一個電子郵件ID一列 | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,選項:總是發送給這些ID。每一個電子郵件ID一列 | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,角色{0} 的用戶: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},安裝應用程序{0} | |||
DocType: Print Format,Custom Format,自定義格式 | |||
@@ -636,7 +636,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start ente | |||
DocType: Workflow State,retweet,轉推 | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,更新模板和附加之前保存在CSV(逗號分隔值)格式。 | |||
DocType: Report,Disabled,不使用 | |||
DocType: Email Account,Always use Account's Email ID as Sender,使用帳戶的電子郵件ID作為發件人 | |||
DocType: Email Account,Always use Account's Email Address as Sender,使用帳戶的電子郵件ID作為發件人 | |||
DocType: Workflow State,eye-close,眼睛閉 | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',請選擇其他付款方式。 {0}不支持貨幣交易“{1}” | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth的提供商設置 | |||
@@ -761,7 +761,7 @@ DocType: Integration Request,Output,產量 | |||
apps/frappe/frappe/config/setup.py +243,Add fields to forms.,將欄位添加到表單。 | |||
DocType: Workflow State,leaf,葉 | |||
DocType: Portal Menu Item,Portal Menu Item,門戶菜單項 | |||
DocType: Email Account,Email ID,電子郵件ID | |||
DocType: Email Account,Email Address,電子郵件ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,插入鏈接 | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,資源的列表,它的客戶端應用程序必須將用戶允許後訪問。 <br>如項目 | |||
DocType: Contact Us Settings,Query Options,查詢選項 | |||
@@ -793,7 +793,7 @@ DocType: System Settings,Enable Scheduled Jobs,啟用預定作業 | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,注意事項: | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,「Markdown」語法 | |||
DocType: DocShare,Document Name,文件名稱 | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,請驗證您的電子郵件ID | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,請驗證您的電子郵件ID | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,沒有足夠的權限查看鏈接。 | |||
DocType: Customize Form,Customize Form,自定義表單 | |||
DocType: Currency,A symbol for this currency. For e.g. $,這種貨幣的符號。例如$ | |||
@@ -957,7 +957,7 @@ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,現在 | |||
DocType: Workflow State,step-backward,往後退 | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,請在您的網站配置設定Dropbox的存取碼 | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,刪除此記錄允許發送此郵件地址 | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,使用此帳戶提到作為發件人使用此帳戶發送的所有電子郵件的電子郵件ID。 | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,使用此帳戶提到作為發件人使用此帳戶發送的所有電子郵件的電子郵件ID。 | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新記錄。如果你願意,你可以刪除非強制性列。 | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,無法更新事件 | |||
DocType: Web Form Field,Max Length,最長長度 | |||
@@ -1115,7 +1115,7 @@ DocType: Workflow State,bookmark,書籤 | |||
DocType: Note,Note,注釋 | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,錯誤報告 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,時間軸場必須是有效的字段名 | |||
DocType: Email Account,Email Ids,電子郵件ID | |||
DocType: Email Account,Email Addresses,電子郵件ID | |||
DocType: Currency,Symbol,符號 | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,列#{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,新的密碼通過電子郵件發送 | |||
@@ -1493,7 +1493,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,之 | |||
DocType: Async Task,Queued,排隊 | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,新自定義列印格式 | |||
DocType: DocPerm,Create,建立 | |||
DocType: Newsletter,A Lead with this email id should exist,以此電子郵件id的機會應該存在 | |||
DocType: Newsletter,A Lead with this Email Address should exist,以此電子郵件id的機會應該存在 | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},無效的過濾器: {0} | |||
DocType: Dropbox Settings,App Access Key,應用程序訪問密鑰 | |||
DocType: OAuth Bearer Token,Access Token,存取 Token | |||
@@ -1643,7 +1643,7 @@ DocType: DocType,Name Case,案例名稱 | |||
apps/frappe/frappe/model/base_document.py +417,Data missing in table,在表中的數據丟失 | |||
DocType: Workflow Document State,Only Allow Edit For,只允許編輯 | |||
DocType: File,Is Folder,在文件夾 | |||
DocType: Newsletter,Test Email Id,測試電子郵件Id | |||
DocType: Newsletter,Test Email Address,測試電子郵件Id | |||
DocType: DocType,DocType,DocType | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,用戶{0}不存在 | |||
DocType: Website Theme,"If image is selected, color will be ignored.",如果圖像被選擇時,顏色將被忽略。 | |||
@@ -1947,7 +1947,7 @@ DocType: Communication,Email Account,電子郵件帳戶 | |||
DocType: Workflow State,Download,下載 | |||
DocType: Blog Post,Blog Intro,部落格介紹 | |||
DocType: Async Task,Result,成績 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0}不是一個有效的電子郵件ID | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0}不是一個有效的電子郵件ID | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,啟用報告 | |||
DocType: DocField,Display Depends On,顯示的內容取決於 | |||
DocType: Web Page,Insert Code,插入源碼 | |||
@@ -466,7 +466,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send | |||
DocType: Report,Query,查询 | |||
DocType: DocType,Sort Order,排序 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +353,'In List View' not allowed for type {0} in row {1},行{1}中的类型{0}不允许选择“显示在列表视图中” | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Id,您的电子邮件ID | |||
apps/frappe/frappe/templates/includes/comments/comments.html +38,Your Email Address,您的电子邮件ID | |||
DocType: Custom Field,Select the label after which you want to insert new field.,选择标签,在其后插入新字段。 | |||
,Document Share Report,文档分享报告 | |||
DocType: User,Last Login,最后登录 | |||
@@ -650,7 +650,7 @@ DocType: Page,Page HTML,页面的HTML | |||
apps/frappe/frappe/public/js/frappe/views/treeview.js +236,Further nodes can be only created under 'Group' type nodes,只能在“组”节点下新建节点 | |||
DocType: Web Page,Header,头 | |||
apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},未知列: {0} | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,可选:总是发送给这些ID。在一个新行的每一个电子邮件ID | |||
DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,可选:总是发送给这些ID。在一个新行的每一个电子邮件ID | |||
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,拥有角色{0}的用户: | |||
apps/frappe/frappe/desk/page/applications/applications.py +76,Installing App {0},安装应用程序{0} | |||
DocType: Print Format,Custom Format,自定义格式 | |||
@@ -719,7 +719,7 @@ DocType: Workflow State,retweet,转推 | |||
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Update the template and save in CSV (Comma Separate Values) format before attaching.,在附加之前更新模板并将其保存为CSV格式 | |||
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +213,Specify the value of the field,指定字段的值 | |||
DocType: Report,Disabled,已禁用 | |||
DocType: Email Account,Always use Account's Email ID as Sender,始终使用帐户的电子邮件ID作为发件人 | |||
DocType: Email Account,Always use Account's Email Address as Sender,始终使用帐户的电子邮件ID作为发件人 | |||
DocType: Workflow State,eye-close,eye-close | |||
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +93,Please select another payment method. {0} does not support transactions in currency '{1}',请选择其他付款方式。 {0}不支持货币交易“{1}” | |||
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth的提供商设置 | |||
@@ -862,7 +862,7 @@ DocType: File,rgt,RGT | |||
DocType: Email Account,Sendgrid,Sendgrid | |||
DocType: Workflow State,leaf,leaf | |||
DocType: Portal Menu Item,Portal Menu Item,门户菜单项 | |||
DocType: Email Account,Email ID,电子邮件ID | |||
DocType: Email Account,Email Address,电子邮件ID | |||
apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,插入链接 | |||
DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,资源的列表,它的客户端应用程序必须将用户允许后访问。 <br>如项目 | |||
DocType: Contact Us Settings,Query Options,查询选项 | |||
@@ -898,7 +898,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,注意事 | |||
apps/frappe/frappe/public/js/frappe/form/control.js +1673,Markdown,Markdown | |||
DocType: DocShare,Document Name,文档名称 | |||
DocType: ToDo,Medium,中 | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your email id,请验证您的电子邮件ID | |||
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Please verify your Email Address,请验证您的电子邮件ID | |||
apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not enough permission to see links.,没有足够的权限查看链接。 | |||
DocType: Customize Form,Customize Form,自定义表单 | |||
DocType: Currency,A symbol for this currency. For e.g. $,货币符号。例如$ | |||
@@ -1089,7 +1089,7 @@ DocType: Workflow State,step-backward,step-backward | |||
apps/frappe/frappe/utils/boilerplate.py +252,{app_title},{ app_title } | |||
apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +52,Please set Dropbox access keys in your site config,请在您的网站配置设置Dropbox的访问键 | |||
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,删除此记录允许发送此邮件地址 | |||
DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,使用此帐户提到作为发件人使用此帐户发送的所有电子邮件的电子邮件ID。 | |||
DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,使用此帐户提到作为发件人使用此帐户发送的所有电子邮件的电子邮件ID。 | |||
apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新记录。如果你愿意,你可以删除非强制性列。 | |||
apps/frappe/frappe/public/js/frappe/views/calendar.js +276,Unable to update event,无法更新事件 | |||
apps/frappe/frappe/templates/generators/web_form.html +292,Payment Complete,付款完成 | |||
@@ -1284,7 +1284,7 @@ DocType: Workflow State,bookmark,书签 | |||
DocType: Note,Note,注 | |||
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,错误报告 | |||
apps/frappe/frappe/core/doctype/doctype/doctype.py +475,Timeline field must be a valid fieldname,时间轴场必须是有效的字段名 | |||
DocType: Email Account,Email Ids,电子邮件ID | |||
DocType: Email Account,Email Addresses,电子邮件ID | |||
DocType: Currency,Symbol,符号 | |||
apps/frappe/frappe/model/base_document.py +529,Row #{0}:,行#{0}: | |||
apps/frappe/frappe/core/doctype/user/user.py +163,New password emailed,新密码已通过电子邮件发送 | |||
@@ -1714,7 +1714,7 @@ DocType: Async Task,Queued,排队 | |||
DocType: PayPal Settings,Use Sandbox,使用沙盒 | |||
apps/frappe/frappe/public/js/frappe/form/print.js +98,New Custom Print Format,新的自定义打印格式 | |||
DocType: DocPerm,Create,创建 | |||
DocType: Newsletter,A Lead with this email id should exist,与此电子邮件关联的潜在客户不存在 | |||
DocType: Newsletter,A Lead with this Email Address should exist,与此电子邮件关联的潜在客户不存在 | |||
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},无效的过滤器: {0} | |||
DocType: Integration Service,Background Events,背景事件 | |||
DocType: Dropbox Settings,App Access Key,应用程序访问密钥 | |||
@@ -1890,7 +1890,7 @@ DocType: Workflow Document State,Only Allow Edit For,只允许编辑 | |||
apps/frappe/frappe/templates/includes/comments/comments.html +34,Your Name,你的名字 | |||
DocType: DocType,InnoDB,InnoDB的 | |||
DocType: File,Is Folder,在文件夹 | |||
DocType: Newsletter,Test Email Id,测试电子邮件Id | |||
DocType: Newsletter,Test Email Address,测试电子邮件Id | |||
DocType: DocType,DocType,文档类型 | |||
apps/frappe/frappe/core/doctype/user/user.py +629,User {0} does not exist,用户{0}不存在 | |||
DocType: Website Theme,"If image is selected, color will be ignored.",如果图像被选择时,颜色将被忽略。 | |||
@@ -2244,7 +2244,7 @@ DocType: Communication,Email Account,邮件帐户 | |||
DocType: Workflow State,Download,下载 | |||
DocType: Blog Post,Blog Intro,博客介绍 | |||
DocType: Async Task,Result,成绩 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid email id,{0}不是有效的电子邮件地址 | |||
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0}不是有效的电子邮件地址 | |||
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,启用报告 | |||
DocType: DocField,Display Depends On,显示的内容取决于 | |||
DocType: Web Page,Insert Code,插入代码 | |||
@@ -54,7 +54,7 @@ def get_fullname(user=None): | |||
return frappe.local.fullnames.get(user) | |||
def get_formatted_email(user): | |||
"""get email id of user formatted as: `John Doe <johndoe@example.com>`""" | |||
"""get Email Address of user formatted as: `John Doe <johndoe@example.com>`""" | |||
if user == "Administrator": | |||
return user | |||
from email.utils import formataddr | |||
@@ -62,7 +62,7 @@ def get_formatted_email(user): | |||
return formataddr((fullname, user)) | |||
def extract_email_id(email): | |||
"""fetch only the email part of the email id""" | |||
"""fetch only the email part of the Email Address""" | |||
from email.utils import parseaddr | |||
fullname, email_id = parseaddr(email) | |||
if isinstance(email_id, basestring) and not isinstance(email_id, unicode): | |||
@@ -91,7 +91,7 @@ def validate_email_add(email_str, throw=False): | |||
if not valid: | |||
if throw: | |||
frappe.throw(frappe._("{0} is not a valid email id").format(email), | |||
frappe.throw(frappe._("{0} is not a valid Email Address").format(email), | |||
frappe.InvalidEmailAddressError) | |||
else: | |||
return False | |||
@@ -102,7 +102,7 @@ def validate_email_add(email_str, throw=False): | |||
match = matched==email.lower() | |||
if not match and throw: | |||
frappe.throw(frappe._("{0} is not a valid email id").format(email), | |||
frappe.throw(frappe._("{0} is not a valid Email Address").format(email), | |||
frappe.InvalidEmailAddressError) | |||
return matched | |||
@@ -13,7 +13,7 @@ | |||
<h2 class="form-signin-heading">{{ _("One Last Step") }}</h2> | |||
<input type="hidden" name="key" value="{{ frappe.form_dict.key }}"> | |||
<input type="email" name="email_id" | |||
class="form-control" placeholder="{{ _('Email Id') }}" required autofocus><br> | |||
class="form-control" placeholder="{{ _('Email Address') }}" required autofocus><br> | |||
<input name="first_name" | |||
class="form-control" placeholder="{{ _('First Name') }}" required><br> | |||
<input name="last_name" | |||
@@ -34,7 +34,7 @@ def send_message(subject="Website Query", message="", sender=""): | |||
return | |||
if not sender: | |||
frappe.response["message"] = 'Email Id Required' | |||
frappe.response["message"] = 'Email Address Required' | |||
return | |||
# guest method, cap max writes per hour | |||