From 84f8661ca869b0f0ecddd02fa23f1e9507408c50 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 25 Jul 2016 14:19:32 +0530 Subject: [PATCH 1/4] set frappe.socket.socket for mobile app --- frappe/public/js/frappe/socketio_client.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/js/frappe/socketio_client.js b/frappe/public/js/frappe/socketio_client.js index 268d17ea21..f5e3359510 100644 --- a/frappe/public/js/frappe/socketio_client.js +++ b/frappe/public/js/frappe/socketio_client.js @@ -17,6 +17,9 @@ frappe.socket = { else if (window.location.protocol == "http:") { frappe.socket.socket = io.connect(frappe.socket.get_host()); } + else if (window.location.protocol == "file:") { + frappe.socket.socket = io.connect(window.localStorage.server); + } if (!frappe.socket.socket) { console.log("Unable to connect to " + frappe.socket.get_host()); From c10d7ec8cb72b5bec6b48ebb565ed4fcefc0080e Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 25 Jul 2016 14:55:26 +0530 Subject: [PATCH 2/4] [minor] add quick_entry and added icelandic language --- frappe/core/doctype/module_def/module_def.js | 8 +++++++ .../core/doctype/module_def/module_def.json | 13 ++++++++++-- frappe/core/doctype/patch_log/patch_log.json | 9 ++++++-- frappe/core/doctype/role/role.json | 7 +++++-- frappe/core/doctype/version/version.json | 9 ++++++-- .../doctype/custom_script/custom_script.json | 6 ++++-- frappe/data/languages.txt | 1 + frappe/desk/doctype/note/note.json | 5 +++-- .../doctype/email_group/email_group.json | 5 +++-- .../email_group_member.json | 5 +++-- .../email_unsubscribe/email_unsubscribe.js | 8 +++++++ .../email_unsubscribe/email_unsubscribe.json | 18 ++++++++++++++-- frappe/geo/doctype/country/country.js | 8 +++++++ frappe/geo/doctype/country/country.json | 13 ++++++++++-- frappe/public/js/frappe/model/create_new.js | 3 +-- .../js/frappe/ui/toolbar/awesome_bar.js | 21 ++++++++++++------- .../doctype/blog_category/blog_category.json | 5 +++-- .../workflow_action/workflow_action.js | 8 +++++++ .../workflow_action/workflow_action.json | 11 ++++++++-- .../doctype/workflow_state/workflow_state.js | 8 +++++++ .../workflow_state/workflow_state.json | 15 +++++++++++-- 21 files changed, 151 insertions(+), 35 deletions(-) create mode 100644 frappe/core/doctype/module_def/module_def.js create mode 100644 frappe/email/doctype/email_unsubscribe/email_unsubscribe.js create mode 100644 frappe/geo/doctype/country/country.js create mode 100644 frappe/workflow/doctype/workflow_action/workflow_action.js create mode 100644 frappe/workflow/doctype/workflow_state/workflow_state.js diff --git a/frappe/core/doctype/module_def/module_def.js b/frappe/core/doctype/module_def/module_def.js new file mode 100644 index 0000000000..5bb8db6d5c --- /dev/null +++ b/frappe/core/doctype/module_def/module_def.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Module Def', { + refresh: function(frm) { + + } +}); diff --git a/frappe/core/doctype/module_def/module_def.json b/frappe/core/doctype/module_def/module_def.json index 4978b8eebe..67ea9d2cea 100644 --- a/frappe/core/doctype/module_def/module_def.json +++ b/frappe/core/doctype/module_def/module_def.json @@ -3,10 +3,12 @@ "allow_import": 0, "allow_rename": 1, "autoname": "field:module_name", + "beta": 0, "creation": "2013-01-10 16:34:03", "custom": 0, "docstatus": 0, "doctype": "DocType", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -16,6 +18,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Module Name", @@ -25,6 +28,7 @@ "oldfieldtype": "Data", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -40,6 +44,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "App Name", @@ -47,6 +52,7 @@ "no_copy": 0, "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -59,13 +65,14 @@ "hide_toolbar": 0, "icon": "icon-sitemap", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-11-16 06:29:50.398063", + "modified": "2016-07-25 05:24:25.789580", "modified_by": "Administrator", "module": "Core", "name": "Module Def", @@ -112,6 +119,8 @@ "write": 0 } ], + "quick_entry": 1, "read_only": 0, - "read_only_onload": 0 + "read_only_onload": 0, + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/core/doctype/patch_log/patch_log.json b/frappe/core/doctype/patch_log/patch_log.json index edbd03bceb..3270a130ec 100644 --- a/frappe/core/doctype/patch_log/patch_log.json +++ b/frappe/core/doctype/patch_log/patch_log.json @@ -3,12 +3,14 @@ "allow_import": 0, "allow_rename": 0, "autoname": "PATCHLOG.#####", + "beta": 0, "creation": "2013-01-17 11:36:45", "custom": 0, "description": "List of patches executed", "docstatus": 0, "doctype": "DocType", "document_type": "System", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -39,13 +41,14 @@ "hide_toolbar": 0, "icon": "icon-cog", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-02-22 09:31:31.854246", + "modified": "2016-07-25 05:24:24.847433", "modified_by": "Administrator", "module": "Core", "name": "Patch Log", @@ -72,6 +75,8 @@ "write": 0 } ], + "quick_entry": 1, "read_only": 0, - "read_only_onload": 0 + "read_only_onload": 0, + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/core/doctype/role/role.json b/frappe/core/doctype/role/role.json index 0969b9bbc7..7567c24500 100644 --- a/frappe/core/doctype/role/role.json +++ b/frappe/core/doctype/role/role.json @@ -3,10 +3,12 @@ "allow_import": 0, "allow_rename": 1, "autoname": "field:role_name", + "beta": 0, "creation": "2013-01-08 15:50:01", "custom": 0, "docstatus": 0, "doctype": "DocType", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -65,13 +67,14 @@ "hide_toolbar": 0, "icon": "icon-bookmark", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-04-20 12:54:08.406706", + "modified": "2016-07-25 05:24:24.406260", "modified_by": "Administrator", "module": "Core", "name": "Role", @@ -138,7 +141,7 @@ "write": 0 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_order": "ASC", diff --git a/frappe/core/doctype/version/version.json b/frappe/core/doctype/version/version.json index ba9a975797..f9154be98a 100644 --- a/frappe/core/doctype/version/version.json +++ b/frappe/core/doctype/version/version.json @@ -3,11 +3,13 @@ "allow_import": 0, "allow_rename": 0, "autoname": "_VER.######", + "beta": 0, "creation": "2014-02-20 17:22:37", "custom": 0, "docstatus": 0, "doctype": "DocType", "document_type": "Setup", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -87,13 +89,14 @@ "hide_toolbar": 0, "icon": "icon-copy", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-02-22 07:59:43.968145", + "modified": "2016-07-25 05:24:24.954110", "modified_by": "Administrator", "module": "Core", "name": "Version", @@ -120,7 +123,9 @@ "write": 0 } ], + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, - "sort_order": "ASC" + "sort_order": "ASC", + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/custom/doctype/custom_script/custom_script.json b/frappe/custom/doctype/custom_script/custom_script.json index 26ddb10cff..fc87548660 100644 --- a/frappe/custom/doctype/custom_script/custom_script.json +++ b/frappe/custom/doctype/custom_script/custom_script.json @@ -9,6 +9,7 @@ "description": "Adds a custom script (client or server) to a DocType", "docstatus": 0, "doctype": "DocType", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -122,13 +123,14 @@ "hide_toolbar": 0, "icon": "icon-glass", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-05-14 09:22:45.601963", + "modified": "2016-07-25 05:24:24.245725", "modified_by": "Administrator", "module": "Custom", "name": "Custom Script", @@ -175,7 +177,7 @@ "write": 1 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_order": "ASC", diff --git a/frappe/data/languages.txt b/frappe/data/languages.txt index fd9e82cd50..973bc09344 100644 --- a/frappe/data/languages.txt +++ b/frappe/data/languages.txt @@ -22,6 +22,7 @@ hi हिंदी hr hrvatski hu magyar id Indonesia +is íslenska it italiano ja 日本語 km ភាសាខ្មែរ diff --git a/frappe/desk/doctype/note/note.json b/frappe/desk/doctype/note/note.json index e9c688d2e2..97a083a1f8 100644 --- a/frappe/desk/doctype/note/note.json +++ b/frappe/desk/doctype/note/note.json @@ -9,6 +9,7 @@ "docstatus": 0, "doctype": "DocType", "document_type": "Document", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -96,7 +97,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-06-13 16:55:17.639957", + "modified": "2016-07-25 05:24:24.137761", "modified_by": "Administrator", "module": "Desk", "name": "Note", @@ -123,7 +124,7 @@ "write": 1 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 1, "sort_order": "ASC", diff --git a/frappe/email/doctype/email_group/email_group.json b/frappe/email/doctype/email_group/email_group.json index 7a40b5fd71..5eab27bb1f 100644 --- a/frappe/email/doctype/email_group/email_group.json +++ b/frappe/email/doctype/email_group/email_group.json @@ -9,6 +9,7 @@ "docstatus": 0, "doctype": "DocType", "document_type": "Setup", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -72,7 +73,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-06-28 15:33:58.274566", + "modified": "2016-07-25 05:24:23.855996", "modified_by": "Administrator", "module": "Email", "name": "Email Group", @@ -100,7 +101,7 @@ "write": 1 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_field": "modified", diff --git a/frappe/email/doctype/email_group_member/email_group_member.json b/frappe/email/doctype/email_group_member/email_group_member.json index 916b06b024..52ee386fa1 100644 --- a/frappe/email/doctype/email_group_member/email_group_member.json +++ b/frappe/email/doctype/email_group_member/email_group_member.json @@ -9,6 +9,7 @@ "docstatus": 0, "doctype": "DocType", "document_type": "Document", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -97,7 +98,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-06-28 17:00:27.546534", + "modified": "2016-07-25 05:24:23.790234", "modified_by": "Administrator", "module": "Email", "name": "Email Group Member", @@ -125,7 +126,7 @@ "write": 1 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_field": "modified", diff --git a/frappe/email/doctype/email_unsubscribe/email_unsubscribe.js b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.js new file mode 100644 index 0000000000..9a022cf4ca --- /dev/null +++ b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Email Unsubscribe', { + refresh: function(frm) { + + } +}); diff --git a/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json index 71ea8cc2db..798c470319 100644 --- a/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +++ b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -2,11 +2,13 @@ "allow_copy": 0, "allow_import": 0, "allow_rename": 0, + "beta": 0, "creation": "2015-03-18 09:41:20.216319", "custom": 0, "docstatus": 0, "doctype": "DocType", "document_type": "System", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -16,6 +18,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Email", @@ -24,6 +27,7 @@ "permlevel": 0, "precision": "", "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -39,6 +43,7 @@ "fieldtype": "Link", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Reference DocType", @@ -48,6 +53,7 @@ "permlevel": 0, "precision": "", "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -63,6 +69,7 @@ "fieldtype": "Dynamic Link", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Reference Name", @@ -72,6 +79,7 @@ "permlevel": 0, "precision": "", "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -87,6 +95,7 @@ "fieldtype": "Check", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Global Unsubscribe", @@ -95,6 +104,7 @@ "permlevel": 0, "precision": "", "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -105,13 +115,15 @@ ], "hide_heading": 0, "hide_toolbar": 0, + "idx": 0, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-11-16 06:29:46.223148", + "modified": "2016-07-25 05:24:25.970291", "modified_by": "Administrator", "module": "Email", "name": "Email Unsubscribe", @@ -139,8 +151,10 @@ "write": 1 } ], + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_field": "modified", - "sort_order": "DESC" + "sort_order": "DESC", + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/geo/doctype/country/country.js b/frappe/geo/doctype/country/country.js new file mode 100644 index 0000000000..62159a1fe7 --- /dev/null +++ b/frappe/geo/doctype/country/country.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Country', { + refresh: function(frm) { + + } +}); diff --git a/frappe/geo/doctype/country/country.json b/frappe/geo/doctype/country/country.json index e2e03b5ebe..118361bbd2 100644 --- a/frappe/geo/doctype/country/country.json +++ b/frappe/geo/doctype/country/country.json @@ -3,11 +3,13 @@ "allow_import": 1, "allow_rename": 1, "autoname": "field:country_name", + "beta": 0, "creation": "2013-01-19 10:23:30", "custom": 0, "docstatus": 0, "doctype": "DocType", "document_type": "Setup", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -17,6 +19,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Country Name", @@ -42,6 +45,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Date Format", @@ -65,6 +69,7 @@ "fieldtype": "Text", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Time Zones", @@ -88,6 +93,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 1, "label": "Code", @@ -108,6 +114,7 @@ "hide_toolbar": 0, "icon": "icon-globe", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, @@ -115,7 +122,7 @@ "istable": 0, "max_attachments": 0, "menu_index": 0, - "modified": "2015-12-16 02:12:12.092442", + "modified": "2016-07-25 05:24:25.180255", "modified_by": "Administrator", "module": "Geo", "name": "Country", @@ -162,8 +169,10 @@ "write": 0 } ], + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_field": "country_name", - "sort_order": "ASC" + "sort_order": "ASC", + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/public/js/frappe/model/create_new.js b/frappe/public/js/frappe/model/create_new.js index 99fa5cd8e1..071266a981 100644 --- a/frappe/public/js/frappe/model/create_new.js +++ b/frappe/public/js/frappe/model/create_new.js @@ -308,8 +308,7 @@ frappe.new_doc = function (doctype, opts) { var route = frappe.get_route(); if(route && !(route[0]==='List' && route[1]===doc.doctype)) { - show_alert('' - + __('{0} {1} created', [doc.doctype, strip_html(title)]) + ''); + frappe.set_route('Form', doc.doctype, doc.name); } }); } diff --git a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js index 875a64dfd1..22a2327c71 100644 --- a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +++ b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js @@ -165,12 +165,15 @@ frappe.search = { _item = __(item).toLowerCase().replace(/-/g, " "); if(txt===_item || _item.indexOf(txt) !== -1) { var option = process(item); - option.match = item; - if(prepend) { - frappe.search.options = [option].concat(frappe.search.options); - } else { - frappe.search.options.push(option); + if(option) { + option.match = item; + + if(prepend) { + frappe.search.options = [option].concat(frappe.search.options); + } else { + frappe.search.options.push(option); + } } } }); @@ -275,12 +278,16 @@ frappe.search.verbs = [ // modules function(txt) { frappe.search.find(keys(frappe.modules), txt, function(match) { + var module = frappe.modules[match]; + + if(module._doctype) return; + ret = { label: __("Open {0}", [""+__(match)+""]), value: __("Open {0}", [__(match)]), } - if(frappe.modules[match].link) { - ret.route = [frappe.modules[match].link]; + if(module.link) { + ret.route = [module.link]; } else { ret.route = ["Module", match]; } diff --git a/frappe/website/doctype/blog_category/blog_category.json b/frappe/website/doctype/blog_category/blog_category.json index 011681c37e..9291c92b1c 100644 --- a/frappe/website/doctype/blog_category/blog_category.json +++ b/frappe/website/doctype/blog_category/blog_category.json @@ -9,6 +9,7 @@ "docstatus": 0, "doctype": "DocType", "document_type": "Setup", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -120,7 +121,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-06-27 12:25:12.502119", + "modified": "2016-07-25 05:24:23.923106", "modified_by": "Administrator", "module": "Website", "name": "Blog Category", @@ -167,7 +168,7 @@ "write": 0 } ], - "quick_entry": 0, + "quick_entry": 1, "read_only": 0, "read_only_onload": 0, "sort_order": "DESC", diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.js b/frappe/workflow/doctype/workflow_action/workflow_action.js new file mode 100644 index 0000000000..585846da1f --- /dev/null +++ b/frappe/workflow/doctype/workflow_action/workflow_action.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Workflow Action', { + refresh: function(frm) { + + } +}); diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.json b/frappe/workflow/doctype/workflow_action/workflow_action.json index a66d42b1ca..52d3176b73 100644 --- a/frappe/workflow/doctype/workflow_action/workflow_action.json +++ b/frappe/workflow/doctype/workflow_action/workflow_action.json @@ -3,11 +3,13 @@ "allow_import": 0, "allow_rename": 0, "autoname": "field:workflow_action_name", + "beta": 0, "creation": "2012-12-28 10:49:56", "custom": 0, "description": "Workflow Action Master", "docstatus": 0, "doctype": "DocType", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -17,6 +19,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 0, "label": "Workflow Action Name", @@ -24,6 +27,7 @@ "no_copy": 0, "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -36,13 +40,14 @@ "hide_toolbar": 0, "icon": "icon-flag", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-11-16 06:30:00.884948", + "modified": "2016-07-25 05:24:25.364341", "modified_by": "Administrator", "module": "Workflow", "name": "Workflow Action", @@ -69,6 +74,8 @@ "write": 1 } ], + "quick_entry": 1, "read_only": 0, - "read_only_onload": 0 + "read_only_onload": 0, + "track_seen": 0 } \ No newline at end of file diff --git a/frappe/workflow/doctype/workflow_state/workflow_state.js b/frappe/workflow/doctype/workflow_state/workflow_state.js new file mode 100644 index 0000000000..3b872ebf17 --- /dev/null +++ b/frappe/workflow/doctype/workflow_state/workflow_state.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Workflow State', { + refresh: function(frm) { + + } +}); diff --git a/frappe/workflow/doctype/workflow_state/workflow_state.json b/frappe/workflow/doctype/workflow_state/workflow_state.json index 38fb1bf565..b8049fa4ee 100644 --- a/frappe/workflow/doctype/workflow_state/workflow_state.json +++ b/frappe/workflow/doctype/workflow_state/workflow_state.json @@ -3,12 +3,14 @@ "allow_import": 1, "allow_rename": 0, "autoname": "field:workflow_state_name", + "beta": 0, "creation": "2012-12-28 10:49:56", "custom": 0, "description": "Workflow state represents the current state of a document.", "docstatus": 0, "doctype": "DocType", "document_type": "Setup", + "editable_grid": 0, "fields": [ { "allow_on_submit": 0, @@ -18,6 +20,7 @@ "fieldtype": "Data", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 0, "label": "State", @@ -25,6 +28,7 @@ "no_copy": 0, "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -41,6 +45,7 @@ "fieldtype": "Select", "hidden": 1, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 0, "label": "Icon", @@ -49,6 +54,7 @@ "options": "\nglass\nmusic\nsearch\nenvelope\nheart\nstar\nstar-empty\nuser\nfilm\nth-large\nth\nth-list\nok\nremove\nzoom-in\nzoom-out\noff\nsignal\ncog\ntrash\nhome\nfile\ntime\nroad\ndownload-alt\ndownload\nupload\ninbox\nplay-circle\nrepeat\nrefresh\nlist-alt\nlock\nflag\nheadphones\nvolume-off\nvolume-down\nvolume-up\nqrcode\nbarcode\ntag\ntags\nbook\nbookmark\nprint\ncamera\nfont\nbold\nitalic\ntext-height\ntext-width\nalign-left\nalign-center\nalign-right\nalign-justify\nlist\nindent-left\nindent-right\nfacetime-video\npicture\npencil\nmap-marker\nadjust\ntint\nedit\nshare\ncheck\nmove\nstep-backward\nfast-backward\nbackward\nplay\npause\nstop\nforward\nfast-forward\nstep-forward\neject\nchevron-left\nchevron-right\nplus-sign\nminus-sign\nremove-sign\nok-sign\nquestion-sign\ninfo-sign\nscreenshot\nremove-circle\nok-circle\nban-circle\narrow-left\narrow-right\narrow-up\narrow-down\nshare-alt\nresize-full\nresize-small\nplus\nminus\nasterisk\nexclamation-sign\ngift\nleaf\nfire\neye-open\neye-close\nwarning-sign\nplane\ncalendar\nrandom\ncomment\nmagnet\nchevron-up\nchevron-down\nretweet\nshopping-cart\nfolder-close\nfolder-open\nresize-vertical\nresize-horizontal\nhdd\nbullhorn\nbell\ncertificate\nthumbs-up\nthumbs-down\nhand-right\nhand-left\nhand-up\nhand-down\ncircle-arrow-right\ncircle-arrow-left\ncircle-arrow-up\ncircle-arrow-down\nglobe\nwrench\ntasks\nfilter\nbriefcase\nfullscreen", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -65,6 +71,7 @@ "fieldtype": "Select", "hidden": 0, "ignore_user_permissions": 0, + "ignore_xss_filter": 0, "in_filter": 0, "in_list_view": 0, "label": "Style", @@ -73,6 +80,7 @@ "options": "\nPrimary\nInfo\nSuccess\nWarning\nDanger\nInverse", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -85,13 +93,14 @@ "hide_toolbar": 0, "icon": "icon-flag", "idx": 1, + "image_view": 0, "in_create": 0, "in_dialog": 0, "is_submittable": 0, "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-11-16 06:30:00.960083", + "modified": "2016-07-25 05:24:25.280644", "modified_by": "Administrator", "module": "Workflow", "name": "Workflow State", @@ -118,6 +127,8 @@ "write": 1 } ], + "quick_entry": 1, "read_only": 0, - "read_only_onload": 0 + "read_only_onload": 0, + "track_seen": 0 } \ No newline at end of file From 2b0c3244c1d9caf11fd2b7d75adf9c98a975c6f8 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 25 Jul 2016 15:02:50 +0530 Subject: [PATCH 3/4] [lang] icelandic --- frappe/translations/is.csv | 2216 ++++++++++++++++++++++++++++++++++++ 1 file changed, 2216 insertions(+) diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv index e69de29bb2..b3e0e3b858 100644 --- a/frappe/translations/is.csv +++ b/frappe/translations/is.csv @@ -0,0 +1,2216 @@ +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +247,Press Esc to close,Ýttu á Esc til að loka +apps/frappe/frappe/desk/form/assign_to.py +153,"A new task, {0}, has been assigned to you by {1}. {2}","Ný verkefni, {0}, hefur verið úthlutað af {1}. {2}" +DocType: Email Queue,Email Queue records.,Netfang Biðröð færslur. +apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Post +apps/frappe/frappe/config/setup.py +109,Rename many items by uploading a .csv file.,Endurnefna mörg atriði með því að hlaða .csv skrá. +DocType: Workflow State,pause,hlé +apps/frappe/frappe/www/desk.py +18,You are not permitted to access this page.,Þú hefur ekki leyfi til að skoða þessa síðu. +DocType: About Us Settings,Website,Vefsíða +DocType: User,Facebook Username,Facebook Notandanafn +DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Ath: Margar fundur verður leyft að ræða farsíma +apps/frappe/frappe/email/queue.py +155,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ekki er hægt að senda þennan tölvupóst. Þú hefur farið yfir sendingu mörk {0} tölvupósti fyrir þennan mánuð. +apps/frappe/frappe/public/js/legacy/form.js +745,Permanently Submit {0}?,Varanlega Senda {0}? +apps/frappe/frappe/client.py +171,Invalid file path: {0},Ógild skrá Slóð: {0} +DocType: Workflow State,eye-open,auga-opinn +DocType: Email Queue,Send After,Senda Eftir +apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Vinsamlegast veldu skrána eða url +apps/frappe/frappe/public/js/frappe/views/treeview.js +62,{0} Tree,{0} Tree +DocType: User,Username,Notandanafn +DocType: DocField,DocField,DocField +DocType: DocField,Options,Valmöguleikar +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +402,Cannot edit standard fields,Ekki er hægt að breyta venjulegu sviðum +DocType: Print Format,Print Format Builder,Print Format Builder +apps/frappe/frappe/public/js/frappe/ui/page.js +4,Form,form +DocType: Report,Report Manager,skýrsla Manager +DocType: Workflow,Document States,skjal States +apps/frappe/frappe/public/js/frappe/views/pageview.js +102,Sorry! I could not find what you were looking for.,Afsakið! Ég gat ekki fundið það sem þú varst að leita að. +apps/frappe/frappe/config/core.py +42,Logs,logs +DocType: DocPerm,This role update User Permissions for a user,Þetta hlutverk uppfæra notanda heimildir notanda +apps/frappe/frappe/public/js/frappe/model/model.js +479,Rename {0},Endurnefna {0} +DocType: Workflow State,zoom-out,Zoom-út +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi þess er opinn +apps/frappe/frappe/model/document.py +859,Table {0} cannot be empty,Tafla {0} má ekki vera autt +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,With Ledgers,með ledgers +DocType: Communication,Reference Owner,Tilvísun Eigandi +DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Minnsta blóðrás brot einingu (mynt). Fyrir td 1 prósent fyrir USD og það ætti að vera slegið eins 0,01" +DocType: Social Login Keys,GitHub,GitHub +apps/frappe/frappe/model/base_document.py +509,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/document.py +833,Beginning with,Upphafið með +apps/frappe/frappe/core/page/data_import_tool/exporter.py +51,Data Import Template,Gögn Flytja Snið +apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent +DocType: About Us Settings,"""Team Members"" or ""Management""","Team Members" eða "Management" +apps/frappe/frappe/core/doctype/doctype/doctype.py +326,Default for 'Check' type of field must be either '0' or '1',Sjálfgefið fyrir 'Athugaðu' tegund sviði hlýtur að vera annað hvort "0" eða "1" +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +45,Yesterday,Í gær +apps/frappe/frappe/public/js/frappe/views/test_runner.js +10,Test Runner,próf Runner +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +86,Show Images,Sýna myndir +DocType: Email Account,Enable Incoming,Virkja á Móttaka +DocType: Workflow State,Danger,Danger +apps/frappe/frappe/www/login.html +18,Email Address,Netfang +DocType: Workflow State,th-large,Th-stór +DocType: Communication,Unread Notification Sent,Ólesið tilkynning send +apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You need {0} role to export.,Export ekki leyfð. Þú þarft {0} hlutverki til útflutnings. +DocType: Email Group,Email Group,Tölvupóstur Group +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +11,Not Like,Ekki eins og +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +177,Set the display label for the field,Stilla skjáinn merki fyrir sviði +apps/frappe/frappe/model/document.py +850,Incorrect value: {0} must be {1} {2},Rangt gildi: {0} verður að vera {1} {2} +apps/frappe/frappe/config/setup.py +238,"Change field properties (hide, readonly, permission etc.)","Breyting sviði eiginleikar (fela, skrifréttinda, leyfi o.fl.)" +DocType: Workflow State,lock,læsa +apps/frappe/frappe/config/website.py +74,Settings for Contact Us Page.,Stillingar fyrir Hafðu samband síðunni. +apps/frappe/frappe/core/doctype/user/user.py +644,Administrator Logged In,Stjórnandi innskráður +DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Samskiptakostir, eins og "Velta fyrirspurn, Support Fyrirspurn" osfrv hver á nýja línu eða aðskilin með kommum." +apps/frappe/frappe/public/js/frappe/ui/editor.js +446,Insert,Setja inn +apps/frappe/frappe/public/js/frappe/form/link_selector.js +20,Select {0},Veldu {0} +DocType: Print Settings,Classic,Classic +DocType: Desktop Icon,Color,Litur +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +52,For ranges,fyrir svið +DocType: Workflow State,indent-right,inndráttur hægri +apps/frappe/frappe/public/js/frappe/ui/upload.html +12,Web Link,Web Link +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +41,1 minute ago,1 mínútu síðan +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +33,"Recommended bulk editing records via import, or understanding the import format.","Mælt magnbreytingar færslur um innflutning, eða skilja innflutningur sniði." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +36,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Burtséð frá System Manager, hlutverk með Set notendaheimilda rétt er hægt að stilla heimildir fyrir öðrum notendum til þess Document Type." +DocType: Company History,Company History,Saga fyrirtækisins +apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +9,Reset,endurstilla +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Uppsetning> Notandi +DocType: Workflow State,volume-up,hækka +apps/frappe/frappe/core/page/data_import_tool/importer.py +46,Only allowed {0} rows in one import,Aðeins leyfð {0} raðir í einni innflutningi +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +125,Refresh Stats,Endurnýja Stats +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To import or update records, you must first download the template for importing.","Til innflutnings eða uppfæra skrár, verður þú fyrst að sækja sniðmát fyrir innflutning." +DocType: DocType,Default Print Format,Sjálfgefið Prenta Format +DocType: Workflow State,Tags,Tags +apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ekkert: Lok Workflow +apps/frappe/frappe/model/db_schema.py +340,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} reit er ekki hægt að setja eins og einstök í {1}, þar sem það eru ekki einstök fyrirliggjandi gildi" +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,skjal Tegundir +DocType: Workflow,Workflow State Field,Workflow State Field +DocType: Blog Post,Guest,Guest +DocType: DocType,Title Field,Title Field +apps/frappe/frappe/utils/password_strength.py +94,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Endurtekur eins og "abcabcabc" eru aðeins örlítið erfiðara að giska en "abc" +apps/frappe/frappe/core/doctype/user/user.py +641,"If you think this is unauthorized, please change the Administrator password.",Ef þú heldur að þetta sé óheimilt skaltu breyta Stjórnandi lykilorð. +apps/frappe/frappe/email/doctype/email_account/email_account.py +65,{0} is mandatory,{0} er nauðsynlegur +DocType: Workflow State,eject,kasta +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,Hjálp fyrir heimildir notanda +DocType: Standard Reply,Owner,eigandi +DocType: Communication,Visit,heimsókn +DocType: Translation,Translation,þýðingar +apps/frappe/frappe/desk/page/applications/application_row.html +16,Install,setja +DocType: Custom Script,Client,viðskiptavinur +apps/frappe/frappe/public/js/legacy/form.js +480,This form has been modified after you have loaded it,Þessi mynd hefur verið breytt eftir að þú hefur hlaðið hana +apps/frappe/frappe/config/website.py +23,Embed image slideshows in website pages.,Fella mynd slideshows í vefsíðunni. +apps/frappe/frappe/email/doctype/newsletter/newsletter.js +19,Send,Senda +DocType: Workflow Action,Workflow Action Name,Workflow Action Name +apps/frappe/frappe/core/doctype/doctype/doctype.py +172,DocType can not be merged,DOCTYPE er ekki hægt að sameinuð +DocType: Web Form Field,Fieldtype,Fieldtype +apps/frappe/frappe/utils/password_strength.py +164,Capitalization doesn't help very much.,Hástafir hjálpar ekki mjög mikið. +DocType: Error Snapshot,Friendly Title,Friendly Title +DocType: Newsletter,Email Sent?,Tölvupóstur sendur? +apps/frappe/frappe/desk/form/save.py +50,Did not cancel,Fékk ekki að hætta +DocType: Workflow State,plus,plús +apps/frappe/frappe/config/desktop.py +19,File Manager,File Manager +DocType: Scheduler Log,Scheduler Log,tímaáætlun Log +apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,þú +DocType: Website Theme,lowercase,lágstafir +DocType: Print Format,Helvetica,Helvetica +DocType: Note,Everyone can read,Allir geta lesið +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +32,Newsletter has already been sent,Fréttabréf hefur þegar verið send +apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Vinsamlegast tilgreinið notanda +DocType: Email Unsubscribe,Email Unsubscribe,Tölvupóstur Afskrá +DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Veldu mynd af ca breidd 150 px með gagnsæjum bakgrunni fyrir besta árangur. +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +12,Add multiple rows,Bæta margar raðir +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +527,The first user will become the System Manager (you can change this later).,Fyrsti Notandinn mun verða System Manager (þú getur breytt þessu seinna). +,App Installer,app Installer +DocType: Workflow State,circle-arrow-up,hring-ör-upp +apps/frappe/frappe/public/js/frappe/upload.js +156,Uploading...,Hleður inn ... +DocType: Workflow State,italic,skáletrað +apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Fyrir alla +apps/frappe/frappe/core/doctype/doctype/doctype.py +537,{0}: Cannot set Import without Create,{0}: Get ekki stillt Import án Búa +apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event og önnur dagatöl. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +677,Drag to sort columns,Dragðu til að raða dálkum +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Breidd er hægt að setja í px eða%. +apps/frappe/frappe/public/js/frappe/form/print.js +99,Start,Start +DocType: User,First Name,Fyrsta nafn +apps/frappe/frappe/core/doctype/file/file.py +148,Cannot delete Home and Attachments folders,Ekki hægt að eyða Heimili og viðhengi möppur +apps/frappe/frappe/config/desk.py +19,Files,skrár +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Heimildir fá beitt á notenda á grundvelli hvaða hlutverk þeir eru falin. +apps/frappe/frappe/public/js/frappe/views/communication.js +373,You are not allowed to send emails related to this document,Þú hefur ekki heimild til að senda tölvupóst sem tengjast þessu skjali +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Þú hefur ekki heimild til að eyða staðlað Website Þema +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +199,Example,Dæmi +DocType: Workflow State,gift,gjöf +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +203,Reqd,reqd +apps/frappe/frappe/core/doctype/communication/email.py +233,Unable to find attachment {0},Ekki er hægt að finna í viðhengi {0} +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +191,Assign a permission level to the field.,Úthluta heimildarstig á sviði. +apps/frappe/frappe/public/js/frappe/request.js +75,The resource you are looking for is not available,The úrræði sem þú ert að leita að er ekki í boði +apps/frappe/frappe/config/setup.py +44,Show / Hide Modules,Sýna / Fela Modules +apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Slökkva Report +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +11,"","" +DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {} +DocType: Version,Doclist JSON,skjalalisti JSON +DocType: Bulk Update,Bulk Update,Magn Uppfæra +DocType: Workflow State,chevron-up,Chevron upp +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +37,Documentation,Documentation +DocType: DocShare,Internal record of document shares,Innri met skjal hluta +DocType: Workflow State,Comment,athugasemd +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +86,Show List,Sýna List +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Þú getur breytt framlögð skjöl með því að loka þá og þá, um breytingu á þeim." +DocType: DocField,Display,sýna +DocType: Email Group,Total Subscribers,Samtals Áskrifendur +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ef Hlutverk hefur ekki aðgang í Level 0, eru þá hærri stigum tilgangslaust." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +574,Save As,Vista sem +DocType: Communication,Seen,séð +apps/frappe/frappe/public/js/frappe/form/layout.js +97,Show more details,Sýna fleiri upplýsingar +DocType: System Settings,Run scheduled jobs only if checked,Keyra áætlunarflug störf aðeins ef hakað +DocType: User,"Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set ""match"" permission rules. To see list of fields, go to ""Customize Form"".","Sláðu Sjálfgefna gildið sviðum (lykla) og gildi. Ef þú bætir mörg gildi fyrir sviði, sá fyrsti verður valinn. Þessar vanskil eru einnig notuð til að setja "passa" leyfi reglur. Til að sjá lista yfir sviðum, fara í "Customize Form"." +DocType: Communication,Message,skilaboð +DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Útprentun á sviði, ef svæðið er dálkur í töflunni" +DocType: Dropbox Backup,Dropbox Access Key,Dropbox Access Key +DocType: Workflow State,headphones,heyrnartól +DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,td replies@yourcomany.com. Öll svör munu koma til þessa pósthólfið. +apps/frappe/frappe/templates/includes/login/login.js +35,Valid email and name required,Gilt netfang og nafn krafist +DocType: DocType,Hide Heading,fela fyrirsögn +apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Hópar DocTypes +DocType: Workflow State,remove-circle,fjarlægja-hring +apps/frappe/frappe/config/website.py +64,Javascript to append to the head section of the page.,Javascript til að bæta við höfuðið hluta síðunnar. +apps/frappe/frappe/www/print.py +80,Not allowed to print draft documents,Ekki leyft að prenta drög skjöl +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Reset to defaults,Núllstilla +DocType: Workflow,Transition Rules,umskipti Reglur +apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Dæmi: +DocType: Workflow,Defines workflow states and rules for a document.,Skilgreinir workflow ríki og reglur um skjal. +DocType: Workflow State,Filter,Sía +DocType: DocType,Show this field as title,Sýna þessu sviði eins og titill +apps/frappe/frappe/model/db_schema.py +546,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} getur ekki hafa sérstaka stafi eins {1} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +339,Select Your Language,Veldu tungumálið þitt +apps/frappe/frappe/config/setup.py +116,Update many values at one time.,Uppfæra marga gildi í einu. +apps/frappe/frappe/model/document.py +504,Error: Document has been modified after you have opened it,Villa: Skjal hefur verið breytt eftir að þú hefur opnað hana +apps/frappe/frappe/core/doctype/doctype/doctype.py +558,{0}: Cannot set Assign Submit if not Submittable,{0}: Get ekki stillt á Velja Leggja ef ekki Submittable +DocType: Social Login Keys,Facebook,Facebook +apps/frappe/frappe/www/list.py +52,"Filtered by ""{0}""",Síuð með "{0}" +DocType: DocType,Administrator,stjórnandi +apps/frappe/frappe/desk/page/chat/chat.js +54,Message from {0},Skilaboð frá {0} +DocType: Communication,Closed,lokað +DocType: Blog Settings,Blog Title,Blog Title +apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard hlutverk er ekki mögulegt +DocType: Newsletter,Newsletter,Fréttabréf +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12,Edit to set heading,Breyta til að setja yfirskrift +DocType: About Us Settings,Team Members,Liðsfélagar +apps/frappe/frappe/public/js/frappe/upload.js +83,Please attach a file or set a URL,Hengdu skrá eða setja vefslóð +DocType: Async Task,System Manager,System Manager +DocType: DocField,Permissions,heimildir +DocType: Dropbox Backup,Allow Dropbox Access,Leyfa Dropbox aðgang +DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL Skilyrði. Dæmi: Staða = "Open" +DocType: User,Get your globally recognized avatar from Gravatar.com,Fá heimsvísu viðurkennd avatar þinn frá Gravatar.com +apps/frappe/frappe/limits.py +25,"Your subscription expired on {0}. To renew, {1}.","Áskriftin þín rann {0}. Að endurnýja, {1}." +DocType: Workflow State,plus-sign,plús-merki +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +22,Setup already complete,Skipulag þegar lokið +apps/frappe/frappe/__init__.py +852,App {0} is not installed,App {0} er ekki uppsett +DocType: Workflow State,Refresh,Uppfæra +DocType: Event,Public,Public +apps/frappe/frappe/public/js/frappe/ui/listing.js +52,Nothing to show,Ekkert til að sýna +apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,líkaði By +apps/frappe/frappe/public/js/frappe/toolbar.js +28,Email Support,Email Stuðningur +DocType: DocField,Print Hide If No Value,Prenta Fela Ef No Value +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +211,Upload Attachment,Hlaða Attachment +DocType: Block Module,Block Module,Block Module +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Flytja Snið +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +404,No permission to edit,Engin heimild til að breyta +DocType: Desktop Icon,Module,Module +DocType: Email Alert,Send Alert On,Senda viðvörun á +DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Aðlaga miðanum Prenta Fela, Default o.fl." +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Búa til nýtt snið +DocType: Customize Form,Is Table,er Tafla +DocType: Website Settings,Set Banner from Image,Setja Banner frá Image +apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Ný tenging hefur verið búin til fyrir þig á {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +362,Enter Email Recipient(s),Sláðu Email Viðtakandi (s) +DocType: Print Format,Verdana,Verdana +apps/frappe/frappe/utils/bot.py +77,Can't identify open {0}. Try something else.,Ekki er hægt að bera kennsl á opinn {0}. Prófaðu eitthvað annað. +apps/frappe/frappe/core/doctype/user/user.py +244,User {0} cannot be deleted,User {0} getur ekki eytt +apps/frappe/frappe/public/js/frappe/request.js +94,Another transaction is blocking this one. Please try again in a few seconds.,Annar viðskiptin er sljór þetta einn. Vinsamlegast reyndu aftur eftir nokkrar sekúndur. +DocType: Desktop Icon,App,app +DocType: Communication,Attachment,viðhengi +DocType: Property Setter,Field Name,Field Name +apps/frappe/frappe/public/js/frappe/misc/utils.js +132,or,eða +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +112,module name...,mát nafn ... +apps/frappe/frappe/templates/generators/web_form.html +276,Continue,Halda áfram +DocType: Custom Field,Fieldname,FIELDNAME +DocType: Workflow State,certificate,vottorð +DocType: User,Tile,flísar +apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,First data column must be blank.,Fyrst gögn dálkur verður auður. +DocType: Workflow State,Print,Print +DocType: User,Restrict IP,Takmarka IP +apps/frappe/frappe/email/smtp.py +197,Unable to send emails at this time,Ekki er hægt að senda tölvupóst á þessum tíma +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +63,Search or type a command,Leitaðu eða slá inn skipun +DocType: Communication,Timeline Name,Timeline Name +DocType: Email Account,e.g. smtp.gmail.com,td smtp.gmail.com +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366,Add A New Rule,Bæta við nýrri reglu +apps/frappe/frappe/core/page/usage_info/usage_info.html +91,Database Size,Database Size +apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Eitt síðasta skref +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +52,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Heiti skjals (DOCTYPE) sem þú vilt þessu sviði að vera tengd. td viðskiptavinur +DocType: User,Roles Assigned,hlutverk Úthlutað +DocType: Top Bar Item,Parent Label,Parent Label +apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Fyrirspurnin hefur verið móttekin. Við munum svara innan skamms. Ef þú hefur einhverjar frekari upplýsingar, vinsamlegast svara þessum pósti." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Heimildir eru sjálfkrafa þýða að stöðluðum skýrslum og leitir. +DocType: Event,Repeat Till,endurtaka Till +apps/frappe/frappe/core/doctype/file/file_list.js +176,New,nýtt +DocType: System Settings,Loading...,Loading ... +DocType: DocField,Password,Lykilorð +DocType: Blogger,Will be used in url (usually first name).,Verður notað í url (yfirleitt fyrsta nafn). +apps/frappe/frappe/client.py +63,Can not edit Read Only fields,Get ekki breytt Lesa Aðeins sviðum +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Breyta fyrirsögn +DocType: File,File URL,File URL +apps/frappe/frappe/email/doctype/email_group/email_group.js +27,Add Subscribers,Bæta Áskrifandi +apps/frappe/frappe/desk/doctype/event/event.py +64,Upcoming Events for Today,Næstu viðburðir í dag +DocType: Email Alert Recipient,Email By Document Field,Netfang By Document Field +apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,uppfærsla +apps/frappe/frappe/email/receive.py +61,Cannot connect: {0},Get ekki tengst: {0} +apps/frappe/frappe/utils/password_strength.py +154,A word by itself is easy to guess.,Orð af sjálfu sér er auðvelt að giska. +apps/frappe/frappe/utils/nestedset.py +218,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Samruni er aðeins mögulegt á milli Group til samstæðunnar eða Leaf Hnútur-til-blaða hnút +apps/frappe/frappe/utils/file_manager.py +43,Added {0},Bætti {0} +DocType: Currency,Fraction Units,brot Einingar +DocType: Communication,Type,Gerð +DocType: Communication,Subject,Subject +apps/frappe/frappe/core/doctype/docshare/docshare.py +36,User is mandatory for Share,Notandi er nauðsynlegur fyrir Share +DocType: DocField,Hidden,falinn +apps/frappe/frappe/model/base_document.py +436,{0} must be set first,{0} verður að setja fyrst +apps/frappe/frappe/utils/password_strength.py +29,"Use a few words, avoid common phrases.","Nota nokkur orð, forðast algengar setningar." +DocType: Workflow State,plane,flugvél +apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ef þú ert að senda nýjar færslur, "Nöfn Series" verður nauðsynlegur, ef til staðar." +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +62,Get Alerts for Today,Fá tilkynningar í dag +apps/frappe/frappe/core/doctype/doctype/doctype.py +165,DocType can only be renamed by Administrator,DOCTYPE er einungis hægt að endurnefna með Administrator +DocType: Report,JSON,JSON +apps/frappe/frappe/core/doctype/doctype/doctype.py +377,Fold can not be at the end of the form,Fold getur ekki verið í lok formi +DocType: Communication,Bounced,hopp +apps/frappe/frappe/config/setup.py +14,System and Website Users,System og Website Notendur +DocType: Workflow Document State,Doc Status,Doc Staða +DocType: Translation,Language Code,Tungumál Code +apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +93,"Your download is being built, this may take a few moments...","Niðurhalið er verið að byggja, þetta getur tekið nokkra stund ..." +apps/frappe/frappe/public/js/frappe/ui/listing.html +6,Add Filter,Bæta Sía +DocType: Web Page,Begin this page with a slideshow of images,Byrjaðu þessa síðu með myndasýningu af myndum +apps/frappe/frappe/utils/data.py +525,{0} and {1},{0} og {1} +DocType: Version,Docname,DOCNAME +apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,útgáfa aftur +DocType: About Us Settings,Website Manager,Vefsíða Manager +DocType: Event Role,Event Role,Event hlutverk +apps/frappe/frappe/public/js/frappe/ui/editor.html +64,Indent (Tab),Undirlið (Tab) +apps/frappe/frappe/model/document.py +525,Document Queued,skjal biðröð +DocType: Desktop Icon,List,List +DocType: Communication,Link Name,Link Name +DocType: Page Role,Page Role,Page hlutverk +apps/frappe/frappe/core/doctype/doctype/doctype.py +307,Field {0} in row {1} cannot be hidden and mandatory without default,"Field {0} í röð {1}, fær ekki dulist og nauðsynlegur án vanræksla" +DocType: System Settings,mm/dd/yyyy,mm / dd / áááá +DocType: Print Settings,Send document web view link in email,Senda skjal vefur útlit tengil í tölvupósti +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +16,Previous,fyrri +apps/frappe/frappe/email/doctype/email_account/email_account.py +356,Re:,Re: +DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-mynt. Fyrir td "Cent" +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Veldu skrá innsend +DocType: Letter Head,Check this to make this the default letter head in all prints,Hakaðu við þetta til að gera þetta sjálfgefið bréf höfuð í öllum framköllun +DocType: Print Format,Server,Server +DocType: Desktop Icon,Link,Link +apps/frappe/frappe/utils/file_manager.py +93,No file attached,Engin skrá viðhengi +DocType: Version,Version,útgáfa +DocType: User,Fill Screen,fylla skjáinn +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +560,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ekki er hægt að birta þetta tré skýrslu, vegna þess að vantar gögn. Líklegast, það er verið síað út vegna heimildir." +apps/frappe/frappe/public/js/frappe/form/grid.js +470,Edit via Upload,Breyta um Senda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +108,"document type..., e.g. customer","skjal tegund ..., td viðskiptavinur" +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +32,The Condition '{0}' is invalid,The Ástand '{0}' er ógild +DocType: Workflow State,barcode,Barcode +apps/frappe/frappe/config/setup.py +250,Add your own translations,Bæta við eigin þýðingum +DocType: Country,Country Name,Land Name +apps/frappe/frappe/www/login.html +73,Have an account? ,Með reikning? +DocType: About Us Team Member,About Us Team Member,Um okkur lið félagi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Heimildir eru sett á hlutverkum og Skjal tegundir (kallaðar DocTypes) með því að setja rétt eins að lesa, skrifa, búa til, eyða, Senda, Hætta, breytt, Report, innflutningur, útflutningur, prenta, tölvupóst og setja heimildir notanda." +DocType: Event,Wednesday,miðvikudagur +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Burtséð frá hlutverki byggt leyfi reglum, getur þú sótt notendaheimilda byggt á DocTypes." +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Þessar heimildir gilda fyrir öll viðskipti þar sem heimilt færsla er tengd. Til dæmis, ef fyrirtæki C er bætt við notendaheimilda af notandi X, notandi X mun aðeins vera fær um að sjá færslur sem hefur fyrirtækið C sem tengd gildi." +apps/frappe/frappe/core/doctype/doctype/doctype.py +425,Image field must be a valid fieldname,Mynd reitur verður að vera gilt FIELDNAME +DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nafn) einingarinnar sem eign er að setja +apps/frappe/frappe/limits.py +76,"To renew, {0}.","Að endurnýja, {0}." +DocType: Website Settings,Website Theme Image Link,Vefsíða Þema Image Link +DocType: Workflow State,exclamation-sign,upphrópun-merki +apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Sýna Heimildir +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,Timeline field must be a Link or Dynamic Link,Timeline reitur verður að vera Link eða Dynamic Link +DocType: Website Theme,Hide Sidebar,fela Sidebar +apps/frappe/frappe/integrations/doctype/dropbox_backup/dropbox_backup.py +218,Please install dropbox python module,Vinsamlegast settu geymslusvæði Python mát +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +18,Gantt,Gantt +apps/frappe/frappe/templates/print_formats/standard.html +18,Page {0} of {1},Page {0} af {1} +DocType: About Us Settings,Introduce your company to the website visitor.,Kynna fyrirtækið þitt the website gestur. +apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,til +apps/frappe/frappe/model/rename_doc.py +345,Successful: {0} to {1},Vel heppnuðu: {0} til {1} +apps/frappe/frappe/print/doctype/print_format/print_format.js +14,Please duplicate this to make changes,Vinsamlegast afrit þetta til að gera breytingar +apps/frappe/frappe/utils/pdf.py +33,PDF generation failed because of broken image links,PDF kynslóð mistókst vegna brotinn myndatenglum +DocType: Print Settings,Font Size,Leturstærð +DocType: System Settings,Disable Standard Email Footer,Slökkva á Standard Email Footer +DocType: Workflow State,facetime-video,FaceTime-video +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +83,1 comment,1 athugasemd +DocType: Email Alert,Days Before,dögum áður +apps/frappe/frappe/website/doctype/website_settings/website_settings.js +84,Select a Banner Image first.,Veldu borðamyndina fyrst. +DocType: Workflow State,volume-down,rúmmál niður +DocType: Email Account,Send Notification to,Senda tilkynningu til +DocType: DocField,Collapsible,fellanlegur +DocType: Translation,Source Data,Source Data +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +656,Saved,Vistað +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Options for select. Each option on a new line.,Valkostir fyrir að velja. Hver valkostur á nýja línu. +apps/frappe/frappe/public/js/legacy/form.js +768,Permanently Cancel {0}?,Varanlega Hætta {0}? +DocType: Workflow State,music,tónlist +apps/frappe/frappe/config/setup.py +66,Settings,Stillingar +apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Vinsamlegast tilgreinið DOCTYPE +apps/frappe/frappe/public/js/frappe/ui/listing.js +57,More,meira +apps/frappe/frappe/public/js/frappe/model/model.js +485,Rename,endurnefna +DocType: Print Format,Format Data,Format Data +DocType: Communication,Like,eins +DocType: Customize Form Field,Customize Form Field,Sérsníða Form Field +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,að leyfa notanda +apps/frappe/frappe/config/setup.py +54,Check which Documents are readable by a User,Athugaðu hvaða Skjöl eru læsileg af notanda +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +174,use % as wildcard,notaðu% sem algildisstaf +DocType: User,Reset Password Key,Endurstilla lykilorð Key +DocType: Email Account,Enable Auto Reply,Virkja sjálfvirka svar +apps/frappe/frappe/core/doctype/scheduler_log/scheduler_log_list.js +7,Not Seen,ekki séð +DocType: Workflow State,zoom-in,stækka í +apps/frappe/frappe/email/queue.py +176,Unsubscribe from this list,Segja upp áskrift að þessum lista +apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Tilvísun DOCTYPE og tilvísun Name þarf +apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Málskipanarvilla í sniðmáti +DocType: DocField,Width,breidd +DocType: Email Account,Notify if unreplied,Tilkynna ef unreplied +DocType: DocType,Fields,Fields +DocType: System Settings,Your organization name and address for the email footer.,Samtökin nafn þitt og heimilisfang fyrir the email fót. +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Parent Tafla +apps/frappe/frappe/config/desktop.py +41,Developer,Hönnuður +DocType: Communication,Created,búið +apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} í röð {1} getur ekki bæði slóðina og barn atriði +apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Root {0} getur ekki eytt +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,No comments yet,Engar athugasemdir enn sem komið er +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +120,Both DocType and Name required,Bæði DOCTYPE og Name krafist +apps/frappe/frappe/model/document.py +546,Cannot change docstatus from 1 to 0,Get ekki breytt docstatus frá 1 til 0 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +38,Welcome,Velkomin +apps/frappe/frappe/desk/page/applications/applications.js +95,Installed Apps,uppsett smáforrit +DocType: Communication,Open,Open +DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Skilgreinir aðgerðir á ríkjum og næsta skref og leyfa hlutverkum. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Sem bestu starfshætti, framselja ekki sama mengi leyfi reglu í mismunandi hlutverkum. Þess í stað, setti mörgum hlutverkum á sama notanda." +DocType: Web Form,Message to be displayed on successful completion,Skilaboð að vera birt á árangursríka lokið +DocType: Contact Us Settings,Address Title,Heimilisfang Titill +DocType: Website Settings,Footer Items,Footer Items +apps/frappe/frappe/public/js/frappe/ui/page.html +23,Menu,matseðill +DocType: DefaultValue,DefaultValue,DefaultValue +DocType: Dropbox Backup,Daily,Daily +apps/frappe/frappe/config/setup.py +19,User Roles,User Hlutverk +DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eign Setter hnekkir staðlað DOCTYPE eða Field eign +apps/frappe/frappe/core/doctype/user/user.py +483,Cannot Update: Incorrect / Expired Link.,Get ekki Uppfæra: Rangt / útrunnið Link. +apps/frappe/frappe/utils/password_strength.py +53,Better add a few more letters or another word,Betri bæta við nokkrum fleiri stafi eða annað orð +DocType: DocField,Set Only Once,Setja Aðeins einu sinni +apps/frappe/frappe/core/doctype/user/user.py +353,Username {0} already exists,Notandanafn {0} er þegar til +apps/frappe/frappe/core/doctype/doctype/doctype.py +564,{0}: Cannot set import as {1} is not importable,{0}: Get ekki stillt innflutning sem {1} er ekki importable +DocType: Footer Item,"target = ""_blank""",target = "_blank" +DocType: Workflow State,hdd,HDD +DocType: ToDo,High,Hár +DocType: User,Male,male +DocType: Communication,From Full Name,Frá Fullt nafn +apps/frappe/frappe/desk/query_report.py +19,You don't have access to Report: {0},Þú hefur ekki aðgang að skýrslu: {0} +DocType: User,Send Welcome Email,Senda Welcome tölvupóst +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Hlaða CSV skrá sem inniheldur öll notandi heimildir í sama sniði og Download. +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +379,Remove Filter,fjarlægja síu +apps/frappe/frappe/config/setup.py +108,Bulk Rename,Magn Endurnefna +DocType: DocField,Heading,Fyrirsögn +DocType: Workflow State,resize-vertical,resize-lóðrétt +DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inngangs upplýsingum fyrir Hafðu samband síðunni +DocType: Web Page,CSS,CSS +DocType: Workflow State,thumbs-down,Thumbs niður +apps/frappe/frappe/core/doctype/page/page.py +34,Not in Developer Mode,Ekki í forritarastillingu +DocType: Workflow State,indent-left,inndráttur vinstri +apps/frappe/frappe/utils/file_manager.py +279,It is risky to delete this file: {0}. Please contact your System Manager.,Það er áhættusamt að eyða þessari skrá: {0}. Vinsamlegast hafðu samband System Manager. +DocType: Currency,Currency Name,Gjaldmiðill Name +DocType: Report,Javascript,javascript +DocType: File,Content Hash,Efni Hash +DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Geymir JSON af síðustu þekkt útgáfur af ýmsum uppsett forrit. Það er notað til að sýna Útgáfuupplýsingarnar. +DocType: Website Theme,Google Font (Text),Google Font (Texti) +apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +31,{0} already unsubscribed for {1} {2},{0} þegar afskráðir fyrir {1} {2} +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did not remove,Ekki fjarlægja +apps/frappe/frappe/desk/like.py +89,Liked,líkaði +DocType: Report,Query,fyrirspurn +DocType: DocType,Sort Order,Raða Order +apps/frappe/frappe/core/doctype/doctype/doctype.py +315,'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 +36,Your Email Id,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 +apps/frappe/frappe/core/doctype/doctype/doctype.py +447,Fieldname is required in row {0},FIELDNAME er krafist í röð {0} +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +4,Column,dálkur +DocType: Custom Field,Adds a custom field to a DocType,Bætir við sérsniðnu svæði til DOCTYPE +DocType: File,Is Home Folder,Er Home Folder +apps/frappe/frappe/core/doctype/userrole/userrole.py +14,User '{0}' already has the role '{1}',User '{0}' þegar hefur það hlutverk '{1}' +apps/frappe/frappe/public/js/frappe/ui/editor.html +6,Bold (Ctrl/Cmd+B),Bold (Ctrl / Cmd + B) +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Hlaða og Sync +apps/frappe/frappe/public/js/frappe/form/share.js +35,Shared with {0},Deilt með {0} +DocType: Communication,Reference Name,Tilvísun Name +apps/frappe/frappe/public/js/frappe/toolbar.js +32,Chat Support,chat Stuðningur +DocType: Error Snapshot,Exception,undantekning +DocType: Email Account,Use IMAP,Nota IMAP +DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Single Tegundir hafa aðeins einn taka ekki töflur tengd. Gildin eru geymd í tabSingles +DocType: Workflow,Rules defining transition of state in the workflow.,Reglur skilgreina umskipti ríkisins í workflow. +DocType: File,Folder,mappa +DocType: DocField,Index,Index +DocType: Email Group,Newsletter Manager,Fréttabréf Manager +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Option 1,valkostur 1 +apps/frappe/frappe/public/js/frappe/ui/editor.html +12,Number list,Fjöldi listi +apps/frappe/frappe/config/setup.py +84,Log of error during requests.,Ur villa á beiðnum. +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +27,Scheduled to send to {0},Áætlunarferðir til að senda til {0} +DocType: DocShare,Everyone,allir +DocType: Workflow State,backward,afturábak +apps/frappe/frappe/core/doctype/doctype/doctype.py +511,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Aðeins ein regla leyft með sama hlutverk, Level og {1}" +DocType: Workflow State,share,hlut +apps/frappe/frappe/limits.py +28,"Your subscription expired on {0}. To renew, please send an email to {1}.","Áskriftin þín rann {0}. Að endurnýja, vinsamlegast sendu tölvupóst á {1}." +apps/frappe/frappe/config/setup.py +102,Set numbering series for transactions.,Setja tala röð fyrir viðskiptum. +apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,Þú getur ekki eins og eitthvað sem þú bjóst til +DocType: User,Last IP,Síðasta IP +apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Endurnýja / uppfæra +DocType: DocPerm,Filter records based on User Permissions defined for a user,Sía færslur byggðar á heimildum sem eru skilgreindar í a notandi +apps/frappe/frappe/public/js/frappe/ui/editor.html +45,Insert picture (or just drag & drop),Settu mynd (eða bara draga og sleppa) +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +37,Fieldname not set for Custom Field,FIELDNAME ekki sett Custom Field +apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Síðast uppfært af +apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,er ekki leyft. +apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Skoða Áskrifendur +DocType: Website Theme,Background Color,Bakgrunns litur +apps/frappe/frappe/public/js/frappe/views/communication.js +420,There were errors while sending email. Please try again.,Það komu upp villur við að senda tölvupóst. Vinsamlegast reyndu aftur. +DocType: Portal Settings,Portal Settings,Portal Stillingar +DocType: Web Page,0 is highest,0 er hæst +apps/frappe/frappe/www/login.html +81,Send Password,Senda lykilorð +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +38,Attachments,viðhengi +apps/frappe/frappe/website/doctype/web_form/web_form.py +119,You don't have the permissions to access this document,Þú hefur ekki heimildir til að opna þetta skjal +DocType: Email Group Member,Email Group Member,Sendu hópmeðlimur +DocType: Email Alert,Value Changed,gildi Breytt +apps/frappe/frappe/model/base_document.py +295,Duplicate name {0} {1},Afrit nafn {0} {1} +DocType: Web Form Field,Web Form Field,Web Form Field +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +220,Hide field in Report Builder,Fela sviði í Report Builder +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +14,Edit HTML,Breyta HTML +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Restore Original Permissions,Upphaflegar Heimildir +DocType: DocField,Button,Button +DocType: Email Account,Default Outgoing,Sjálfgefið Outgoing +DocType: Workflow State,play,spila +apps/frappe/frappe/templates/emails/new_user.html +5,Click on the link below to complete your registration and set a new password,Smelltu á tengilinn hér fyrir neðan til að ljúka skráningunni og setja nýtt lykilorð +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +403,Did not add,Fékk ekki að bæta +DocType: Contact Us Settings,Contact Us Settings,Hafðu samband Stillingar +DocType: Workflow State,text-width,texti-breidd +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Hámarks Attachment Limit fyrir þessa færslu náð. +DocType: Email Alert,View Properties (via Customize Form),Skoða Properties (með Customize Form) +apps/frappe/frappe/utils/password_strength.py +73,Try to use a longer keyboard pattern with more turns,Reyndu að nota lengri lyklaborð mynstur með fleiri snúninga +apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder skýrslur eru stjórnað beint af skýrslu byggir. Ekkert að gera. +apps/frappe/frappe/model/document.py +832,none of,ekkert af +apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Senda mér afrit +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Hlaða heimildir notanda +apps/frappe/frappe/config/website.py +7,Web Site,Web Site +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Merkt atriði verður sýnt á skjáborðinu +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,{0} cannot be set for Single types,{0} Ekki er hægt að stilla fyrir Single tegundir +apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ert að lesa þetta skjal +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +108,{0} updated,{0} uppfærð +apps/frappe/frappe/core/doctype/doctype/doctype.py +544,Report cannot be set for Single types,Skýrslan er ekki hægt að setja fyrir Single tegundir +apps/frappe/frappe/public/js/frappe/views/test_runner.js +17,"To run a test add the module name in the route after '{0}'. For example, {1}","Til að keyra próf bæta mát nafn í leiðinni eftir '{0}'. Til dæmis, {1}" +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,{0} days ago,{0} dagar síðan +DocType: Contact Us Settings,Address Line 1,Heimilisfang lína 1 +DocType: DocPerm,Role,hlutverk +apps/frappe/frappe/utils/data.py +418,Cent,cent +apps/frappe/frappe/config/setup.py +198,"States for workflow (e.g. Draft, Approved, Cancelled).","Ríki til workflow (td Draft, Samþykkt, HÃ|tt)." +DocType: Print Settings,Allow Print for Draft,Leyfa prenta fyrir Draft +apps/frappe/frappe/public/js/frappe/form/link_selector.js +136,Set Quantity,Setja Magn +apps/frappe/frappe/public/js/legacy/form.js +356,Submit this document to confirm,Senda þessu skjali til að staðfesta +DocType: User,Unsubscribed,afskráður +,Data Import Tool,Gögn Flytja Tól +apps/frappe/frappe/core/doctype/user/user.py +535,Registration Details Emailed.,Skráning Upplýsingar Tölvupóstur sendur. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +525,Attach Your Picture,Hengja myndinni þinni +DocType: Workflow State,Stop,Hættu +DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Tengill á síðuna sem þú vilt opna. Skildu eftir autt ef þú vilt gera það hópur foreldri. +DocType: DocType,Is Single,er Single +apps/frappe/frappe/email/queue.py +242,{0} has left the conversation in {1} {2},{0} hefur yfirgefið samtalið í {1} {2} +DocType: Blogger,User ID of a Blogger,User ID á Blogger +apps/frappe/frappe/core/doctype/user/user.py +239,There should remain at least one System Manager,Það ætti að vera að minnsta kosti einn System Manager +DocType: Workflow State,circle-arrow-right,hring-ör-hægri +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Get ekki opnað dæmis þegar þess {0} er opið +DocType: Scheduler Log,Method,aðferð +DocType: Report,Script Report,Script Report +DocType: About Us Settings,Company Introduction,fyrirtæki Inngangur +DocType: DocField,Length,Lengd +DocType: Email Alert,"To add dynamic subject, use jinja tags like + +
{{ doc.name }} Delivered
","Til að bæta dynamic efni, nota Jinja tög eins
 {{ doc.name }} Delivered 
" +DocType: DocPerm,Apply User Permissions,Gilda heimildir notanda +DocType: User,Modules HTML,Modules HTML +apps/frappe/frappe/config/setup.py +160,Email Group Member List,Sendu Group Member List +apps/frappe/frappe/public/js/frappe/ui/field_group.js +75,Missing Values Required,Vantar gildi Áskilið +DocType: DocType,Other Settings,aðrar stillingar +apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +12,{0} is not set,{0} er ekki sett +apps/frappe/frappe/share.py +136,No permission to {0} {1} {2},Engin heimild til {0} {1} {2} +apps/frappe/frappe/public/js/frappe/form/workflow.js +42,Note: Other permission rules may also apply,Ath: Aðrar reglur um heimild geta einnig sótt um +apps/frappe/frappe/permissions.py +266,Not allowed to access {0} with {1} = {2},Ekki leyft að fá aðgang {0} með {1} = {2} +apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Skoða þetta í vafranum þínum +DocType: DocType,Search Fields,Leit Fields +apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ekkert skjal valin +DocType: Event,Event,Event +apps/frappe/frappe/public/js/frappe/views/communication.js +457,"On {0}, {1} wrote:","Á {0}, {1} skrifaði:" +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +99,Cannot delete standard field. You can hide it if you want,Ekki hægt að eyða stöðluðu sviði. Hægt er að fela það ef þú vilt +DocType: Top Bar Item,For top bar,Fyrir toppur bar +apps/frappe/frappe/utils/bot.py +125,Could not identify {0},Gat ekki þekkja {0} +DocType: Contact Us Settings,Address,Heimilisfang +DocType: Print Settings,In points. Default is 9.,Í liðum. Sjálfgefið er 9. +apps/frappe/frappe/public/js/frappe/ui/editor.html +61,Reduce indent (Shift+Tab),Draga undirlið (Shift + Tab) +DocType: Workflow State,heart,hjarta +DocType: Workflow State,minus,mínus +apps/frappe/frappe/public/js/frappe/request.js +118,Server Error: Please check your server logs or contact tech support.,Server Villa: Vinsamlegast athugaðu server logs eða hafa samband við tækni stuðning. +apps/frappe/frappe/core/doctype/user/user.py +152,Welcome email sent,Velkomin sendur +apps/frappe/frappe/public/js/frappe/views/calendar.js +92,Select dates to create a new ,Veldu dagsetningar til að búa til nýja +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +336,Let's prepare the system for first use.,Skulum undirbúa kerfið fyrir fyrstu notkun. +apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Grein +apps/frappe/frappe/core/doctype/user/user.py +518,Already Registered,Nú þegar skráð +DocType: System Settings,Float Precision,fljóta Precision +apps/frappe/frappe/core/doctype/page/page.py +38,Only Administrator can edit,Aðeins Stjórnandi getur breytt +DocType: DocType,Editable Grid,editable Grid +DocType: Property Setter,Property Setter,Property Setter +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +222,Select User or DocType to start.,Veldu Notandi eða DOCTYPE að byrja. +apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ekkert forrit uppsett +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +204,Mark the field as Mandatory,Merktu vellinum Nauðsynlegur +DocType: Communication,Clicked,smellt +apps/frappe/frappe/public/js/legacy/form.js +927,No permission to '{0}' {1},Engin heimild til að '{0}' {1} +DocType: User,Google User ID,Google User ID +DocType: DocType,Track Seen,Track Séð +apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Þessi aðferð er aðeins hægt að nota til að búa a Athugasemd +apps/frappe/frappe/public/js/frappe/list/doclistview.js +442,No {0} found,Engin {0} fannst +apps/frappe/frappe/config/setup.py +260,Add custom forms.,Bæta sérsniðnum form. +apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} í {2} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Kerfið býður upp á ýmsa fyrirfram skilgreind hlutverk. Hægt er að bæta við nýjum hlutverkum að setja fínni heimildir. +DocType: Communication,CC,CC +DocType: Country,Geo,geo +apps/frappe/frappe/desk/page/applications/applications.js +46,Domains,lén +DocType: Blog Category,Blog Category,Blog Category +apps/frappe/frappe/model/mapper.py +82,Cannot map because following condition fails: ,Ekki er hægt að kortleggja vegna eftirfarandi skilyrði ekki: +DocType: User,Roles HTML,hlutverk HTML +apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,virk +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +26,Insert Below,Settu neðan +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +132,All customizations will be removed. Please confirm.,Allar customizations verða fjarlægðar. Vinsamlega staðfestið. +DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/public/js/frappe/views/treeview.js +221,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öð +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 +DocType: Workflow State,random,handahófi +DocType: Dropbox Backup,Integrations,Integrations +DocType: DocField,Section Break,Hluti Break +,Messages,skilaboð +apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal +apps/frappe/frappe/desk/query_report.py +76,Must specify a Query to run,Verður að skilgreina fyrirspurn til að keyra +apps/frappe/frappe/config/setup.py +73,"Language, Date and Time settings","Tungumál, Dags- og tímastillingar" +DocType: Event,Saturday,laugardagur +DocType: User,Represents a User in the system.,Táknar notandi í kerfinu. +DocType: Communication,Label,Label +apps/frappe/frappe/desk/form/assign_to.py +140,"The task {0}, that you assigned to {1}, has been closed.","Verkefni {0}, sem þú úthlutað til {1}, hefur verið lokað." +DocType: User,Modules Access,Modules Aðgangur +DocType: Print Format,Print Format Type,Print Format Tegund +apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source Umsóknir vefnum +DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Bæta nafnið á "Google Web Font" td "Open Sans" +apps/frappe/frappe/public/js/frappe/request.js +123,Request Timed Out,Beiðni rann út +DocType: DocType,Hide Toolbar,fela Toolbar +DocType: User,Last Active,Síðast virk +DocType: Email Account,SMTP Settings for outgoing emails,SMTP stillingar fyrir sendan tölvupóst +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +160,Import Failed,innflutningur mistókst +apps/frappe/frappe/templates/emails/password_update.html +3,Your password has been updated. Here is your new password,Lykilorð þitt hefur verið uppfærð. Hér er nýja lykilorðið þitt +DocType: Email Account,Auto Reply Message,Auto Svara Message +DocType: Bulk Update,Condition,Ástand +DocType: Communication,Sent,sendir +DocType: File,Lft,Lft +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +111,Open a module or tool,Opna mát eða tól +DocType: Communication,Delivery Status,Afhending Staða +DocType: Module Def,App Name,app Name +DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","Field sem táknar Workflow ríki viðskiptanna (ef reitur er ekki til staðar, ný falinn Custom Field verður búin)" +apps/frappe/frappe/utils/oauth.py +171,Email not verified with {1},Email ekki staðfest með {1} +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +556,Edit to add content,Breyta til að bæta við efni +apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Languages,Select Tungumál +apps/frappe/frappe/__init__.py +485,No permission for {0},Engin heimild fyrir {0} +DocType: Web Form,Advanced,Ítarlegri +apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Tilvísun: {0} {1} +DocType: File,Attached To Name,Meðfylgjandi Til Nafn +apps/frappe/frappe/email/receive.py +91,Invalid User Name or Support Password. Please rectify and try again.,Ógilt notandanafn eða Support lykilorð. Vinsamlegast lagfæra og reyndu aftur. +DocType: Email Account,Login Id is Different,Innskráning Auðkenni er öðruvísi +DocType: Email Account,Yahoo Mail,Yahoo póstur +apps/frappe/frappe/limits.py +69,Your subscription will expire tomorrow.,Áskriftin mun renna út á morgun. +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +476,Saved!,Vistuð! +apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Uppfært {0}: {1} +DocType: DocType,User Cannot Create,Notandi getur ekki búið +apps/frappe/frappe/core/doctype/file/file.py +247,Folder {0} does not exist,Folder {0} er ekki til +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +27,"These will also be set as default values for those links, if only one such permission record is defined.","Þetta mun einnig vera stillt eins sjálfgefin gildi fyrir þessum tenglum, ef aðeins eitt slíkt leyfi færsla er skilgreint." +DocType: Customize Form,Enter Form Type,Sláðu Form Tegund +apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Engar færslur tagged. +DocType: User,Send Password Update Notification,Senda Lykilorð Uppfæra Tilkynningar +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Leyfa DOCTYPE, DOCTYPE. Farðu varlega!" +apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Sérsniðin Snið fyrir prentun, Email" +apps/frappe/frappe/public/js/frappe/desk.js +335,Updated To New Version,Uppfært til New Version +DocType: Custom Field,Depends On,Veltur á +DocType: DocPerm,Additional Permissions,Önnur Heimildir +apps/frappe/frappe/templates/includes/comments/comments.html +19,Login to comment,Innskráning til að tjá +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Byrja að slá inn gögn fyrir neðan þessa línu +DocType: Workflow State,retweet,retweet +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +40,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 +186,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: Workflow State,eye-close,auga-loka +apps/frappe/frappe/public/js/frappe/request.js +304,Report this issue,Tilkynna þetta mál +apps/frappe/frappe/public/js/frappe/form/save.js +78,Name is required,Nafnið er krafist +DocType: Custom Script,Adds a custom script (client or server) to a DocType,Bætir sérsniðna handrit (viðskiptavinur eða miðlara) til DOCTYPE +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +40,Cannot set Email Alert on Document Type {0},Get ekki stillt Email Alert á gerðinni {0} +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,Breyti Row +DocType: Workflow Action,Workflow Action Master,Workflow Action Master +DocType: Custom Field,Field Type,reitur Tegund +apps/frappe/frappe/utils/data.py +435,only.,eingöngu. +apps/frappe/frappe/utils/password_strength.py +112,Avoid years that are associated with you.,Forðastu ár sem eru tengd með þér. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +510,Descending,lækkandi +apps/frappe/frappe/email/receive.py +57,Invalid Mail Server. Please rectify and try again.,Ógild Mail Server. Vinsamlegast lagfæra og reyndu aftur. +DocType: Dropbox Backup,Dropbox Backup,Dropbox Backup +DocType: DocField,"For Links, enter the DocType as range. +For Select, enter list of Options, each on a new line.","Fyrir Tenglar, slá inn DOCTYPE sem svið. Fyrir Select, sláðu lista yfir valkosti, hvert á nýja línu." +DocType: Workflow State,film,Myndin +apps/frappe/frappe/model/db_query.py +351,No permission to read {0},Engin heimild til að lesa {0} +apps/frappe/frappe/config/desktop.py +8,Tools,Verkfæri +apps/frappe/frappe/utils/password_strength.py +111,Avoid recent years.,Forðastu undanförnum árum. +apps/frappe/frappe/utils/nestedset.py +229,Multiple root nodes not allowed.,Margar rót hnúður ekki leyfð. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +420,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID reit þarf að breyta gildum með skýrslu. Vinsamlegast veldu auðkennisreit með súlunni Picker +apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Comments +apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,staðfesta +apps/frappe/frappe/desk/page/applications/applications.js +160,Install {0}?,Setja {0}? +apps/frappe/frappe/www/login.html +25,Forgot Password?,Gleymt lykilorð? +DocType: System Settings,yyyy-mm-dd,áááá-mm-dd +apps/frappe/frappe/public/js/frappe/model/model.js +17,ID,ID +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Innskráning Id er krafist +DocType: Website Slideshow,Website Slideshow,Vefsíða Slideshow +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +6,No Data,Engin gögn +DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link sem er vefsíða heimasíða. Staðlaðar Links (vísitölu, tenging, vörur, blogg, um, snerting)" +apps/frappe/frappe/public/js/frappe/ui/editor.html +8,Bullet list,Bullet listi +apps/frappe/frappe/email/doctype/email_account/email_account.py +132,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Auðkenning mistókst meðan að fá tölvupóst frá netfangs {0}. Skilaboð frá miðlara: {1} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +52,values and dates,gildi og dagsetningar +DocType: Website Settings,Banner Image,Banner Image +DocType: Custom Field,Custom Field,Custom Field +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +18,Please specify which date field must be checked,Vinsamlega gefðu upp hvor dagsetningin reit verður að vera merkt +DocType: DocPerm,Set User Permissions,Set notanda Heimildir +DocType: Email Account,Email Account Name,Email Account Name +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +249,Select Document Types,Select Document Tegundir +DocType: File,old_parent,old_parent +apps/frappe/frappe/config/setup.py +150,"Newsletters to contacts, leads.","Fréttabréf til tengiliði, leiðir." +DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","td "Support", "Sala", "Jerry Yang"" +apps/frappe/frappe/public/js/frappe/form/workflow.js +115,Document Status transition from,Document Status umskipti frá +DocType: DocField,Description,Lýsing +DocType: Print Settings,Repeat Header and Footer in PDF,Endurtaka haus og fót í PDF +DocType: Letter Head,Is Default,er Default +DocType: User,Facebook User ID,Facebook User ID +DocType: Workflow State,fast-forward,hraðspóla +DocType: Communication,Communication,Samskipti +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Athugaðu dálka til að velja, draga að setja pöntunina." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +638,This is PERMANENT action and you cannot undo. Continue?,Þetta er varanleg aðgerð og þú getur ekki afturkallað. Halda áfram? +DocType: Event,Every Day,Daglega +DocType: Workflow State,move,Ferðinni +apps/frappe/frappe/model/document.py +980,Action Failed,aðgerð mistókst +apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,fyrir notanda +apps/frappe/frappe/desk/page/applications/applications.py +81,{0} Installed,{0} Uppsett +DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ef notandinn hefur hvaða hlutverk köflóttur, þá verður notandinn að "System User". "System Notandi" hefur aðgang að skjáborðinu" +DocType: System Settings,Date and Number Format,Dagsetning og Number Format +apps/frappe/frappe/model/document.py +831,one of,einn af +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +143,Show Tags,Sýna Tags +DocType: Email Queue,Not Sent,ekki send +DocType: Web Form,Actions,aðgerðir +DocType: Workflow State,align-justify,samræma-réttlæta +DocType: User,Middle Name (Optional),Middle Name (Valfrjálst) +apps/frappe/frappe/public/js/frappe/request.js +82,Not Permitted,Ekki leyfilegt +apps/frappe/frappe/public/js/frappe/form/link_selector.js +102,No Results,engar niðurstöður +DocType: System Settings,Security,Öryggi +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +45,Scheduled to send to {0} recipients,Áætlunarferðir til að senda til {0} viðtakenda +DocType: Currency,**Currency** Master,** Gjaldmiðill ** Master +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +83,Please save the document before assignment,Vinsamlegast vista skjalið áður en ráðning +DocType: Website Settings,Address and other legal information you may want to put in the footer.,Heimilisfang og aðrar lagalegar upplýsingar sem þú vilt kannski að setja á fót. +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +39,{0} records updated,{0} færslur uppfærð +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Veldu tegund skjals +apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,Ekki hægt að eyða {0} eins og það hefur barnið hnúta +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +42,{0} minutes ago,{0} mínútum síðan +apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ljóst +apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,Á hverjum degi atburðir ættu að klára á sama degi. +DocType: Communication,User Tags,User Tags +DocType: Workflow State,download-alt,sækja-alt +apps/frappe/frappe/desk/page/applications/applications.py +91,Downloading App {0},Sæki App {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +12,Experimental Feature,Experimental Lögun +apps/frappe/frappe/www/login.html +28,Sign in,Skráðu þig inn +DocType: Web Page,Main Section,Main Section +DocType: Page,Icon,Táknmynd +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +53,to filter values between 5 & 10,að sía gildin milli 5 & 10 +DocType: Web Page,Content in markdown format that appears on the main side of your page,Efni í Markdown sniði sem birtist á helstu hlið af síðunni þinni +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +73,PDF,PDF +DocType: System Settings,dd/mm/yyyy,dd / mm / áááá +apps/frappe/frappe/public/js/frappe/form/layout.js +105,Hide Details,Fela Upplýsingar +DocType: Workflow State,Tasks,verkefni +DocType: Event,Tuesday,þriðjudagur +DocType: Blog Settings,Blog Settings,Blog Stillingar +apps/frappe/frappe/templates/emails/new_user.html +12,You can also copy-paste this link in your browser,Þú getur líka afrita líma þennan tengil í vafranum þínum +DocType: Workflow State,bullhorn,bullhorn +DocType: Social Login Keys,Facebook Client Secret,Facebook Viðskiptavinur Secret +DocType: Footer Item,Target,Target +DocType: Website Settings,Copyright,Copyright +DocType: ToDo,Due Date,Skiladagur +DocType: Social Login Keys,Google Client Secret,Google Viðskiptavinur Secret +DocType: Website Settings,Hide Footer Signup,Fela Footer innskráningarinneign +apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skrifa Python skrá í sömu möppu þar sem þetta er vistuð og skila súlu og niðurstöðu. +DocType: DocType,Sort Field,Raða Field +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +375,Edit Filter,Breyta Filter +apps/frappe/frappe/www/404.html +12,"We are very sorry for this, but the page you are looking for is missing (this could be because of a typo in the address) or moved.","Við erum mjög leitt fyrir þetta, en síðan sem þú ert að leita að vantar (þetta gæti verið vegna ásláttarvillu í heimilisfang) eða flutt." +apps/frappe/frappe/core/doctype/doctype/doctype.py +289,Field {0} of type {1} cannot be mandatory,Field {0} tegund {1} er ekki hægt að fylla út +DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","td. Ef Berið notendaheimilda er köflóttur fyrir Report DOCTYPE en engar notendaheimilda eru skilgreind fyrir skýrslu um notanda, þá allir Skýrslur eru sýndar til þess Notandi" +DocType: System Settings,Session Expiry Mobile,Session Fyrning Mobile +apps/frappe/frappe/templates/includes/search_box.html +17,Search results for,Leitarniðurstöður fyrir +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +848,Select To Download:,Veldu til að sækja: +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421,If {0} is permitted,Ef {0} Heimilt er +DocType: DocPerm,If user is the owner,Ef notandinn er eigandi +,Activity,virkni +DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hjálp: Til að tengja við aðra færslu í kerfinu, nota "# Form / Note / [Ath Name]" eins og Link URL. (Ekki nota "http: //")" +apps/frappe/frappe/utils/password_strength.py +89,Let's avoid repeated words and characters,Við skulum forðast endurtekin orð og stafi +DocType: Communication,Delayed,seinkað +apps/frappe/frappe/config/setup.py +123,List of backups available for download,Listi yfir afrit hægt að sækja +apps/frappe/frappe/public/js/frappe/model/indicator.js +20,Queued for submission,Biðröð til að skila +apps/frappe/frappe/www/login.html +71,Sign up,Skráðu þig +apps/frappe/frappe/config/setup.py +244,Add fields to forms.,Bæta reiti til að formum. +DocType: File,rgt,rgt +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 +apps/frappe/frappe/public/js/frappe/ui/editor.html +48,Insert Link,Insert Link +DocType: Contact Us Settings,Query Options,fyrirspurn Options +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +108,Import Successful!,Innflutningur Árangursrík! +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +35,Updating Records,Uppfærir Records +DocType: Error Snapshot,Timestamp,timestamp +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Email Group.,{0} hefur verið bætt við tölvupósti Group okkar. +DocType: Patch Log,Patch Log,Patch Log +apps/frappe/frappe/utils/bot.py +141,Hello {0},Halló {0} +apps/frappe/frappe/email/doctype/email_group/email_group.js +40,Add,Bæta +apps/frappe/frappe/www/profile.html +3,Profile,Profile +DocType: Communication,Sent or Received,Send eða móttekin +DocType: DefaultValue,Key,Key +DocType: System Settings,Setup Complete,skipulag Complete +apps/frappe/frappe/config/setup.py +61,Report of all document shares,Skýrsla allra skjal hluta +apps/frappe/frappe/www/update-password.html +17,New Password,nýtt lykilorð +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +37,Filter {0} missing,Sía {0} vantar +apps/frappe/frappe/core/doctype/communication/communication.py +83,Sorry! You cannot delete auto-generated comments,Afsakið! Þú getur ekki eytt sjálfvirkir athugasemdir +DocType: Website Theme,Style using CSS,Style nota CSS +DocType: Portal Menu Item,Reference DocType,Tilvísun DOCTYPE +DocType: User,System User,System User +DocType: Report,Is Standard,er Standard +DocType: DocField,"Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field","Ekki HTML Encode HTML tög eins <script> eða bara stafi eins <eða>, eins og þeir gætu verið notuð af ásetningi á þessu sviði" +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +241,Specify a default value,Tilgreindu sjálfgefið gildi +DocType: Website Settings,FavIcon,síðumerkis +apps/frappe/frappe/public/js/frappe/model/create_new.js +312,{0} {1} created,{0} {1} búin +DocType: Workflow State,minus-sign,mínus-merki +apps/frappe/frappe/public/js/frappe/request.js +74,Not Found,Ekki fundið +apps/frappe/frappe/www/print.py +172,No {0} permission,Engin {0} leyfi +apps/frappe/frappe/www/login.html +73,Login,Skrá inn +DocType: System Settings,Enable Scheduled Jobs,Virkja Tímaáætlun Jobs +apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Skýringar: +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,> {0} year(s) ago,> {0} ár (s) síðan +apps/frappe/frappe/public/js/frappe/form/control.js +1531,Markdown,Markdown +DocType: DocShare,Document Name,Document Name +DocType: ToDo,Medium,Medium +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +137,Please verify your email id,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. $,A tákn fyrir þennan gjaldmiðil. Fyrir td $ +apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,frappe Framework +apps/frappe/frappe/model/naming.py +171,Name of {0} cannot be {1},Heiti {0} er ekki hægt að {1} +apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Sýna eða fela mát heimsvísu. +DocType: Workflow State,Success,Velgengni +apps/frappe/frappe/utils/password_strength.py +71,Straight rows of keys are easy to guess,Beint raðir af tökkum er auðvelt að giska +apps/frappe/frappe/templates/includes/login/login.js +133,Invalid Login,Ógild Innskráning +DocType: Communication,Phone No.,Sími nei. +DocType: Workflow State,fire,eldur +DocType: Async Task,Async Task,Async Task +DocType: Workflow State,picture,mynd +apps/frappe/frappe/www/complete_signup.html +22,Complete,Complete +DocType: DocType,Image Field,Mynd Field +DocType: Print Format,Custom HTML Help,Custom HTML Hjálp +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +306,Add A New Restriction,Að bæta við nýjum Takmörkun +DocType: Workflow Transition,Next State,næsta State +apps/frappe/frappe/public/js/frappe/ui/editor.html +55,Align Left (Ctrl/Cmd+L),Align Left (Ctrl / Cmd + L) +DocType: User,Block Modules,blokk Modules +apps/frappe/frappe/model/db_schema.py +137,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tek lengd til {0} fyrir '{1}' í '{2}'; Stilling á lengd sem {3} mun valda truncation gagna. +DocType: Print Format,Custom CSS,Custom CSS +DocType: DocType,Naming Options,nafngiftir Valkostir +apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Bæta við athugasemd +apps/frappe/frappe/model/rename_doc.py +348,Ignored: {0} to {1},Hunsuð: {0} til {1} +apps/frappe/frappe/config/setup.py +79,Log of error on automated events (scheduler).,Ur villa á sjálfvirkum atburðum (tímaáætlun). +apps/frappe/frappe/utils/csvutils.py +73,Not a valid Comma Separated Value (CSV File),Ekki gilt gildi aðskilin með kommum (CSV skrá) +DocType: Email Account,Default Incoming,Sjálfgefið Komandi +DocType: Workflow State,repeat,endurtaka +DocType: Website Settings,Banner,Banner +DocType: Role,"If disabled, this role will be removed from all users.","Ef fatlaður, þetta hlutverk verður fjarlægt úr öllum notendum." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +102,Help on Search,Hjálp á Leita +DocType: DocType,Hide Copy,fela Afrita +apps/frappe/frappe/core/doctype/user/user.js +172,Clear all roles,Hreinsa allt hlutverkum +apps/frappe/frappe/model/base_document.py +346,{0} must be unique,{0} verður að vera einstakt +apps/frappe/frappe/permissions.py +269,Row,Row +DocType: Workflow State,Check,athuga +apps/frappe/frappe/public/js/frappe/form/toolbar.js +81,Edit Title,Breyta titli +apps/frappe/frappe/desk/page/modules/modules.js +23,Install Apps,setja Apps +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +58,Fieldname which will be the DocType for this link field.,FIELDNAME sem verður DOCTYPE fyrir þennan tengil sviði. +apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Skjöl úthlutað til þín og af þér. +DocType: User,Email Signature,Netfang Undirskrift +DocType: Website Settings,Google Analytics ID,Google Analytics ID +DocType: Website Theme,Link to your Bootstrap theme,Tengill á ræsi þema +apps/frappe/frappe/public/js/frappe/form/control.js +1530,Edit as {0},Edit sem {0} +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +14,Add new row,Bæta nýrri röð +DocType: DocPerm,Delete,eyða +apps/frappe/frappe/public/js/frappe/views/treeview.js +173,New {0},New {0} +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +199,No User Restrictions found.,Enginn notandi Takmarkanir fundust. +apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Sjálfgefið Inbox +apps/frappe/frappe/public/js/frappe/form/link_selector.js +105,Make a new,Gera nýtt +DocType: Print Settings,PDF Page Size,PDF Page Size +apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +20,Note: fields having empty value for above criteria are not filtered out.,Athugið: Reitir hafa tóma gildi fyrir ofangreindum forsendum eru ekki síað út. +DocType: Communication,Recipient Unsubscribed,viðtakandi Áskrift sagt +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +35,About,um +apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.","Fyrir uppfærslu, getur þú uppfærir bara sértækur dálkum." +DocType: System Settings,Country,Land +DocType: Communication,Shared,Sameiginlegt +apps/frappe/frappe/public/js/frappe/views/communication.js +74,Attach Document Print,Hengja skjal Prenta +DocType: Bulk Update,Field,Field +DocType: Communication,Received,fékk +DocType: Social Login Keys,Google Client ID,Google Viðskiptavinur ID +apps/frappe/frappe/core/doctype/user/user.py +86,Adding System Manager to this User as there must be atleast one System Manager,Bæti System Manager þessari Notandi sem það verður að vera atleast einn System Manager +DocType: DocField,Attach Image,hengja mynd +apps/frappe/frappe/core/page/usage_info/usage_info.html +67,Space usage,rúm notkun +DocType: Workflow State,list-alt,lista-alt +apps/frappe/frappe/www/update-password.html +68,Password Updated,Lykilorð Uppfært +apps/frappe/frappe/utils/password.py +19,Password not found,Lykilorð fannst ekki +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +154,Permissions Updated,heimildir Uppfært +apps/frappe/frappe/email/doctype/email_account/email_account.py +54,Append To is mandatory for incoming mails,Bæta við er nauðsynlegur fyrir komandi póstur +DocType: Communication,Rejected,hafnað +apps/frappe/frappe/core/doctype/doctype/doctype.py +294,Options requried for Link or Table type field {0} in row {1},Valkostir requried fyrir Link eða töflu tegund sviði {0} í röð {1} +DocType: Report,Query Report,fyrirspurn Report +DocType: User,Set New Password,Setja nýtt lykilorð +DocType: User,Github User ID,Github User ID +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ef Document Type +apps/frappe/frappe/desk/page/applications/applications.py +88,Unknown app {0},Unknown app {0} +DocType: Communication,Chat,Spjallaðu +apps/frappe/frappe/core/doctype/doctype/doctype.py +285,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} birtist mörgum sinnum í raðir {1} +DocType: Communication,Expired,útrunnið +DocType: DocType,System,System +apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Prenta Format: {0} +DocType: Workflow State,arrow-down,arrow niður +apps/frappe/frappe/public/js/frappe/ui/tree.js +122,Collapse,Collapse +apps/frappe/frappe/model/delete_doc.py +154,User not allowed to delete {0}: {1},Notandi ekki leyft að eyða {0}: {1} +apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Síðast uppfært þann +apps/frappe/frappe/public/js/frappe/ui/toolbar/notifications.js +86,Likes,líkar +DocType: Website Settings,Top Bar,Top Bar +apps/frappe/frappe/core/page/modules_setup/modules_setup.html +24,Global Settings: Users will only be able to choose checked icons,Global Settings: Notendur mun aðeins vera fær um að velja köflóttur táknum +apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forsíða / Test Folder 2 +DocType: System Settings,Ignore User Permissions If Missing,Hunsa notanda Heimildir Ef Vantar +apps/frappe/frappe/public/js/frappe/form/control.js +858,Please save the document before uploading.,Vistaðu skjalið áður en þú hleður. +apps/frappe/frappe/public/js/frappe/ui/messages.js +198,Enter your password,Sláðu inn lykilorðið þitt +DocType: Dropbox Backup,Dropbox Access Secret,Dropbox Aðgangur Secret +apps/frappe/frappe/templates/includes/comments/comments.html +115,Add Another Comment,Bæta Annar athugasemd +apps/frappe/frappe/public/js/frappe/form/toolbar.js +168,Edit DocType,Breyta DOCTYPE +apps/frappe/frappe/core/doctype/doctype/doctype.py +375,Fold must come before a Section Break,Fold verður að koma áður en kafla brjóta +apps/frappe/frappe/public/js/frappe/model/meta.js +151,Last Modified By,Síðast breytt af +apps/frappe/frappe/www/update-password.html +139,This password will take {0} to crack,Þetta lykilorð mun taka {0} til sprunga +apps/frappe/frappe/core/doctype/user/user.py +540,Not allowed to reset the password of {0},Ekki leyft að endurstilla lykilorðið á {0} +DocType: Workflow State,hand-down,hönd-niður +apps/frappe/frappe/core/doctype/doctype/doctype.py +530,{0}: Cannot set Cancel without Submit,{0}: Get ekki stillt Hætta án Senda +DocType: Website Theme,Theme,Þema +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +158,There were errors.,Það voru villur. +DocType: DocType,Is Submittable,er Submittable +apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Gildi fyrir brottför sviði getur verið annaðhvort 0 eða 1 +apps/frappe/frappe/model/document.py +606,Could not find {0},Gat ekki fundið {0} +apps/frappe/frappe/core/page/data_import_tool/exporter.py +234,Column Labels:,Column Merkingar: +apps/frappe/frappe/model/naming.py +67,Naming Series mandatory,Nafngiftir Series nauðsynlegur +apps/frappe/frappe/model/db_schema.py +110,Length of {0} should be between 1 and 255,Lengd {0} ætti að vera á milli 1 og 255 +DocType: Social Login Keys,Facebook Client ID,Facebook Viðskiptavinur ID +DocType: Workflow State,Inbox,Inbox +DocType: Workflow State,Tag,tag +DocType: Portal Menu Item,Show Always,sýna Alltaf +DocType: Custom Script,Script,Script +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Stillingar mín +DocType: Website Theme,Text Color,Litur texta +DocType: Desktop Icon,Force Show,Force Sýna +apps/frappe/frappe/auth.py +81,Invalid Request,ógild beiðni +apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Þessi mynd hefur ekki allir inntak +apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Session Expiry must be in format {0},Session Lok verður að vera í formi {0} +DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Veldu target = "_blank" til að opna í nýja síðu. +apps/frappe/frappe/public/js/frappe/model/model.js +459,Permanently delete {0}?,Varanlega eyða {0}? +apps/frappe/frappe/core/doctype/file/file.py +132,Same file has already been attached to the record,Sama skrá hefur þegar verið fest við skráningarblaðið +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +59,Ignore encoding errors.,Hunsa kóðun villur. +DocType: Workflow State,wrench,skiptilykill +apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ekki Sett +DocType: Communication,Date,Dagsetning +DocType: Website Settings,Disable Signup,slökkva á innskráningarinneign +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +127,Sit tight while your system is being setup. This may take a few moments.,Sit fastur á meðan kerfið er sett upp. Þetta getur tekið nokkra stund. +DocType: Email Queue,Email Queue,Tölvupóstur Biðröð +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,Hlutverk hægt að stilla fyrir notendur frá User síðunni þeirra. +apps/frappe/frappe/templates/includes/comments/comments.html +23,Add Comment,Bæta við athugasemd +DocType: DocField,Mandatory,nauðsynlegur +apps/frappe/frappe/core/doctype/doctype/doctype.py +494,{0}: No basic permissions set,{0} Nei undirstöðu heimildir sett +apps/frappe/frappe/limits.py +72,Your subscription will expire on {0}.,Áskriftin mun renna út þann {0}. +apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Sækja hlekkur fyrir varabúnaður þinn verður send á eftirfarandi netfang: {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Merking Senda, Hætta, breytt" +apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Að gera +apps/frappe/frappe/templates/generators/web_form.html +279,Successfully Updated. Redirecting...,Tókst Uppfært. Áframsendi ... +apps/frappe/frappe/public/js/frappe/ui/editor.html +24,Paragraph,málsgrein +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,Allir núverandi leyfi verður eytt / plága. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +512,Then By (optional),Þá By (valfrjálst) +DocType: File,Preview HTML,Preview HTML +DocType: Desktop Icon,query-report,query-skýrsla +apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Úthlutað til {0}: {1} +DocType: DocField,Percent,prósent +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +344,Please set filters,Vinsamlegast settu síur +apps/frappe/frappe/public/js/frappe/form/linked_with.js +25,Linked With,tengd við +DocType: Workflow State,book,bók +DocType: Website Settings,Landing Page,Landing Page +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +29,{0} Name,{0} Heiti +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +81,"Import Request Queued. This may take a few moments, please be patient.","Innflutningur Beiðni biðröð. Þetta getur tekið smá stund, vinsamlegast sýndu þolinmæði." +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Engar heimildir sett þessi skilyrði. +apps/frappe/frappe/core/page/usage_info/usage_info.html +51,Max Emails,Max póst +apps/frappe/frappe/public/js/frappe/request.js +89,You do not have enough permissions to access this resource. Please contact your manager to get access.,Þú hefur ekki nægar heimildir til að opna þessa síðu. Vinsamlegast hafðu samband við yfirmann þinn til að fá aðgang. +DocType: Custom Field,Custom,Custom +apps/frappe/frappe/config/setup.py +140,Setup Email Alert based on various criteria.,Skipulag Email Alert byggt á ýmsum forsendum. +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +103,Posts filed under {0},Færslur í flokkinum {0} +DocType: Email Alert,Send alert if date matches this field's value,Senda póst ef dagsetning passar gildi Þessi reitur er +DocType: Workflow,Transitions,umbreytingum +DocType: User,Login After,Innskráning eftir +DocType: Print Format,Monospace,Jafnbreitt +apps/frappe/frappe/config/setup.py +165,Printing,Prentun +DocType: Workflow State,thumbs-up,Thumbs upp +DocType: DocPerm,DocPerm,DocPerm +apps/frappe/frappe/core/doctype/doctype/doctype.py +332,Precision should be between 1 and 6,Precision ætti að vera á milli 1 og 6 +apps/frappe/frappe/public/js/frappe/misc/utils.js +135,and,og +DocType: Error Snapshot,Frames,rammar +apps/frappe/frappe/patches/v6_19/comment_feed_communication.py +131,Assignment,framsal +DocType: About Us Team Member,Image Link,Mynd Link +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_backup/dropbox_backup.py +221,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. +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 +DocType: Workflow State,text-height,texti-hæð +DocType: Workflow State,map-marker,map-merki +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Leggja mál +DocType: Event,Repeat this Event,Endurtaktu þennan atburð +apps/frappe/frappe/utils/password_strength.py +119,Avoid dates and years that are associated with you.,Forðastu dagsetningar og ár sem eru tengd með þér. +DocType: DocPerm,Amend,breyta +DocType: File,Is Attachments Folder,Er Viðhengi Folder +apps/frappe/frappe/templates/includes/login/login.js +48,Valid Login id required.,Gildir Innskrá id krafist. +apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-opinn +apps/frappe/frappe/model/rename_doc.py +332,Please select a valid csv file with data,Vinsamlega veldu gilt csv skrá með gögn +apps/frappe/frappe/core/doctype/docshare/docshare.py +58,{0} un-shared this document with {1},{0} un-deildi þessu skjali með {1} +apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Document Status umskipti frá {0} til {1} er ekki leyfð +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +126,Setting Up,Setja upp +apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically generated reply,Þetta er sjálfvirk svar +apps/frappe/frappe/model/document.py +492,Record does not exist,Taka ekki til +apps/frappe/frappe/www/404.html +6,Page missing or moved,Page vantar eða flutt +apps/frappe/frappe/public/js/legacy/form.js +189,Edit {0} properties,Breyta {0} eiginleikar +DocType: Blog Category,Route,Route +DocType: DocField,Name,heiti +apps/frappe/frappe/limits.py +185,You have exceeded the max space of {0} for your plan. {1}.,Þú hefur farið á max rými {0} fyrir áætlun. {1}. +apps/frappe/frappe/public/js/frappe/form/control.js +1120,Open Link,Open Link +apps/frappe/frappe/desk/form/load.py +43,Did not load,Fékk ekki að hlaða +apps/frappe/frappe/desk/query_report.py +80,Query must be a SELECT,Fyrirspurn verður að vera SELECT +apps/frappe/frappe/core/doctype/doctype/boilerplate/controller_list.html +31,Completed,lokið +DocType: File,Is Private,er Einkamál +DocType: Web Form,Select DocType,Veldu DOCTYPE +apps/frappe/frappe/public/js/frappe/request.js +97,File size exceeded the maximum allowed size of {0} MB,Skráarstærð yfir leyfilega stærð {0} MB +apps/frappe/frappe/core/doctype/doctype/doctype.py +482,Enter at least one permission row,Sláðu minnsta kosti einn leyfi röð +apps/frappe/frappe/public/js/frappe/model/meta.js +147,Created On,búið On +DocType: Workflow State,align-center,samræma-miðstöð +apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,getur skrifað +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ákveðnar skjöl, eins og Invoice, ætti ekki að breyta einu sinni endanlega. Endanleg Ríkið fyrir þessi skjöl er kallað Submitted. Hægt er að takmarka sem hlutverk getur Senda." +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +717,You are not allowed to export this report,Þú hefur ekki heimild til að flytja þessa skýrslu +DocType: ToDo,Sender,sendanda +apps/frappe/frappe/templates/includes/comments/comments.html +25,Leave a Comment,Leyfi a Athugasemd +DocType: Web Page,Description for search engine optimization.,Lýsing fyrir leita vél optimization. +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Download Blank Template,Sækja Blank sniðmát +DocType: System Settings,Allow only one session per user,Leyfa aðeins einn fundur á hvern notanda +apps/frappe/frappe/core/doctype/file/file_list.js +104,Copy,Afrita +apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Forsíða / Test Folder 1 / Test Folder 3 +DocType: Website Settings,<head> HTML,<Head> HTML +apps/frappe/frappe/public/js/frappe/views/calendar.js +88,Select or drag across time slots to create a new event.,Veldu eða draga yfir tímarásir til að búa til nýja atburði. +DocType: DocField,In Filter,í Sía +DocType: Website Theme,Footer Color,Footer Color +DocType: Web Page,"Page to show on the website +",Page að sýna á vef +apps/frappe/frappe/public/js/frappe/request.js +70,You have been logged out,Þú hefur verið skráð á +apps/frappe/frappe/core/page/user_permissions/user_permissions.py +58,Cannot remove permission for DocType: {0} and Name: {1},Get ekki fjarlægt leyfi fyrir DOCTYPE: {0} og Name: {1} +apps/frappe/frappe/public/js/frappe/ui/editor.html +50,Remove Link,fjarlægja tengil +apps/frappe/frappe/desk/page/activity/activity_row.html +13,Logged in,Skráður inn +apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Skoða +apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Sjálfgefið Sending og Innhólf +DocType: Print Settings,Letter,Letter +apps/frappe/frappe/core/doctype/doctype/doctype.py +427,Image field must be of type Attach Image,Mynd reitur verður að vera af gerðinni Hengja mynd +DocType: Async Task,Succeeded,Eftirmaður +apps/frappe/frappe/public/js/frappe/form/save.js +142,Mandatory fields required in {0},Umbeðnar krafist er í {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?,Endurstilla heimildir fyrir {0}? +apps/frappe/frappe/permissions.py +328,{0} {1} not found,{0} {1} fannst ekki +DocType: Communication,Attachment Removed,viðhengi Fjarlægt +apps/frappe/frappe/utils/password_strength.py +109,Recent years are easy to guess.,Undanförnum árum er auðvelt að giska. +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +237,Show a description below the field,Sýnið lýsingu hér að neðan sviði +DocType: DocType,ASC,ASC +DocType: Workflow State,align-left,samræma vinstri +DocType: User,Defaults,vanskil +apps/frappe/frappe/public/js/frappe/model/model.js +482,Merge with existing,Sameinast núverandi +DocType: User,Birth Date,Fæðingardagur +DocType: Workflow State,fast-backward,fljótur-afturábak +DocType: DocShare,DocShare,DocShare +DocType: Event,Friday,föstudagur +DocType: Report,Add Total Row,Bæta Samtals Row +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,Til dæmis ef þú hætta við og breyta INV004 það mun verða nýtt skjal INV004-1. Þetta hjálpar þér að halda utan um hvert breytingu. +DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Drög; 1 - Sent; 2 - Frestað +DocType: File,Attached To DocType,Meðfylgjandi Til DOCTYPE +DocType: DocField,Int,Int +DocType: Page,Title,Title +apps/frappe/frappe/public/js/frappe/form/toolbar.js +160,Customize,sérsníða +DocType: Currency,"1 Currency = [?] Fraction +For e.g. 1 USD = 100 Cent",1 Gjaldmiðill = [?] Þáttur fyrir td 1 USD = 100 Cent +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370,Add New Permission Rule,Bæta við nýjum leyfi reglu +apps/frappe/frappe/public/js/frappe/form/link_selector.js +24,You can use wildcard %,Þú getur notað algildisstaf% +apps/frappe/frappe/public/js/frappe/upload.js +131,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Aðeins image eftirnafn (.gif, .jpg, .jpg, TIFF, PNG, .svg) leyfð" +DocType: Customize Form,"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box","Fields aðskilin með kommu (,) verður að vera með í "Leita eftir" listanum Leita valmynd" +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,Vinsamlegast Afrit þetta Vefsíða Theme að aðlaga. +DocType: DocField,Text Editor,Text Editor +apps/frappe/frappe/config/website.py +69,Settings for About Us Page.,Stillingar fyrir Um okkur Page. +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +561,Edit Custom HTML,Breyta Custom HTML +DocType: Error Snapshot,Error Snapshot,Snapshot villa +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +8,In,í +DocType: Email Alert,Value Change,gildi Breyta +DocType: Standard Reply,Standard Reply,Standard Svara +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +198,Width of the input box,Breidd inntak kassi +DocType: UserRole,UserRole,UserRole +DocType: System Settings,In Hours,í klukkustundum +apps/frappe/frappe/public/js/frappe/list/doclistview.js +613,With Letterhead,með bréfshaus +apps/frappe/frappe/email/smtp.py +185,Invalid Outgoing Mail Server or Port,Ógild Outgoing Mail Server eða Port +DocType: DocPerm,Write,skrifaðu +apps/frappe/frappe/core/doctype/report/report.py +31,Only Administrator allowed to create Query / Script Reports,Aðeins Administrator leyft að búa Fyrirspurn / Script Skýrslur +apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,Uppfæri +DocType: File,Preview,Preview +DocType: Customize Form,Use this fieldname to generate title,Notaðu þessa FIELDNAME að búa titilinn +apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Flytja Email Frá +apps/frappe/frappe/public/js/frappe/views/communication.js +81,Select Attachments,Select Viðhengi +apps/frappe/frappe/model/naming.py +95, for {0},fyrir {0} +apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Þú hefur ekki heimild til að prenta þetta skjal +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +294,Loading Report,Loading Report +apps/frappe/frappe/limits.py +66,Your subscription will expire today.,Áskriftin mun renna út í dag. +DocType: Page,Standard,Standard +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Attach File,hengja skrá +apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Lykilorð Uppfæra Tilkynning +apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Size +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +58,Assignment Complete,framsal Complete +DocType: DocPerm,User Permission DocTypes,Notandaleyfi DocTypes +DocType: Desktop Icon,Idx,IDX +apps/frappe/frappe/public/js/frappe/model/model.js +481,New Name,nýtt nafn +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +132,Please save the document before removing assignment,Vistaðu skjalið áður en þú fjarlægir verkefni +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +10,Insert Above,Setja inn Above +apps/frappe/frappe/utils/password_strength.py +160,Common names and surnames are easy to guess.,Algeng nöfn og eftirnöfn er auðvelt að giska. +apps/frappe/frappe/public/js/frappe/model/indicator.js +42,Draft,drög +apps/frappe/frappe/utils/password_strength.py +150,This is similar to a commonly used password.,Þetta er svipað algengt lykilorð. +DocType: User,Female,female +DocType: Print Settings,Modern,Modern +apps/frappe/frappe/desk/page/applications/applications.js +61,Search Results,leitarniðurstöður +apps/frappe/frappe/public/js/frappe/model/indicator.js +5,Not Saved,ekki Vistað +DocType: Communication,Replied,svaraði +DocType: Newsletter,Test,próf +DocType: Custom Field,Default Value,sjálfgefna gildið +apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Verify,Staðfestu +DocType: Workflow Document State,Update Field,Uppfæra Field +apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regional Eftirnafn +apps/frappe/frappe/core/doctype/communication/email.py +135,Leave this conversation,Skildu þetta samtal +apps/frappe/frappe/model/base_document.py +432,Options not set for link field {0},Valkostir ekki sett fyrir tengilinn sviði {0} +DocType: DocType,"Must be of type ""Attach Image""",Verður að vera af gerðinni "Hengja mynd" +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +155,You cannot unset 'Read Only' for field {0},Þú getur ekki aftengt "Read Only" fyrir sviði {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +18,Complete Setup,Complete Skipulag +DocType: Workflow State,asterisk,Stjörnumerki +apps/frappe/frappe/core/page/data_import_tool/exporter.py +61,Please do not change the template headings.,Vinsamlegast ekki breyta ekki sniðmáti fyrirsagnir. +DocType: Communication,Linked,Linked +apps/frappe/frappe/public/js/frappe/form/save.js +84,Enter the name of the new {0},Sláðu inn nafn á nýju {0} +apps/frappe/frappe/config/desk.py +44,Activity log of all users.,Notkunarskrá allra notenda. +DocType: Workflow State,shopping-cart,innkaupakerra +DocType: Social Login Keys,Google,Google +apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +140,Most Used,flestir Notað +DocType: Workflow State,Inverse,andhverfa +DocType: DocField,User permissions should not apply for this Link,Notendaheimildum ætti ekki að gilda um þennan tengil +apps/frappe/frappe/model/naming.py +95,Invalid naming series (. missing),Ógild nafngiftir röð (. Vantar) +apps/frappe/frappe/core/page/usage_info/usage_info.html +20,Current Users,núverandi notendur +DocType: System Settings,Language,Tungumál +DocType: DocPerm,Cancel,Hætta +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +116,Add to Desktop,Bæta á skjáborð +DocType: Web Page,Page content,Page efni +apps/frappe/frappe/core/doctype/file/file.py +117,File {0} does not exist,File {0} er ekki til +apps/frappe/frappe/core/page/data_import_tool/exporter.py +91,Leave blank for new records,Tómt nýjum færslum +apps/frappe/frappe/config/website.py +59,List of themes for Website.,Listi af þemum fyrir vefsvæðið. +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +44,Logout,Að skrá þig út +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Heimildir á hærra stig eru Field Level heimildir. Öll Fields hafa heimildarstig sett gegn þeim og reglur skilgreindar á að heimildir gilda á þessu sviði. Þetta er gagnlegt ef þú vilt fela eða gera ákveðnar reitur lesa aðeins fyrir tilteknar hlutverkum. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Ef þessum leiðbeiningum þar ekki gagnlegt, vinsamlegast bætið í tillögur þínar á github málefni." +DocType: Workflow State,bookmark,bókamerki +DocType: Note,Note,Note +apps/frappe/frappe/public/html/error_snapshot.html +32,Error Report,villuskýrslu +apps/frappe/frappe/email/queue.py +100,This email was sent to you as CC,Þessi tölvupóstur var sendur til þín CC +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Timeline field must be a valid fieldname,Timeline reitur verður að vera gilt FIELDNAME +DocType: Email Account,Email Ids,email ids +DocType: Currency,Symbol,tákn +apps/frappe/frappe/model/base_document.py +478,Row #{0}:,Row # {0}: +apps/frappe/frappe/core/doctype/user/user.py +111,New password emailed,Nýtt lykilorð send +apps/frappe/frappe/email/smtp.py +151,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Netfangs ekki skipulag. Vinsamlegast búa til nýjan tölvupóst frá uppsetningu> Tölvupóstur> netfangs +apps/frappe/frappe/auth.py +233,Login not allowed at this time,Innskráning ekki leyfð á þessum tíma +DocType: Async Task,Runtime,Runtime +DocType: Contact Us Settings,Introduction,kynning +DocType: DocType,Permissions Settings,heimildir Stillingar +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +238,{0} List,{0} List +apps/frappe/frappe/templates/includes/comments/comments.html +5,Start a new discussion.,Hefja nýja umræðu. +apps/frappe/frappe/www/message.html +15,No Message,engin skilaboð +apps/frappe/frappe/desk/form/assign_to.py +41,Already in user's To Do list,Þegar í notanda að gera lista +DocType: Email Account,Enable Outgoing,Virkja Outgoing +apps/frappe/frappe/desk/page/applications/applications.js +147,No matching apps found,Engin samsvarandi forrit fundust +DocType: Communication,Submitted,lögð +DocType: System Settings,Email Footer Address,Email Footer Address +apps/frappe/frappe/public/js/frappe/form/grid.js +468,Table updated,Tafla uppfærð +DocType: Communication,Timeline DocType,tímalína DOCTYPE +DocType: DocField,Text,Texti +apps/frappe/frappe/config/setup.py +145,Standard replies to common queries.,Standard svarar algengum fyrirspurnum. +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +41,Report an Issue,Tilkynna um vandamál +apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Sjálfgefið Sendir +DocType: Workflow State,volume-off,bindi-burt +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +114,Liked by {0},Líkaði við {0} +DocType: Footer Item,Footer Item,Footer Item +,Download Backups,sækja Afrit +apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Forsíða / Test Folder 1 +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47,"Do not update, but insert new records.","Ekki uppfæra, en setja nýjar færslur." +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +156,Assign to me,Úthluta til mín +apps/frappe/frappe/core/doctype/file/file_list.js +81,Edit Folder,Breyta Folder +DocType: DocField,Dynamic Link,dynamic Link +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +57,Details,Nánar +DocType: Property Setter,DocType or Field,DOCTYPE eða Field +DocType: Communication,Soft-Bounced,Soft-Hopp +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,Quick Help til að setja Heimildir +apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapses,Sýna bakslögum +DocType: Report,Report Builder,skýrsla Builder +DocType: Async Task,Task Name,verkefni Name +DocType: Communication,Workflow,workflow +DocType: Workflow State,Upload,Hlaða +DocType: System Settings,Date Format,Dagsetning Format +apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,ekki birt +apps/frappe/frappe/config/setup.py +203,"Actions for workflow (e.g. Approve, Cancel).","Aðgerðir til workflow (td Samþykkja, Hætta)." +DocType: Workflow State,flag,merkja +DocType: Web Page,Text Align,jöfnun texta +apps/frappe/frappe/model/naming.py +176,Name cannot contain special characters like {0},Nafn má ekki innihalda sértákn eins {0} +DocType: Contact Us Settings,Forward To Email Address,Forward á netfangið +apps/frappe/frappe/core/doctype/doctype/doctype.py +398,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME +apps/frappe/frappe/config/core.py +7,Documents,skjöl +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast skipulag sjálfgefið netfangs frá Setup> Tölvupóstur> netfangs +apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile +DocType: System Settings,Session Expiry in Hours e.g. 06:00,"Session Lok í klukkustundum, td 06:00" +DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): +myfield +eval:doc.myfield=='My Value' +eval:doc.age>18",Þessi reitur verður að birtast aðeins ef FIELDNAME skilgreint hér hefur gildi OR reglur eru sannir (dæmi): myfield eval: doc.myfield == 'Gildi minn' eval: doc.age> 18 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Þegar þú hefur sett þetta, sem notendur munu aðeins vera fær aðgang skjöl (td. Bloggfærsluna) þar sem tengill er til (td. Blogger)." +DocType: Scheduler Log,Log of Scheduler Errors,Log um Tímaáætlun Villa +DocType: User,Bio,bio +apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Sendi +apps/frappe/frappe/desk/page/activity/activity.js +75,Show Likes,Sýna Líkar +DocType: DocType,UPPER CASE,hástafi +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +182,Custom HTML,Custom HTML +apps/frappe/frappe/core/doctype/file/file_list.js +78,Enter folder name,Sláðu inn heiti möppu +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54,Select Role,Veldu hlutverk +DocType: Communication,Deleted,eytt +DocType: Workflow State,adjust,stilla +DocType: Website Settings,Disable Customer Signup link in Login page,Slökkva Viðskiptavinur Skilti tengilinn í Innskráning síðunni +apps/frappe/frappe/core/report/todo/todo.py +20,Assigned To/Owner,Úthlutað til / Eigandi +DocType: Workflow State,arrow-left,arrow vinstri +apps/frappe/frappe/desk/page/applications/applications.js +77,Installed,Uppsett +apps/frappe/frappe/desk/page/applications/applications.js +47,Developer Tools,Forritunarverkfæri +DocType: Workflow State,fullscreen,Forrit sem notar alla +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +175,You are not allowed to make PDF for this report,Þú hefur ekki heimild til að gera PDF þessari skýrslu +apps/frappe/frappe/limits.py +31,Your subscription expired on {0},Áskriftin þín rann {0} +DocType: Event,Ref Name,Ref Name +DocType: Web Page,Center,Center +apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,First Level +DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Táknar ríki leyfðir í einu skjali og hlutverk sem breyta stöðu. +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +67,Refresh Form,Uppfæra Form +DocType: DocField,Select,Veldu +apps/frappe/frappe/utils/csvutils.py +25,File not attached,Skrá ekki fest +apps/frappe/frappe/utils/password_strength.py +87,"Repeats like ""aaa"" are easy to guess",Endurtekur eins og "AAA" er auðvelt að giska +DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ef þú stillir þetta, þetta lið mun koma í fellivalmyndinni undir völdu foreldri." +DocType: Bulk Update,Limit,Limit +apps/frappe/frappe/model/db_query.py +474,Please select atleast 1 column from {0} to sort,Vinsamlegast veldu atleast 1 dálkur frá {0} að raða +apps/frappe/frappe/www/print.py +198,No template found at path: {0},Engin sniðmát finna á slóð: {0} +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Submit after importing.,Senda á eftir að flytja. +DocType: Communication,Cancelled,hætt við +DocType: Standard Reply,Standard Reply Help,Standard Svara Hjálp +DocType: Blogger,Avatar,Avatar +DocType: Blogger,Posts,Posts +apps/frappe/frappe/core/doctype/doctype/doctype.py +255,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nafn DOCTYPE ætti að byrja á staf og það getur aðeins innihaldið bókstafi, tölur, rými og undirstrik" +apps/frappe/frappe/public/js/frappe/views/communication.js +444,Dear,Ágæti +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +57,Tip: Double click cell to edit,Ábending: Tvöfaldur smellur klefi til að breyta +DocType: Web Page,HTML for header section. Optional,HTML til síðuhaushlutum. valfrjálst +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +12,This feature is brand new and still experimental,Þessi eiginleiki er glæný og enn á tilraunastigi +apps/frappe/frappe/model/rename_doc.py +337,Maximum {0} rows allowed,Hámark {0} raðir leyft +DocType: Email Unsubscribe,Global Unsubscribe,Global Afskrá +apps/frappe/frappe/utils/password_strength.py +148,This is a very common password.,Þetta er mjög algengt lykilorð. +apps/frappe/frappe/core/doctype/communication/communication.js +8,View,Útsýni +DocType: Communication,Assigned,úthlutað +DocType: Print Format,Js,js +apps/frappe/frappe/public/js/frappe/views/communication.js +76,Select Print Format,Veldu Print Format +apps/frappe/frappe/utils/password_strength.py +78,Short keyboard patterns are easy to guess,Stutt hljómborð mynstur er auðvelt að giska +DocType: Portal Settings,Portal Menu,Portal Matseðill +DocType: DocField,Print Hide,Print Fela +apps/frappe/frappe/public/js/frappe/ui/messages.js +62,Enter Value,Sláðu gildi +DocType: Workflow State,tint,blær +DocType: Workflow State,Style,Style +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,e.g.:,td: +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +85,{0} comments,{0} athugasemdir +apps/frappe/frappe/desk/page/applications/applications.js +44,Select Category...,Veldu flokk ... +DocType: Customize Form Field,Label and Type,Label og Type +DocType: Workflow State,forward,áfram +apps/frappe/frappe/public/js/frappe/form/sidebar.js +58,{0} edited this {1},{0} breytt þessu {1} +DocType: Web Page,Custom Javascript,Custom Javascript +DocType: DocPerm,Submit,Senda +apps/frappe/frappe/core/doctype/file/file_list.js +63,New Folder,Ný mappa +DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-lén veitt af erpnext.com +DocType: System Settings,dd-mm-yyyy,dd-mm-áááá +apps/frappe/frappe/desk/query_report.py +70,Must have report permission to access this report.,Verður að hafa skýrslu leyfi til að opna þessa skýrslu. +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +107,{0} has been successfully unsubscribed from this list.,{0} hefur verið sagt upp áskrift af þessum lista. +apps/frappe/frappe/public/js/frappe/desk.js +456,Added,bætt við +apps/frappe/frappe/desk/doctype/event/event.py +62,Daily Event Digest is sent for Calendar Events where reminders are set.,Daily Event Digest sé sent til Viðburðaskrá þar áminningar eru settar. +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +32,View Website,view Website +DocType: Workflow State,remove,fjarlægja +DocType: Email Account,If non standard port (e.g. 587),Ef ekki venjulegu tengi (td 587) +apps/frappe/frappe/public/js/frappe/form/toolbar.js +149,Reload,endurhlaða +apps/frappe/frappe/core/page/usage_info/usage_info.html +103,Total,alls +DocType: Event,Participants,Þátttakendur +DocType: Email Queue,Reference DocName,Tilvísun DOCNAME +DocType: Web Form,Success Message,Velgengni skilaboð +DocType: DocType,User Cannot Search,Notandi getur ekki leitað +DocType: DocPerm,Apply this rule if the User is the Owner,Beita þessari reglu ef notandinn er eigandi +apps/frappe/frappe/desk/page/activity/activity.js +70,Build Report,byggja skýrslu +apps/frappe/frappe/model/rename_doc.py +96,"{0} {1} does not exist, select a new target to merge","{0} {1} er ekki til, velja nýja miða að sameinast" +apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set permission for DocType: {0} and Name: {1},Get ekki stillt leyfi fyrir DOCTYPE: {0} og Name: {1} +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +154,Add to To Do,Bæta við til að gera +DocType: Footer Item,Company,fyrirtæki +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +20,Assigned To Me,Úthlutað til mín +apps/frappe/frappe/public/js/frappe/model/indicator.js +24,Queued for cancellation,Biðröð fyrir uppsögn +apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Verify Password,Staðfestu lykilorð +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Það voru villur +apps/frappe/frappe/core/doctype/communication/communication.js +19,Close,Loka +apps/frappe/frappe/model/document.py +536,Cannot change docstatus from 0 to 2,Get ekki breytt docstatus frá 0 til 2 +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +110,Update,Uppfæra +DocType: Error Snapshot,Snapshot View,Snapshot View +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Vistaðu Fréttabréf áður en þú sendir +apps/frappe/frappe/core/doctype/doctype/doctype.py +300,Options must be a valid DocType for field {0} in row {1},Valkostir verður að vera gilt DOCTYPE fyrir sviði {0} í röð {1} +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160,Edit Properties,Breyta Properties +DocType: Patch Log,List of patches executed,Listi yfir plástra keyrð +apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} þegar afskráður +apps/frappe/frappe/public/js/frappe/views/communication.js +68,Communication Medium,Samskipti Medium +DocType: Website Settings,Banner HTML,Banner HTML +DocType: Error Snapshot,Pyver,Pyver +apps/frappe/frappe/model/base_document.py +482,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} er ekki hægt að "{2}". Það ætti að vera einn af "{3}" +apps/frappe/frappe/utils/data.py +522,{0} or {1},{0} eða {1} +apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Sýna eða Fela Desktop Icons +apps/frappe/frappe/core/doctype/user/user.py +199,Password Update,Lykilorð Uppfæra +DocType: Workflow State,trash,rugl +DocType: Web Form,"In JSON as [{""title"":""Jobs"", ""name"":""jobs""}]","Í JSON sem [{ "title": "Jobs", "nafn": "störf"}]" +DocType: Event,Leave blank to repeat always,Skildu eftir autt til að endurtaka alltaf +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Confirmed,staðfest +DocType: Event,Ends on,endar á +DocType: Website Settings,"Added HTML in the <head> section of the web page, primarily used for website verification and SEO","Bætt við HTML í <head> hluta af the vefur blaðsíða, fyrst og fremst notað fyrir vefsvæðið sannprófun og SEO" +apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,endurkomið +apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Atriði er ekki hægt að bæta við eigin afkomenda sinna +DocType: Error Snapshot,Relapses,köst +apps/frappe/frappe/public/js/frappe/form/sidebar.js +61,{0} created this {1},{0} búin þetta {1} +apps/frappe/frappe/public/js/frappe/form/workflow.js +36,Document is only editable by users of role,Skjalið er aðeins editable af notendum hlutverki +apps/frappe/frappe/desk/form/assign_to.py +146,"The task {0}, that you assigned to {1}, has been closed by {2}.","Verkefni {0}, sem þú úthlutað til {1}, hefur verið lokað af {2}." +DocType: Blogger,Short Name,Short Name +apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,skrá Stærð +DocType: Workflow State,magnet,segull +apps/frappe/frappe/geo/doctype/currency/currency.js +7,This Currency is disabled. Enable to use in transactions,Þessi gjaldmiðill er óvirk. Kleift að nota í viðskiptum +DocType: Desktop Icon,Blocked,Bannaður +DocType: Contact Us Settings,"Default: ""Contact Us""",Default: "Hafðu samband" +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +378,"Level 0 is for document level permissions, higher levels for field level permissions.","Level 0 er skjal stigi leyfi, hærri stigum fyrir reit stigi heimildir." +DocType: Custom Script,Sample,Dæmi um +apps/frappe/frappe/core/doctype/user/user.py +360,"Username should not contain any special characters other than letters, numbers and underscore","Notandanafn ætti ekki að vera nein sértákn önnur en stöfum, númerum og undirstrik" +DocType: Event,Every Week,Í hverri viku +apps/frappe/frappe/limits.py +187,Click here to check your usage or upgrade to a higher plan,Smelltu hér til að athuga notkun eða uppfæra í hærri áætlun +DocType: Custom Field,Is Mandatory Field,Er nauðsynlegur Field +DocType: User,Website User,Vefsíða User +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,ekki jafngildir +DocType: Website Script,Script to attach to all web pages.,Script til að hengja öllum vefsíðum. +DocType: Web Form,Allow Multiple,leyfa Multiple +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +33,Assign,úthluta +apps/frappe/frappe/config/setup.py +97,Import / Export Data from .csv files.,Import / Export Gögn úr .csv skrá. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +65,You are not allowed to create / edit reports,Þú hefur ekki heimild til að búa til / breyta skýrslum +DocType: Workflow State,Icon will appear on the button,Helgimynd vilja birtast á the hnappur +DocType: Website Settings,Website Settings,Vefsíða Stillingar +apps/frappe/frappe/core/page/user_permissions/user_permissions.py +105,Please upload using the same template as download.,Vinsamlegast hlaða nota sömu sniðmát sem sækja. +DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Bæta Reference: {{ reference_doctype }} {{ reference_name }} til að senda skjal tilvísun +apps/frappe/frappe/modules/__init__.py +82,App not found,App fannst ekki +apps/frappe/frappe/core/doctype/communication/communication.py +31,Cannot create a {0} against a child document: {1},Get ekki búið til {0} gegn barni skjali: {1} +DocType: Workflow State,pencil,blýantur +apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Spjallaðu skilaboð og öðrum tilkynningum. +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +67,Insert After cannot be set as {0},Settu Eftir Ekki er hægt að setja eins og {0} +apps/frappe/frappe/public/js/frappe/form/share.js +56,Share {0} with,Deila {0} með +DocType: Workflow State,hand-up,hönd upp +DocType: Blog Settings,Writers Introduction,rithöfundar Inngangur +DocType: Communication,Phone,Sími +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +104,Error while evaluating Email Alert {0}. Please fix your template.,Villa kom meta Email Alert {0}. Vinsamlegast lagaðu sniðmát. +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Veldu Document Type eða Hlutverk að byrja. +apps/frappe/frappe/public/js/frappe/views/container.js +61,Page not found,síða ekki fundin +DocType: DocField,Precision,Precision +DocType: Website Slideshow,Slideshow Items,Slideshow Items +apps/frappe/frappe/utils/password_strength.py +96,Try to avoid repeated words and characters,Reyndu að forðast endurteknar orð og stafi +apps/frappe/frappe/model/delete_doc.py +178,Cannot delete or cancel because {0} {1} is linked with {2} {3},Ekki er hægt að eyða eða hætta við vegna þess að {0} {1} er tengd við {2} {3} +DocType: Event,Groups,hópar +DocType: Workflow State,Workflow State,workflow State +apps/frappe/frappe/www/me.html +3,My Account,Minn reikningur +DocType: ToDo,Allocated To,úthlutað til +apps/frappe/frappe/templates/emails/password_reset.html +4,Please click on the following link to set your new password,Vinsamlegast smelltu á eftirfarandi tengil til að setja nýja lykilorðið þitt +DocType: Email Alert,Days After,dögum eftir +DocType: Contact Us Settings,Settings for Contact Us Page,Stillingar fyrir Hafðu samband síðunni +DocType: Custom Script,Script Type,Script Type +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} weeks ago,{0} vikum +DocType: Email Account,Footer,Footer +apps/frappe/frappe/utils/verified_command.py +39,Invalid Link,Ógilt Link +DocType: Web Page,Show Title,Sýna Title +DocType: Property Setter,Property Type,Property Type +DocType: Workflow State,screenshot,screenshot +apps/frappe/frappe/core/doctype/report/report.py +27,Only Administrator can save a standard report. Please rename and save.,Aðeins Stjórnandi getur bjargað staðlað skýrslu. Vinsamlegast endurnefna og vista. +DocType: System Settings,Background Workers,Bakgrunnur Workers +DocType: DocField,Data,gögn +apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,skjal Staða +DocType: Email Account,Login Id,Aðgangsorð +apps/frappe/frappe/core/page/data_import_tool/importer.py +186,Not allowed to Import,Ekki leyft að flytja inn +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,aðgangsheimildir Levels +DocType: Workflow State,Warning,Viðvörun +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +521,You will use it to Login,Þú verður að nota það til að Innskráning +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +815,"Ignoring Item {0}, because a group exists with the same name!","Hunsa Hlutir {0}, vegna þess að hópur til með sama nafni!" +DocType: DocType,In Dialog,í glugganum +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +165,Help,Hjálp +DocType: User,Login Before,Innskráning Áður +DocType: Web Page,Insert Style,Setja inn Style +apps/frappe/frappe/config/setup.py +214,Application Installer,Application Installer +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +612,New Report name,Ný skýrsla nafn +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Is,er +DocType: Workflow State,info-sign,Upplýsingar-merki +apps/frappe/frappe/model/base_document.py +207,Value for {0} cannot be a list,Gildi fyrir {0} getur ekki verið listi +DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvernig ætti þetta gjaldmiðil vera sniðinn? Ef ekkert er valið, mun nota kerfið sjálfgefnar stillingar" +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +250,Show User Permissions,Sýna notanda Heimildir +apps/frappe/frappe/utils/response.py +119,You need to be logged in and have System Manager Role to be able to access backups.,Þú þarft að vera innskráður og hafa System Manager hlutverki að vera fær um að fá aðgang að afrit. +apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,eftir +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Vinsamlegast vista áður festa. +apps/frappe/frappe/public/js/frappe/form/link_selector.js +121,Added {0} ({1}),Bætti {0} ({1}) +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +274,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ekki hægt að breyta frá {0} til {1} í röð {2} +apps/frappe/frappe/core/doctype/user/user.js +328,Role Permissions,hlutverk Heimildir +apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Get Lesa +DocType: Standard Reply,Response,svar +apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Workflow hefst eftir vistun. +apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Get Deila +apps/frappe/frappe/email/smtp.py +35,Invalid recipient address,Ógilt netfang viðtakanda +DocType: Workflow State,step-forward,skref áfram +apps/frappe/frappe/limits.py +61,Your subscription has expired.,Áskriftin þín er útrunnin. +apps/frappe/frappe/core/doctype/user/user.js +44,Refreshing...,Hressandi ... +DocType: Event,Starts on,byrjar á +DocType: System Settings,System Settings,System Settings +apps/frappe/frappe/email/queue.py +171,This email was sent to {0} and copied to {1},Þessi tölvupóstur var sendur til {0} og afrita til {1} +DocType: Workflow State,th,Þ +apps/frappe/frappe/public/js/frappe/form/control.js +1266,Create a new {0},Búa til nýjan {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +257,Report {0},Skýrsla {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +12,Open {0},Open {0} +DocType: Email Alert,Recipients,viðtakendur +DocType: Workflow State,ok-sign,OK-merki +apps/frappe/frappe/public/js/frappe/form/toolbar.js +138,Duplicate,afrit +DocType: Newsletter,Create and Send Newsletters,Búa til og senda Fréttabréf +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +305,From Date must be before To Date,Frá Dagsetning verður að vera fyrir Lokadagurinn +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +21,Please specify which value field must be checked,Vinsamlegast tilgreinið hvaða gildi reit verður að vera merkt +apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","Parent" táknar foreldri borð sem þessi röð verður að bæta +DocType: Website Theme,Apply Style,gilda Style +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +53,Shared With,deilt með +,Modules Setup,Modules skipulag +apps/frappe/frappe/core/page/data_import_tool/exporter.py +237,Type:,Tegund: +DocType: Communication,Unshared,unshared +apps/frappe/frappe/desk/moduleview.py +63,Module Not Found,Eining fannst ekki +DocType: User,Location,Staðsetning +apps/frappe/frappe/core/page/usage_info/usage_info.html +4,Renew before: {0},Endurnýja áður: {0} +,Permitted Documents For User,Heimilar Skjöl fyrir notanda +apps/frappe/frappe/core/doctype/docshare/docshare.py +42,"You need to have ""Share"" permission",Þú þarft að hafa "Share" leyfi +DocType: Communication,Assignment Completed,framsal Lokið +apps/frappe/frappe/public/js/frappe/form/grid.js +480,Bulk Edit {0},Magn Breyta {0} +DocType: Email Alert Recipient,Email Alert Recipient,Netfang Alert Viðtakandi +apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,ekki virkur +DocType: About Us Settings,Settings for the About Us Page,Stillingar fyrir Um okkur Page +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Veldu tegund skjals að sækja +DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,td pop.gmail.com / imap.gmail.com +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +208,Use the field to filter records,Notaðu reit til að sía færslur +DocType: Email Account,Outlook.com,Outlook.com +DocType: System Settings,Scheduler Last Event,Tímaáætlun Síðasta Event +DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Bæta við Google Analytics: td. UA-89XXX57-1. Prófaðu að leita hjálpar á Google Analytics til að fá frekari upplýsingar. +apps/frappe/frappe/utils/password.py +93,Password cannot be more than 100 characters long,Lykilorð má ekki vera meira en 100 stafir að lengd +DocType: Email Alert Recipient,"Expression, Optional","Tjáningu, Valfrjálst" +apps/frappe/frappe/email/queue.py +173,This email was sent to {0},Þessi tölvupóstur var sendur til {0} +DocType: Email Account,Check this to pull emails from your mailbox,Hakaðu við þetta til að draga tölvupóst úr pósthólfinu +apps/frappe/frappe/limits.py +132,click here,Ýttu hér +apps/frappe/frappe/model/document.py +549,Cannot edit cancelled document,Ekki er hægt að breyta hætt skjal +DocType: Event,Monday,Mánudagur +apps/frappe/frappe/utils/password_strength.py +80,Make use of longer keyboard patterns,Nýta lengri hljómborð mynstrum +apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the Administrator.,Hreiður sett villa. Vinsamlegast hafðu samband við kerfisstjóra. +DocType: Workflow State,envelope,umslag +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Option 2,valkostur 2 +apps/frappe/frappe/core/doctype/docshare/docshare.py +51,{0} shared this document with {1},{0} deildi þessu skjali með {1} +DocType: Print Settings,A4,A4 +apps/frappe/frappe/config/website.py +54,"Setup of top navigation bar, footer and logo.",Uppsetning á topp stöðustikunni fót og merki. +apps/frappe/frappe/core/doctype/doctype/doctype.py +490,For {0} at level {1} in {2} in row {3},Fyrir {0} á vettvangi {1} í {2} í röð {3} +DocType: Communication,All,Allt +DocType: Email Queue,Recipient,viðtakandi +apps/frappe/frappe/config/setup.py +172,Drag and Drop tool to build and customize Print Formats.,Draga og sleppa tól til að byggja upp og aðlaga prenta snið. +apps/frappe/frappe/public/js/frappe/ui/tree.js +122,Expand,Stækka +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +428,Set,Setja +DocType: Workflow State,align-right,samræma hægri +apps/frappe/frappe/core/doctype/file/file.py +195,Folder {0} is not empty,Folder {0} er ekki tómt +DocType: Page,Roles,hlutverk +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +221,Field {0} is not selectable.,Field {0} er ekki að velja. +DocType: System Settings,Session Expiry,Session Fyrning +DocType: Workflow State,ban-circle,bann hring +DocType: Bulk Update,Desk,Desk +apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skrifa SELECT fyrirspurn. Ath niðurstaðan er ekki paged (öll gögn eru send í einu). +DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB) +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +22,Ctrl + Down,Ctrl + Down +apps/frappe/frappe/utils/password_strength.py +144,This is a top-10 common password.,Þetta er topp-10 algengar lykilorð. +DocType: User,User Defaults,User Vanskil +apps/frappe/frappe/public/js/frappe/views/treeview.js +179,Create New,Búa til nýtt +DocType: Workflow State,chevron-down,Chevron niður +apps/frappe/frappe/public/js/frappe/views/communication.js +405,Email not sent to {0} (unsubscribed / disabled),Email ekki send til {0} (afskráður / óvirkt) +DocType: Async Task,Traceback,Rekja aftur +DocType: Currency,Smallest Currency Fraction Value,Minnsta Gjaldmiðill Brot Value +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +159,Assign To,úthluta til +DocType: Workflow State,th-list,Th-lista +DocType: Translation,Translated,þýtt +DocType: Web Page,Enable Comments,Virkja Athugasemdir +apps/frappe/frappe/desk/doctype/note/note_list.js +3,Notes,Skýringar +DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Takmarka notandi frá þessari IP-tölu eingöngu. Margar IP tölur má bæta með því að aðskilja með kommum. Einnig tekur hluta IP tölu eins og (111.111.111) +DocType: Communication,From,frá +DocType: Website Theme,Google Font (Heading),Google Font (nr) +apps/frappe/frappe/public/js/frappe/views/treeview.js +165,Select a group node first.,Veldu hóp hnút fyrst. +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +191,Find {0} in {1},Finna {0} í {1} +DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Viðskeyti eins og samskipti við þennan DOCTYPE (verður að hafa reiti "Status", "Subject")" +DocType: DocType,Allow Import via Data Import Tool,Leyfa Import gegnum Data Import Tool +apps/frappe/frappe/model/base_document.py +536,Not allowed to change {0} after submission,Ekki heimilt að breyta {0} eftir uppgjöf +DocType: Communication,Comment Type,athugasemd Type +apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Notendur +DocType: Report,Report Type,Tegund skýrslu +DocType: Email Account,Signature,undirskrift +apps/frappe/frappe/public/js/frappe/form/share.js +114,Share With,Deila með +apps/frappe/frappe/core/doctype/user/user.js +140,Loading,Loading +apps/frappe/frappe/config/setup.py +221,"Enter keys to enable login via Facebook, Google, GitHub.","Sláðu takkana til að virkja Innskráning með Facebook, Google, GitHub." +apps/frappe/frappe/public/js/frappe/ui/tags.js +21,Add a tag,Bæta tag +apps/frappe/frappe/public/js/frappe/form/control.js +1102,Please attach a file first.,Hengdu skrá fyrst. +apps/frappe/frappe/model/naming.py +165,"There were some errors setting the name, please contact the administrator","Það voru nokkrar villur stilling nafn, vinsamlegast hafið samband við umsjónarmann" +DocType: Website Slideshow Item,Website Slideshow Item,Vefsíða Slideshow Item +DocType: DocType,Title Case,Title Case +DocType: Blog Post,Email Sent,Tölvupóstur sendur +DocType: DocField,Ignore XSS Filter,Hunsa XSS Sía +apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Senda sem tölvupóst +DocType: Website Theme,Link Color,Link Color +apps/frappe/frappe/core/doctype/user/user.py +70,User {0} cannot be disabled,User {0} Ekki er hægt að fatlaður +apps/frappe/frappe/core/doctype/user/user.py +633,"Dear System Manager,","Kæri System Manager," +DocType: Event,Sunday,sunnudagur +apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,um breytingu á +apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max notendur +DocType: Contact Us Settings,Send enquiries to this email address,Senda fyrirspurnir á þetta netfang +DocType: Letter Head,Letter Head Name,Letter Head Name +apps/frappe/frappe/config/website.py +18,User editable form on Website.,Notandi editable form á vefsvæðinu. +DocType: Workflow State,file,skrá +apps/frappe/frappe/www/login.html +83,Back to Login,Til baka í innskráningu +apps/frappe/frappe/model/rename_doc.py +102,You need write permission to rename,Þú þarft skrif-heimild að endurnefna +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +433,Apply Rule,gilda reglu +DocType: User,Karma,Karma +DocType: DocField,Table,Tafla +DocType: File,File Size,Skjala stærð +apps/frappe/frappe/website/doctype/web_form/web_form.py +259,You must login to submit this form,Þú verður að skrá þig til að senda þetta eyðublað +DocType: User,Background Image,bakgrunnsmynd +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +405,"Select your Country, Time Zone and Currency","Veldu landið þitt, tímabelti og gjaldmiðli" +DocType: Async Task,Queued,biðröð +apps/frappe/frappe/public/js/frappe/form/print.js +99,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 +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +201,Invalid Filter: {0},Ógild Filter: {0} +DocType: About Us Settings,Org History,org Saga +DocType: Workflow,Workflow Name,workflow Name +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +165,Notify by Email,Tilkynna með tölvupósti +DocType: Web Form,Allow Edit,leyfa Edit +apps/frappe/frappe/core/doctype/file/file_list.js +118,Paste,Líma +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Getur ekki breytt stöðu hætt við skjali. Umskipti róður {0} +DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reglur um hvernig ríki eru umbreytingum, eins næsta ríki og sem hlutverk er heimilt að breyta stöðu o.fl." +apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} er þegar til +apps/frappe/frappe/email/doctype/email_account/email_account.py +72,Append To can be one of {0},Bæta við geta vera einn af {0} +DocType: User,Github Username,github Notandanafn +DocType: Web Page,Title / headline of your page,Titill / Fyrirsögn síðuna þína +DocType: DocType,Plugin,Stinga inn +DocType: DocType,Image View,Mynd View +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +63,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Settu Eftir sviði '{0}' getið í Custom Field '{1}', með merki '{2}', er ekki til" +apps/frappe/frappe/public/js/frappe/views/communication.js +269,Add Attachments,Bæta Viðhengi +DocType: Workflow State,signal,merki +DocType: DocType,Show Print First,Sýna Prenta First +apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter til að senda +apps/frappe/frappe/public/js/frappe/list/doclistview.js +439,Make a new {0},Gera nýtt {0} +apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Stærð (MB) +apps/frappe/frappe/core/doctype/communication/communication.js +24,Reopen,Enduropna +apps/frappe/frappe/public/js/frappe/views/communication.js +123,Re: {0},Re: {0} +DocType: Print Settings,Monochrome,Svarthvítt +DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Öðruvísi "States" þetta skjal getur verið í. Eins og "Open", "bíður samþykkis" osfrv" +apps/frappe/frappe/utils/verified_command.py +40,This link is invalid or expired. Please make sure you have pasted correctly.,Þessi tengill er ógilt eða útrunnin. Vinsamlegast vertu viss um að hafa límt rétt. +DocType: Web Page,Slideshow,Slideshow +DocType: Workflow State,Search,leit +DocType: Web Form,Web Form Fields,Vefform Fields +DocType: Website Theme,Top Bar Text Color,Top Bar Litur texta +apps/frappe/frappe/public/js/frappe/list/doclistview.js +358,Warning: Unable to find {0} in any table related to {1},Viðvörun: Ekki er hægt að finna {0} í hvaða borð sem tengjast {1} +apps/frappe/frappe/model/document.py +524,This document is currently queued for execution. Please try again,Þetta skjal er nú biðröð fyrir framkvæmd. Vinsamlegast reyndu aftur +apps/frappe/frappe/core/doctype/file/file.py +325,File '{0}' not found,Skráin '{0}' fannst ekki +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +370,Remove Section,fjarlægja kafla +DocType: User,Change Password,Breyta lykilorði +apps/frappe/frappe/public/js/frappe/form/control.js +497,Invalid Email: {0},Ógilt Netfang: {0} +apps/frappe/frappe/desk/doctype/event/event.py +16,Event end must be after start,Atburður enda verður að vera eftir upphaf +apps/frappe/frappe/desk/query_report.py +22,You don't have permission to get a report on: {0},Þú hefur ekki leyfi til að fá skýrslu um: {0} +DocType: Blog Post,Blog Post,Blog Post +apps/frappe/frappe/public/js/frappe/form/control.js +1275,Advanced Search,Ítarleg leit +apps/frappe/frappe/core/doctype/user/user.py +547,Password reset instructions have been sent to your email,Lykilorð Endurstilla leiðbeiningar hafa verið send til þinn email +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +545,Sort By,Raða eftir +apps/frappe/frappe/config/setup.py +226,Manage cloud backups on Dropbox,Stjórna ský afrit á Dropbox +DocType: Workflow,States,Ríki +DocType: Email Alert,Attach Print,hengja Prenta +apps/frappe/frappe/core/doctype/user/user.py +378,Suggested Username: {0},Lagði Notandanafn: {0} +,Modules,Modules +apps/frappe/frappe/core/doctype/user/user.js +51,Set Desktop Icons,Setja skjáborðsíkonin +apps/frappe/frappe/www/login.html +58,Dont have an account? ,Dont með reikning? +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Þegar þú breytt skjal eftir Hætta og vista það, mun það fá nýtt númer sem er ný útgáfa af gamla númerið." +DocType: Workflow State,circle-arrow-left,hring-ör-vinstri +apps/frappe/frappe/sessions.py +113,Redis cache server not running. Please contact Administrator / Tech support,Redis skyndiminni miðlara ekki í gangi. Vinsamlegast hafðu samband við kerfisstjóra / Tech stuðning +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +105,Make a new record,Gera nýtt met +DocType: Currency,Fraction,brot +apps/frappe/frappe/public/js/frappe/form/control.js +868,Select from existing attachments,Veldu úr núverandi viðhengi +DocType: Custom Field,Field Description,Field Lýsing +apps/frappe/frappe/model/naming.py +54,Name not set via Prompt,Nafn ekki sett með Hvetja +DocType: Note,Note is a free page where users can share documents / notes,Note er ókeypis síða þar sem notendur geta deilt skjöl / athugasemdum +DocType: Website Theme,Top Bar Color,Top Bar Color +DocType: DocType,Setup,Setja upp +DocType: DocType,Allow Import,leyfa Innflutningur +apps/frappe/frappe/templates/includes/comments/comments.py +55,New comment on {0} {1},Ný ummæli á {0} {1} +DocType: Workflow State,glass,gler +DocType: DocType,Timeline Field,tímalína Field +DocType: Country,Time Zones,Tími Zones +DocType: DocField,Image,Mynd +DocType: Workflow State,remove-sign,fjarlægja-merki +apps/frappe/frappe/config/setup.py +193,Define workflows for forms.,Skilgreina Verkferlar fyrir formum. +DocType: Communication,Other,Annað +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +156,Start new Format,Byrja nýtt snið +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +144,Please attach a file,Hengdu skrá +DocType: Workflow State,font,letur +apps/frappe/frappe/utils/password_strength.py +146,This is a top-100 common password.,Þetta er topp-100 algengar lykilorð. +apps/frappe/frappe/public/js/frappe/form/print.js +75,Please enable pop-ups,Vinsamlegast virkjaðu pop-ups +DocType: Customize Form Field,Is Custom Field,Er Custom Field +DocType: Workflow,"If checked, all other workflows become inactive.",Ef hakað verða allar aðrar Verkferlar óvirkt. +apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Merki]: [Reitur Tegund] / [Valkostir]: [Breidd] +DocType: Workflow State,folder-close,mappa-loka +apps/frappe/frappe/model/rename_doc.py +105,{0} not allowed to be renamed,{0} Ekki leyfilegt að endurnefna +DocType: Custom Script,Custom Script,Custom Script +DocType: Contact Us Settings,Address Line 2,Heimilisfang lína 2 +DocType: Communication,Reference,Tilvísun +apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Úthlutað til +apps/frappe/frappe/core/doctype/user/user.py +206,Verify Your Account,Staðfestu aðgang þinn +apps/frappe/frappe/email/doctype/email_group/email_group.js +25,Action,aðgerð +apps/frappe/frappe/www/update-password.html +100,Please enter the password,Vinsamlegast sláðu inn lykilorð +apps/frappe/frappe/www/print.py +83,Not allowed to print cancelled documents,Ekki leyft að prenta hætt skjöl +apps/frappe/frappe/core/page/data_import_tool/exporter.py +238,Info:,info: +DocType: Custom Field,Permission Level,leyfi Level +DocType: User,Send Notifications for Transactions I Follow,Senda Tilkynningar fyrir viðskipti Ég fylgi +apps/frappe/frappe/core/doctype/doctype/doctype.py +533,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Get ekki sett Senda, Hætta, breytt án Write" +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Ertu viss um að þú viljir eyða viðhengi? +apps/frappe/frappe/model/base_document.py +514,"{0}: '{1}' will get truncated, as max characters allowed is {2}","{0}: '{1}' mun fá styttu, sem max stafir leyft er {2}" +apps/frappe/frappe/__init__.py +1003,Thank you,Þakka þér +apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Saving +DocType: Print Settings,Print Style Preview,Print Style Forskoða +apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder +apps/frappe/frappe/website/doctype/web_form/web_form.py +225,You are not allowed to update this Web Form Document,Þú hefur ekki heimild til að uppfæra þetta vefform Skjal +DocType: About Us Settings,About Us Settings,Um okkur Stillingar +DocType: Website Settings,Website Theme,Vefsíða Þema +DocType: DocField,In List View,Í listayfirliti +DocType: Email Account,Use TLS,Nota TLS +apps/frappe/frappe/email/smtp.py +32,Invalid login or password,Ógilt notandanafn eða lykilorð +apps/frappe/frappe/config/setup.py +255,Add custom javascript to forms.,Bæta sérsniðin JavaScript til að formum. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +395,Sr No,Sr No +,Role Permissions Manager,Hlutverk Heimildir Manager +DocType: Website Theme,This must be checked if the below style settings are applicable,Þetta skal kanna hvort hér fyrir neðan stíl stillingar eiga við +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111,Name of the new Print Format,Heiti nýju Prenta Format +apps/frappe/frappe/public/js/frappe/form/control.js +870,Clear Attachment,Hreinsa Attachment +apps/frappe/frappe/core/page/data_import_tool/exporter.py +236,Mandatory:,nauðsynlegur: +,User Permissions Manager,User Heimildir Manager +DocType: Property Setter,New value to be set,Ný gildi til að setja +DocType: Email Alert,Days Before or After,Daga fyrir eða eftir +DocType: Email Alert,Email Alert,Netfang Alert +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +34,Select Document Types to set which User Permissions are used to limit access.,Velja Document Tegundir að setja hvaða User Heimildir eru notuð til að takmarka aðgang. +DocType: Website Settings,HTML Header & Robots,HTML haus & Robots +apps/frappe/frappe/config/website.py +28,Blog,Blog +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,Download with data,Sækja með gögn +DocType: Workflow State,hand-right,hönd-rétt +DocType: Website Settings,Subdomain,undirlén +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +403,Region,Region +apps/frappe/frappe/public/js/frappe/form/workflow.js +35,Current status,Núverandi staða +DocType: Web Form,Allow Delete,leyfa Eyða +DocType: Email Alert,Message Examples,Skilaboða Dæmi +DocType: Web Form,Login Required,Innskráning Required +apps/frappe/frappe/config/website.py +38,Write titles and introductions to your blog.,Skrifaðu titla og kynning á bloggið þitt. +DocType: Email Account,Notify if unreplied for (in mins),Tilkynna ef unreplied fyrir (í mín) +apps/frappe/frappe/public/js/frappe/list/listview.js +375,2 days ago,2 dagar síðan +apps/frappe/frappe/config/website.py +43,Categorize blog posts.,Flokka bloggfærslum. +DocType: Workflow State,Time,tími +DocType: DocField,Attach,hengja +apps/frappe/frappe/core/doctype/doctype/doctype.py +410,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ekki gilt FIELDNAME mynstur. Það ætti að vera {{FIELD_NAME}}. +DocType: DocType,Permission Rules,aðgangsheimildir Reglur +apps/frappe/frappe/public/js/frappe/form/toolbar.js +131,Links,Tenglar +apps/frappe/frappe/model/base_document.py +396,Value missing for,Gildi vantar fyrir +apps/frappe/frappe/public/js/frappe/views/treeview.js +129,Add Child,Bæta Child +apps/frappe/frappe/model/delete_doc.py +158,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Lagt Record ekki hægt að eyða. +apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Size +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +106,new type of document,Ný tegund skjals +DocType: DocPerm,Read,Lesa +apps/frappe/frappe/www/update-password.html +13,Old Password,gamalt lykilorð +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +107,Posts by {0},Posts by {0} +apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Til sniði dálka, gefa dálki merki í fyrirspurninni." +apps/frappe/frappe/core/doctype/doctype/doctype.py +560,{0}: Cannot set Assign Amend if not Submittable,{0}: Get ekki stillt á Velja breytt ef ekki Submittable +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Breyta Role Heimildir +DocType: Communication,Link DocType,Link DOCTYPE +DocType: Social Login Keys,Social Login Keys,Félagsleg skráður Keys +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +72,Remove all customizations?,Fjarlægja öll customizations? +DocType: Website Slideshow,Slideshow Name,Myndasýning +apps/frappe/frappe/public/js/frappe/form/save.js +15,Cancelling,Hættir +DocType: DocType,Allow Rename,leyfa Rename +DocType: User,Full Name,Fullt nafn +DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Barn Töflur eru sýndar sem Grid í öðrum DocTypes. +DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lýsing á skráningu síðu, í látlaus texti, aðeins nokkrar línur. (max 140 stafir)" +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +39,Forums,Forums +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +302,Add A User Restriction,Bæta notanda Takmörkun +DocType: DocType,Name Case,heiti Case +apps/frappe/frappe/public/js/frappe/form/share.js +26,Shared with everyone,Deilt með alla +apps/frappe/frappe/model/base_document.py +392,Data missing in table,Gögn vantar í töflu +DocType: Web Form,Success URL,Velgengni URL +DocType: Email Account,Append To,bæta við +DocType: Workflow Document State,Only Allow Edit For,Aðeins Leyfa Breyta til +apps/frappe/frappe/templates/includes/comments/comments.html +31,Your Name,Nafn þitt +DocType: File,Is Folder,er Folder +DocType: Newsletter,Test Email Id,Próf Email Id +DocType: DocType,DocType,DOCTYPE +apps/frappe/frappe/core/doctype/user/user.py +550,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ð." +DocType: User,Mute Sounds,Slökkva á hljóði +DocType: Top Bar Item,Top Bar Item,Top Bar Item +apps/frappe/frappe/utils/csvutils.py +49,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Óþekkt skrá kóðun. Reyndi utf-8, windows-1250, windows-1252." +DocType: Website Settings,Robots.txt,robots.txt +apps/frappe/frappe/core/doctype/user/user.py +140,Sorry! Sharing with Website User is prohibited.,Afsakið! Deila með Website Notandi er bönnuð. +apps/frappe/frappe/core/doctype/user/user.js +162,Add all roles,Bæta við öllum hlutverkum +apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \ + can get back to you. Thanks!",Vinsamlegast sláðu inn bæði netfangið þitt og skilaboð þannig að við \ getum fengið til baka til þín. Takk! +apps/frappe/frappe/email/smtp.py +163,Could not connect to outgoing email server,Gat ekki tengst sendan email framreiðslumaður +apps/frappe/frappe/public/js/frappe/form/control.js +1531,Rich Text,Rich Text +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,Thank you for your interest in subscribing to our updates,Þakka þér fyrir áhuga þinn á að gerast áskrifandi að uppfærslum okkar +DocType: Workflow State,resize-full,resize-fullur +DocType: Workflow State,off,burt +apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,Skýrsla {0} er óvirk +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24,Recommended for inserting new records.,Mælt með fyrir að setja nýjar færslur. +DocType: Async Task,Core,Core +DocType: DocField,Set non-standard precision for a Float or Currency field,Setja non-staðall nákvæmni fyrir Float eða Gjaldmiðill sviði +DocType: Email Account,Ignore attachments over this size,Hunsa viðhengi yfir þessari stærð +apps/frappe/frappe/database.py +230,Too many writes in one request. Please send smaller requests,Of margir skrifar í einni beiðni. Vinsamlegast sendu smærri beiðnir +DocType: Workflow State,arrow-up,ör-upp +DocType: DocField,Allow on Submit,Leyfa á Senda +DocType: DocField,HTML,HTML +DocType: Error Snapshot,Exception Type,undantekning Type +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +480,Pick Columns,Pick Dálkar +DocType: Web Page,Add code as <script>,Bæta kóða sem <script> +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Veldu tegund +apps/frappe/frappe/config/core.py +57,A log of request errors,A log beiðni villur +DocType: Letter Head,Letter Head,Letter Head +DocType: DocType,Quick Entry,Quick Entry +apps/frappe/frappe/core/doctype/file/file.py +205,No permission to write / remove.,Engin heimild til að skrifa / fjarlægja. +DocType: Website Theme,UPPERCASE,hástafir +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Draga atriði úr the skenkur til að bæta við. Draga þá aftur til ruslið. +DocType: Workflow State,resize-small,resize-lítið +apps/frappe/frappe/public/js/frappe/ui/editor.html +68,Horizontal Line Break,Lárétt lína Break +DocType: Top Bar Item,Right,Hægri +DocType: User,User Type,Gerð notanda +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select User,Veldu Notandi +DocType: Async Task,Reference Doc,Tilvísun Doc +DocType: Communication,Keep a track of all communications,Halda utan um öll samskipti +apps/frappe/frappe/desk/form/save.py +34,Did not save,Ekki spara +DocType: Property Setter,Property,Property +DocType: Email Account,Yandex.Mail,Yandex.Mail +DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Ath: Fyrir bestu niðurstöður, myndir verða að vera af sömu stærð og breidd skal vera meiri en hæð." +DocType: DocType,Auto Name,Auto Name +apps/frappe/frappe/utils/password_strength.py +103,Avoid sequences like abc or 6543 as they are easy to guess,Forðastu raðir eins abc eða 6543 eins og þeir eru auðvelt að giska +apps/frappe/frappe/public/js/frappe/request.js +93,Please try again,Vinsamlegast reyndu aftur +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Option 3,valkostur 3 +DocType: Workflow State,Edit,Breyta +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +192,Permissions can be managed via Setup > Role Permissions Manager,Heimildir er hægt að stjórna í gegnum Setup> Hlutverk Heimildir Manager +DocType: Contact Us Settings,Pincode,PIN númer +apps/frappe/frappe/core/page/data_import_tool/importer.py +71,Please make sure that there are no empty columns in the file.,Vinsamlegast gakktu úr skugga um að það eru engin tóm dálkar í skrá. +apps/frappe/frappe/utils/oauth.py +209,Please ensure that your profile has an email address,Vinsamlegast tryggja að prófíllinn þinn hefur netfangið +apps/frappe/frappe/public/js/frappe/model/create_new.js +269,You have unsaved changes in this form. Please save before you continue.,Þú ert með óvistaðar breytingar í þessu formi. Vinsamlegast spara áður en þú heldur áfram. +apps/frappe/frappe/core/doctype/doctype/doctype.py +328,Default for {0} must be an option,Sjálfgefið fyrir {0} verður að vera valkostur +DocType: User,User Image,User Image +apps/frappe/frappe/email/queue.py +251,Emails are muted,Póstur er þögguð +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +22,Ctrl + Up,Ctrl + Up +DocType: Website Theme,Heading Style,Fyrirsögn Style +apps/frappe/frappe/desk/page/applications/applications.py +74,You cannot install this app,Þú getur ekki sett þetta forrit +DocType: Communication,Error,villa +DocType: DocField,Column Break,dálkur Break +DocType: Event,Thursday,fimmtudagur +apps/frappe/frappe/utils/response.py +129,You don't have permission to access this file,Þú hefur ekki leyfi til að opna þessa skrá +apps/frappe/frappe/model/document.py +611,Cannot link cancelled document: {0},Get ekki tengt hætt skjali: {0} +apps/frappe/frappe/core/doctype/report/report.py +24,Cannot edit a standard report. Please duplicate and create a new report,Ekki er hægt að breyta venjulegu skýrslu. Vinsamlegast afrit og búa til nýja skýrslu +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +579,"For example: If you want to include the document ID, use {0}","Til dæmis: Ef þú vilt að fela skjalskenni, nota {0}" +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +482,Select Table Columns for {0},Valið Tafla Dálkar fyrir {0} +DocType: Custom Field,Options Help,valkostir Hjálp +DocType: Footer Item,Group Label,Group Label +DocType: DocField,Report Hide,skýrsla Fela +apps/frappe/frappe/public/js/frappe/views/treeview.js +14,Tree view not available for {0},Tree view ekki í boði fyrir {0} +DocType: Custom Field,Label Help,Label Hjálp +DocType: Workflow State,star-empty,stjörnu-tómt +apps/frappe/frappe/utils/password_strength.py +117,Dates are often easy to guess.,Dagsetningar eru oft auðvelt að giska. +apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,næsta aðgerðir +apps/frappe/frappe/public/js/frappe/views/ganttview.js +79,Nothing to show for this selection,Ekkert til að sýna fyrir þetta val +DocType: Workflow State,ok,allt í lagi +DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Þessi gildi verða sjálfkrafa uppfærð í viðskiptum og einnig verður gagnlegt að takmarka heimildir fyrir þessum notanda um viðskipti sem innihalda þessi gildi. +apps/frappe/frappe/desk/page/applications/application_row.html +24,Publisher,Útgefandi +apps/frappe/frappe/model/rename_doc.py +350,** Failed: {0} to {1}: {2},** Mistókst: {0} til {1}: {2} +apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Vafra +apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,tölvupóstar sendir +apps/frappe/frappe/utils/password_strength.py +30,"No need for symbols, digits, or uppercase letters.","Engin þörf fyrir tákn, tölustafi eða hástafi." +DocType: DocField,Currency,Gjaldmiðill +apps/frappe/frappe/templates/includes/comments/comments.py +50,View it in your browser,Skoða það í vafranum þínum +DocType: Async Task,Running,Running +apps/frappe/frappe/www/update-password.html +3,Reset Password,Endur stilla lykilorð +apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Uppfærðu að bæta við fleiri en {0} áskrifendur +DocType: Workflow State,hand-left,hönd-vinstri +apps/frappe/frappe/core/doctype/doctype/doctype.py +341,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} fyrir {1} er ekki að vera einstakt +DocType: Email Account,Use SSL,Nota SSL +DocType: Workflow State,play-circle,spila-hring +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,Veldu prenta sniði til að breyta +DocType: Workflow State,circle-arrow-down,hring-arrow-niður +apps/frappe/frappe/config/desk.py +38,Private and public Notes.,Einkaaðila og opinberra Skýringar. +DocType: DocField,Datetime,datetime +DocType: Workflow State,arrow-right,arrow hægri +DocType: Workflow State,Workflow state represents the current state of a document.,Workflow ástand táknar núverandi stöðu skjals. +apps/frappe/frappe/utils/oauth.py +198,Token is missing,Token vantar +apps/frappe/frappe/public/js/frappe/ui/editor.js +443,Open Link in a new Window,Opna tengil í nýjum glugga +apps/frappe/frappe/utils/file_manager.py +257,Removed {0},Fjarlægði {0} +DocType: Company History,Highlight,Highlight +DocType: DocField,Fold,Fold +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +509,Ascending,hækkandi +apps/frappe/frappe/print/doctype/print_format/print_format.py +18,Standard Print Format cannot be updated,Standard Prenta Format er ekki hægt að uppfæra +apps/frappe/frappe/integrations/doctype/dropbox_backup/dropbox_backup.js +14,Please specify,vinsamlegast tilgreindu +DocType: Communication,Bot,Bot +DocType: Page,Page Name,Page Name +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +169,Help: Field Properties,Hjálp: Field Properties +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +86,Importing...,Flytur ... +apps/frappe/frappe/model/document.py +848,Incorrect value in row {0}: {1} must be {2} {3},Rangt gildi í röð {0}: {1} verður að vera {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Lögð Document ekki hægt að breyta aftur í drög. Umskipti róður {0} +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Veldu fyrirliggjandi snið að breyta eða hefja nýtt snið. +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Búið Custom Field {0} í {1} +DocType: System Settings,Time Zone,Tímabelti +DocType: Print Settings,Compact Item Print,Compact Item Prenta +DocType: User,Redirect URL,Framsendingarslóð +apps/frappe/frappe/email/doctype/email_queue/email_queue.py +19,Only Administrator can delete Email Queue,Aðeins Stjórnandi getur eytt Email Biðröð +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,A notandi geta vera heimilt að mörgum skrám á sama DOCTYPE. +DocType: Workflow State,Home,Home +DocType: Workflow State,question-sign,spurning-merki +apps/frappe/frappe/www/login.html +58,Sign up.,Skráðu þig. +DocType: Email Account,Add Signature,Bæta undirskrift +apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Vinstri þetta samtal +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474,Did not set,Ekki sett +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Skipulag> User Heimildir Manager +DocType: ToDo,ToDo,Að gera +DocType: DocField,No Copy,engin Afrita +DocType: Workflow State,qrcode,qrcode +DocType: Web Form,Breadcrumbs,breadcrumbs +apps/frappe/frappe/core/doctype/doctype/doctype.py +506,If Owner,Ef Eigandi +apps/frappe/frappe/website/doctype/web_form/web_form.py +116,You need to be logged in to access this {0}.,Þú þarft að vera innskráður til að fá aðgang að þessu {0}. +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +163,Complete By,Complete By +apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} af {1} +apps/frappe/frappe/utils/password_strength.py +166,All-uppercase is almost as easy to guess as all-lowercase.,All-hástafi er nánast eins auðvelt að giska eins og allur-lágstöfum. +DocType: Website Settings,Top Bar Items,Top Bar Items +apps/frappe/frappe/public/js/frappe/model/indicator.js +16,Queued for saving,Biðröð fyrir vistun +DocType: Print Settings,Print Settings,prentstillingar +DocType: Page,Yes,Já +DocType: DocType,Max Attachments,Max Viðhengi +DocType: Desktop Icon,Page,Page +apps/frappe/frappe/utils/bot.py +122,Could not find {0} in {1},Gat ekki fundið {0} í {1} +apps/frappe/frappe/utils/password_strength.py +158,Names and surnames by themselves are easy to guess.,Nöfn og eftirnöfn eftir sig er auðvelt að giska. +DocType: Workflow State,briefcase,skjalataska +apps/frappe/frappe/model/base_document.py +495,Value cannot be changed for {0},Gildi er ekki hægt að breyta fyrir {0} +apps/frappe/frappe/public/js/frappe/views/treeview.js +219,New {0} Name,New {0} Heiti +apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ + Please enter a valid email address so that we can get back.",Þú virðist hafa skrifað nafnið þitt í stað þess að netfangið þitt. \ Sláðu inn gilt netfang svo að við getum fengið aftur. +DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style táknar hnappinn litur: Velgengni - grænn, Danger - rautt, andhverfu - Black, aðal - dökk blár, Upplýsingar - ljósblátt Aðvörun - Orange" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +136,No Report Loaded. Please use query-report/[Report Name] to run a report.,Engin Report Loaded. Notaðu fyrirspurnar-skýrsluna / [Report Name] til að keyra skýrslu. +DocType: Workflow Transition,Workflow Transition,workflow Umskipti +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +48,{0} months ago,{0} mánuðum +apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Búið til af +DocType: Workflow State,resize-horizontal,resize-lárétt +DocType: Note,Content,innihald +apps/frappe/frappe/public/js/frappe/views/treeview.js +220,Group Node,Group Node +DocType: Communication,Notification,Tilkynning +DocType: Web Form,Go to this url after completing the form.,Fara á þessa slóð eftir að fylla út formið. +DocType: DocType,Document,Skjal +apps/frappe/frappe/core/doctype/doctype/doctype.py +131,Series {0} already used in {1},Series {0} nú þegar notuð í {1} +DocType: DocField,Code,code +DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Allt mögulegt Workflow States og hlutverk workflow. Docstatus Valmöguleikar: 0 er "vistuð", 1 er "lögð" og 2 er "Hætt"" +DocType: Website Theme,Footer Text Color,Footer Text Color +apps/frappe/frappe/public/js/frappe/model/meta.js +148,Last Modified On,Síðast breytt +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Heimildir á stigi 0 eru Document Level heimildir, þ.e. þeir eru fyrst og fremst fyrir aðgang að skjalinu." +DocType: Print Format,Print Format,Print Format +apps/frappe/frappe/config/setup.py +32,Set Permissions on Document Types and Roles,Stilla heimildir á skjali Tegundir og hlutverkum +DocType: About Us Settings,"""Company History""","Saga fyrirtækisins" +apps/frappe/frappe/permissions.py +332,Permission already set,Leyfi þegar sett +apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with everyone,{0} deilt þessu skjali með alla +apps/frappe/frappe/desk/page/activity/activity_row.html +17,Commented on {0}: {1},Athugasemd á {0}: {1} +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +248,These restrictions will apply for Document Types where 'Apply User Permissions' is checked for the permission rule and a field with this value is present.,Þessar takmarkanir gilda um Skjal Tegundir þar á 'Virkja notendaheimilda "er merkt fyrir leyfi reglu og reit með þessari gildi er til staðar. +DocType: Email Alert,Send alert if this field's value changes,Senda viðvörun ef breytingar á gangvirði þessu sviði er +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102,Select a DocType to make a new format,Veldu DOCTYPE til að gera nýtt snið +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +40,just now,rétt í þessu +DocType: Footer Item,Policy,stefna +DocType: Module Def,Module Def,Module Def +apps/frappe/frappe/print/doctype/print_format/print_format.py +79,Done,Lokið +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +67,Reply,Svara +apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Síður í Desk (place eigenda) +DocType: DocField,Collapsible Depends On,Fellanlegur veltur á +DocType: Email Account,SMTP Server,SMTP Server +DocType: Print Format,Print Format Help,Print snið hjálp +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +849,With Groups,með hópa +DocType: DocType,Beta,beta +apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ef þú ert að uppfæra, vinsamlegast veldu "Skrifa" annað fyrirliggjandi raðir verður ekki eytt." +DocType: Event,Every Month,Hvern mánuð +DocType: Letter Head,Letter Head in HTML,Letter Head í HTML +DocType: Web Form,Web Form,web Form +DocType: About Us Settings,Org History Heading,Org Saga Fyrirsögn +apps/frappe/frappe/core/doctype/user/user.py +414,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Því miður. Þú hefur náð hámarks notandi takmörk fyrir áskriftina þína. Þú getur annað hvort slökkt á núverandi notanda eða kaupa hærri áskrift áætlun. +DocType: Print Settings,Allow Print for Cancelled,Leyfa Prenta fyrir Hætt +DocType: Communication,Integrations can use this field to set email delivery status,Samþætting getur notað þennan reit til að stilla tölvupósti sending stöðu +DocType: Web Form,Web Page Link Text,Web Page Link Text +apps/frappe/frappe/config/setup.py +177,"Set default format, page size, print style etc.","Setja sjálfgefið snið, síðu stærð, prenta stíl o.fl." +apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +22,ESC,ESC +DocType: DocType,DESC,DESC +DocType: DocType,Naming,nafngiftir +DocType: Event,Every Year,Á hverju ári +apps/frappe/frappe/public/js/frappe/list/header_select_all_like_filter.html +3,Select All,Velja allt +apps/frappe/frappe/config/setup.py +248,Custom Translations,Custom Þýðingar +apps/frappe/frappe/public/js/frappe/form/linked_with.js +86,Not Linked to any record.,Ekki tengd við hvaða færslu. +apps/frappe/frappe/public/js/frappe/socketio_client.js +39,Progress,progress +apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,eftir Hlutverk +apps/frappe/frappe/core/doctype/user/user.py +516,Registered but disabled.,Skráðir en óvirk. +apps/frappe/frappe/public/js/frappe/list/doclistview.js +735,Delete permanently?,Eyða varanlega? +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +109,Search in a document type,Leita í skjali gerð +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224,Allow field to remain editable even after submission,Leyfa reit til að vera editable jafnvel eftir uppgjöf +DocType: DocPerm,Role and Level,Hlutverk og Level +DocType: File,Thumbnail URL,Smámynd URL +apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Sérsniðnar skýrslur +DocType: Website Script,Website Script,Vefsíða Script +apps/frappe/frappe/config/setup.py +182,Customized HTML Templates for printing transactions.,Sérsniðin HTML Sniðmát fyrir viðskiptum prentun. +DocType: Workflow,Is Active,er Active +apps/frappe/frappe/desk/form/utils.py +91,No further records,Engar frekari færslur +DocType: DocField,Long Text,Long Texti +DocType: Workflow State,Primary,Primary +apps/frappe/frappe/core/page/data_import_tool/importer.py +39,Please do not change the rows above {0},Vinsamlegast ekki breyta ekki raðir ofangreindum {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +76,(Ctrl + G),(Ctrl + G) +DocType: Communication,More Information,Meiri upplýsingar +DocType: Desktop Icon,Desktop Icon,Desktop Icon +apps/frappe/frappe/public/js/frappe/views/pageview.js +110,Sorry! You are not permitted to view this page.,Afsakið! Þú hefur ekki leyfi til að skoða þessa síðu. +DocType: Workflow State,bell,bjalla +apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Deila þessari skjal með +apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} getur ekki verið blaða hnút sem það á börn +DocType: Communication,Info,upplýsingar +DocType: Communication,Email,Tölvupóstur +apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Takk fyrir skilaboðin +apps/frappe/frappe/www/login.py +56,Invalid Login Token,Ógilt Innskráning Token +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +43,1 hour ago,1 klukkustund síðan +DocType: Website Settings,Home Page,Page Heim +DocType: Error Snapshot,Parent Error Snapshot,Parent Snapshot Villa +DocType: Email Alert,Filters,síur +DocType: Workflow State,share-alt,hlut-alt +DocType: Role,Role Name,hlutverk Name +apps/frappe/frappe/config/core.py +27,Script or Query reports,Handrit eða Fyrirspurn skýrslur +DocType: Workflow Document State,Workflow Document State,Workflow skjal State +apps/frappe/frappe/public/js/frappe/request.js +97,File too big,Skrá of stór +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Til að gefa acess að hlutverk fyrir aðeins tilteknum gögnum, athuga Apply heimildir notanda. User Heimildir eru notuð til að takmarka notendur með slíkri hlutverki við tiltekna færslur." +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Getur ekki hætt áður en þú sendir. Sjá Umskipti {0} +apps/frappe/frappe/www/print.py +184,Print Format {0} is disabled,Print Format {0} er óvirk +DocType: Email Alert,Send days before or after the reference date,Senda dögum fyrir eða eftir frestdag +DocType: User,Allow user to login only after this hour (0-24),Leyfa notanda að skráðu aðeins eftir þessum klukkutíma (0-24) +apps/frappe/frappe/public/js/frappe/form/link_selector.js +20,Value,gildi +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +139,Click here to verify,Smelltu hér til að sannreyna +apps/frappe/frappe/utils/password_strength.py +169,Predictable substitutions like '@' instead of 'a' don't help very much.,Fyrirsjáanlegar útskiptingar eins '@' í stað 'a' gera ekki hjálpa mjög mikið. +apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Úthlutað By Me +apps/frappe/frappe/core/doctype/doctype/doctype.py +69,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ekki í forritarastillingu! Setja í site_config.json eða gera 'sérstakar' DOCTYPE. +DocType: Workflow State,globe,heim +DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +216,Hide field in Standard Print Format,Fela sviði í Standard Prenta Format +DocType: ToDo,Priority,Forgangur +DocType: Dropbox Backup,Dropbox Access Allowed,Dropbox Aðgangur Leyfð +DocType: Dropbox Backup,Weekly,Vikuleg +DocType: Communication,In Reply To,Sem svar við +DocType: DocField,Float,Float +DocType: Module Def,Module Name,Module Name +DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE er Table / Form í umsókn. +DocType: Email Account,GMail,GMail +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +117,{0} Report,{0} Report +DocType: Communication,SMS,smáskilaboð +apps/frappe/frappe/public/js/frappe/form/print.js +167,Warning: This Print Format is in old style and cannot be generated via the API.,Aðvörun: Þetta Prenta Format er í gömlum stíl og ekki er hægt að mynda með API. +DocType: DocField,Print Width,Breidd prenta +,Setup Wizard,skipulag Wizard +DocType: User,Allow user to login only before this hour (0-24),Leyfa notanda að skráðu aðeins áður en þetta klukkustund (0-24) +apps/frappe/frappe/core/doctype/file/file.py +106,Folder is mandatory,Mappa er nauðsynlegur +DocType: Email Alert,Reference Date,viðmiðunardagur +apps/frappe/frappe/utils/bot.py +162,"Don't know, ask 'help'","Veit ekki, spyrja 'help'" +DocType: DocType,Comments and Communications will be associated with this linked document,Athugasemdir og Communications verður í tengslum við þetta tengda skjal +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3,Filter...,Sía ... +DocType: Workflow State,bold,feitletrað +DocType: Async Task,Status,Staða +DocType: Company History,Year,ár +apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} er ekki til í röðinni {1} +DocType: Event,Event Type,Event Type +DocType: User,Last Known Versions,Síðustu þekkt útgáfur +apps/frappe/frappe/config/setup.py +135,Add / Manage Email Accounts.,Bæta við / stjórna email reikningur. +DocType: Blog Category,Published,Útgefið +apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Þakka þér fyrir þinn email +DocType: DocField,Small Text,lítill texti +apps/frappe/frappe/core/doctype/user/user.py +635,Administrator accessed {0} on {1} via IP Address {2}.,Stjórnandi nálgast {0} á {1} gegnum IP Address {2}. +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Jafnt +apps/frappe/frappe/core/doctype/doctype/doctype.py +322,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valkostir 'Dynamic Link' tegund af sviði að benda á aðra Link Field með valkostum og 'DOCTYPE " +DocType: About Us Settings,Team Members Heading,Liðsmenn Fyrirsögn +apps/frappe/frappe/utils/csvutils.py +33,Invalid CSV Format,Ógilt CSV snið +DocType: DocField,Do not allow user to change after set the first time,Ekki leyfa notanda að breyta eftir að setja í fyrsta skipti +apps/frappe/frappe/public/js/frappe/upload.js +112,Private or Public?,Einkarekin eða opinber? +DocType: Footer Item,Contact,Viltu samband við +DocType: User,Third Party Authentication,Þriðji aðili Auðkenning +DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er yfir í aðalvalmynd Bar. +DocType: Email Account,Port,Port +DocType: Print Format,Arial,Arial +apps/frappe/frappe/config/core.py +12,Models (building blocks) of the Application,Models (kubbar) af forritinu +DocType: Website Slideshow,Slideshow like display for the website,Slideshow eins skjá fyrir the website +apps/frappe/frappe/public/js/frappe/ui/editor.html +58,Center (Ctrl/Cmd+E),Center (Ctrl / Cmd + E) +DocType: Communication,Updated,Uppfært +apps/frappe/frappe/sessions.py +28,Cache Cleared,Cache hreinsaðar +apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +16,New Email,nýtt Email +DocType: Dropbox Backup,Upload Frequency,Hlaða Tíðni +DocType: DocPerm,Export,útflutningur +DocType: About Us Settings,More content for the bottom of the page.,Meira efni fyrir neðst á síðunni. +apps/frappe/frappe/public/js/frappe/request.js +229,Session Expired. Logging you out,Session Útrunnið. Skrái þig út +DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE sem þessi Workflow er við. +DocType: User,Enabled,virkt +DocType: Blog Category,Category Name,Flokkur Nafn +apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Flytja Áskrifendur +DocType: Print Settings,PDF Settings,PDF Stillingar +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +16,Column Name,dálkur Name +apps/frappe/frappe/print/doctype/print_format/print_format.js +18,Make Default,gera Default +apps/frappe/frappe/core/doctype/doctype/doctype.py +363,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} fyrir {1} Ekki er hægt að verðtryggð +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/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 +DocType: ToDo,Low,Low +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +578,You can add dynamic properties from the document by using Jinja templating.,Þú getur bætt dynamic eiginleika úr skjalinu með því að nota Jinja Templating. +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +107,List a document type,Listi af gerðinni +DocType: Event,Ref Type,Ref Type +apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ef þú ert að senda nýjar færslur, fara á "nafn" (ID) dálk autt." +apps/frappe/frappe/config/core.py +47,Errors in Background Events,Villur í bakgrunni Viðburðir +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +364,No of Columns,Engin dálka +DocType: Workflow State,Calendar,Dagatal +apps/frappe/frappe/model/rename_doc.py +99,"Another {0} with name {1} exists, select another name",Annar {0} með nafninu {1} er til að velja annað nafn +DocType: DocType,Custom?,Custom? +DocType: Website Settings,Website Theme Image,Vefsíða Þema Image +DocType: Workflow State,road,vegurinn +DocType: User,Timezone,Tímabelti +apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},Ekki tókst að hlaða: {0} +apps/frappe/frappe/core/page/usage_info/usage_info.html +3,Expires in {0} days,Rennur út {0} dagar +DocType: DocField,Read Only,Lesið aðeins +apps/frappe/frappe/email/doctype/email_group/email_group.js +43,New Newsletter,nýtt Fréttabréf +DocType: Print Settings,Send Print as PDF,Senda Prenta sem PDF +DocType: Workflow Transition,Allowed,leyfð +apps/frappe/frappe/core/doctype/doctype/doctype.py +370,There can be only one Fold in a form,Það getur verið aðeins eitt Fold í formi +apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Endurheimta að sjálfgefnar stillingar? +apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ógilt Page Heim +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Endurstilla síur +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,{0}: Permission at level 0 must be set before higher levels are set,{0}: Permission á stigi 0 verður að vera stillt áður en hærri stigum eru sett +apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Framsal lokað af {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +113,Calculate,reikna +apps/frappe/frappe/print/doctype/print_format/print_format.js +31,Please select DocType first,Vinsamlegast veldu DOCTYPE fyrst +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +147,Confirm Your Email,Staðfestu netfangið þitt +apps/frappe/frappe/www/login.html +32,Or login with,Eða tenging við +DocType: Error Snapshot,Locals,heimamenn +apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Miðlað í gegnum {0} á {1}: {2} +apps/frappe/frappe/core/doctype/communication/comment.py +93,{0} mentioned you in a comment in {1},{0} minntist á þig í ummælum í {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +114,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,td (55 + 434) / 4 eða = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/model/naming.py +45,{0} is required,{0} er krafist +DocType: Social Login Keys,GitHub Client ID,GitHub Viðskiptavinur ID +DocType: Contact Us Settings,City,Borg +DocType: DocField,Perm Level,Perm Level +apps/frappe/frappe/desk/doctype/event/event.py +55,Events In Today's Calendar,Viðburðir í dagatalinu dag +DocType: Web Page,Web Page,Vefsíða +DocType: Blog Category,Blogger,Blogger +apps/frappe/frappe/public/js/frappe/views/treeview.js +241,View List,view List +apps/frappe/frappe/public/js/frappe/views/ganttview.js +45,Gantt Chart,Gantt Mynd +apps/frappe/frappe/public/js/frappe/form/control.js +647,Date must be in format: {0},Dagsetning verður að vera í formi: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +514,The First User: You,Fyrsta Notandi: Þú +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22,Select Columns,Select Columns +apps/frappe/frappe/www/login.py +47,Missing parameters for login,Vantar breytur fyrir innskráningu +DocType: Workflow State,folder-open,mappa opinn +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,leit Umsókn +apps/frappe/frappe/config/website.py +33,Single Post (article).,Single Post (grein). +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +9,Reports,skýrslur +DocType: Page,No,engin +DocType: Property Setter,Set Value,Setja Value +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Hide field in form,Fela sviði í formi +apps/frappe/frappe/public/js/frappe/desk.js +76,"The application has been updated to a new version, please refresh this page","The umsókn hefur verið uppfærð í nýja útgáfu, vinsamlegast endurnýja þessa síðu" +DocType: Email Alert,Optional: The alert will be sent if this expression is true,Valfrjálst: The viðvörun verður send ef þessi tjáning er satt +DocType: Print Settings,Print with letterhead,Prenta með bréfshaus +apps/frappe/frappe/public/js/frappe/list/doclistview.js +579,Select records for assignment,Valið færslur fyrir verkefni +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +87,Importing,Flyt +DocType: ToDo,Assigned By,úthlutað af +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Þú getur notað Customize eyðublað til að setja stigum á sviði. +DocType: DocPerm,Level,Level +DocType: DocPerm,Report,skýrsla +apps/frappe/frappe/templates/generators/web_form.html +38,Please login to create a new {0},Vinsamlegast skráðu þig inn til að búa til nýja {0} +apps/frappe/frappe/desk/reportview.py +73,{0} is saved,{0} er vistuð +apps/frappe/frappe/core/doctype/user/user.py +275,User {0} cannot be renamed,User {0} Ekki er hægt að endurnefna +apps/frappe/frappe/config/setup.py +155,Email Group List,Tölvupóstur Group List +DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],An táknið skrá með ICO framlengingu. Ætti að vera 16 x 16 px. Mynda með því að nota favicon rafall. [Favicon-generator.org] +apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,Útfluttar +DocType: DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON listi DocTypes notuð eru til að beita heimildum. Ef tómt, allir tengjast DocTypes verður notað til að beita heimildum." +DocType: Report,Ref DocType,Ref DOCTYPE +apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{0}: Cannot set Amend without Cancel,{0}: Get ekki stillt breyta án Hætta +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page +DocType: DocType,Is Child Table,Er Child Tafla +apps/frappe/frappe/utils/csvutils.py +122,{0} must be one of {1},{0} verður að vera einn af {1} +apps/frappe/frappe/public/js/frappe/form/form_viewers.js +28,{0} is currently viewing this document,{0} er að lesa þetta skjal +apps/frappe/frappe/config/core.py +52,Background Email Queue,Bakgrunnur Email Biðröð +apps/frappe/frappe/core/doctype/user/user.py +195,Password Reset,Lykilorð Endurstilla +DocType: Communication,Opened,opnað +DocType: Workflow State,chevron-left,Chevron-vinstri +DocType: Communication,Sending,Sendir +apps/frappe/frappe/auth.py +219,Not allowed from this IP Address,Ekki leyft þetta vistfang +DocType: Website Slideshow,This goes above the slideshow.,Þetta fer ofan slideshow. +apps/frappe/frappe/config/setup.py +215,Install Applications.,Setja Forrit. +DocType: User,Last Name,Eftirnafn +DocType: Event,Private,Private +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +72,No alerts for today,Engar tilkynningar fyrir í dag +DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Senda Email Prenta viðhengi sem PDF (Mælt) +DocType: Web Page,Left,vinstri +DocType: Event,All Day,Allan daginn +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +384,Show rows with zero values,Sýna raðir með núll gildi +DocType: Contact Us Settings,State,State +DocType: Workflow Action,Workflow Action,workflow Action +DocType: Event,Send an email reminder in the morning,Senda áminningu í tölvupósti í morgun +DocType: Blog Post,Published On,birt á +DocType: User,Gender,kyn +apps/frappe/frappe/core/doctype/doctype/doctype.py +360,Field '{0}' cannot be set as Unique as it has non-unique values,Field '{0}' Ekki er hægt að setja eins og einstæður eins og það hefur ekki einstaka gildi +DocType: Footer Item,URL,URL +DocType: ToDo,Reference Type,Tilvísun Type +DocType: Event,Repeat On,endurtaka á +DocType: Communication,Marked As Spam,Merkt sem ruslefni +apps/frappe/frappe/utils/file_manager.py +321,There is some problem with the file url: {0},Það er einhver vandamál með skrá url: {0} +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +16,Tree,Tree +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +160,You are not allowed to print this report,Þú hefur ekki heimild til að prenta þessa skýrslu +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,User Heimildir +DocType: Workflow State,warning-sign,viðvörun-skilti +DocType: Workflow State,User,Notandi +DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Sýna titil í glugga sem "forskeytið - titill" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +110,text in document type,Textinn í skjalinu tegund +DocType: Bulk Update,Update Value,Uppfæra Value +apps/frappe/frappe/public/js/frappe/request.js +118,Something went wrong,Eitthvað fór úrskeiðis +DocType: System Settings,Number Format,Fjöldi Format +DocType: Custom Field,Insert After,Settu Eftir +DocType: Social Login Keys,GitHub Client Secret,GitHub Viðskiptavinur Secret +DocType: Report,Report Name,skýrsla Name +DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Litur +DocType: Email Alert,Save,Vista +DocType: Website Settings,Title Prefix,Title forskeyti +DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Tilkynningar og magn póstur verður sendur frá þessum sendan póst. +DocType: Workflow State,cog,Cog +apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +58,Currently Viewing,Eins Skoða +DocType: DocField,Default,Sjálfgefið +apps/frappe/frappe/public/js/frappe/form/link_selector.js +140,{0} added,{0} bætti +apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} áskrifendur bætt +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ekki Í +DocType: Workflow State,star,stjörnu +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +173,values separated by commas,gildi aðskilin með kommum +apps/frappe/frappe/core/doctype/doctype/doctype.py +311,Max width for type Currency is 100px in row {0},Max breidd fyrir tegund gjaldmiðillinn er 100px í röð {0} +apps/frappe/frappe/config/website.py +13,Content web page.,Efni á vefnum síðu. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Bæta nýju hlutverki +apps/frappe/frappe/templates/includes/login/login.js +134,Oops! Something went wrong,Oops! Eitthvað fór úrskeiðis +apps/frappe/frappe/desk/page/applications/applications.js +42,Category,Flokkur +apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Viðskiptavinur hlið handrit eftirnafn í JavaScript +DocType: Blog Settings,Blog Introduction,Blog Inngangur +apps/frappe/frappe/desk/moduleview.py +73,Standard Reports,staðlaðar skýrslur +DocType: User,Email Settings,tölvupóststillingar +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ekki gilt State +apps/frappe/frappe/core/doctype/doctype/doctype.py +388,Search field {0} is not valid,Leita reit {0} er ekki gilt +DocType: Workflow State,ok-circle,OK-hring +apps/frappe/frappe/utils/bot.py +127,You can find things by asking 'find orange in customers',Þú getur fundið það með því að spyrja "finna appelsínu í viðskiptavini ' +apps/frappe/frappe/core/doctype/user/user.py +138,Sorry! User should have complete access to their own record.,Afsakið! Notandi ætti að hafa fullan aðgang að eigin met sitt. +,Usage Info,notkun Upplýsingar +apps/frappe/frappe/utils/oauth.py +203,Invalid Token,ógildur Miði +DocType: Custom Field,In Report Filter,Í skýrslu Sía +DocType: Email Account,Email Server,Email Server +DocType: DocShare,Document Type,Document Type +apps/frappe/frappe/core/page/usage_info/usage_info.html +37,Emails sent this month,Tölvupóstur sendur í þessum mánuði +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +18,Label is mandatory,Label er nauðsynlegur +DocType: Communication,Communication Type,Samskipti Type +DocType: DocField,Unique,Unique +DocType: Email Account,Service,þjónusta +DocType: File,File Name,Skráarnafn +apps/frappe/frappe/core/page/data_import_tool/importer.py +294,Did not find {0} for {0} ({1}),Fékk ekki fundið {0} {0} ({1}) +apps/frappe/frappe/utils/bot.py +153,"Oops, you are not allowed to know that","Úbbs, þú ert ekki leyft að vita að" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +17,Next,næsta +apps/frappe/frappe/config/setup.py +39,Set Permissions per User,Setja Heimildir hvern notanda +DocType: Print Format,Edit Format,Breyta Format +apps/frappe/frappe/templates/emails/new_user.html +6,Complete Registration,Complete Skráning +apps/frappe/frappe/public/js/frappe/form/toolbar.js +176,New {0} (Ctrl+B),New {0} (Ctrl + B) +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar Color og textalit eru þau sömu. Þeir ættu að vera að hafa góð andstæða til að vera læsileg. +apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,You can only upload upto 5000 records in one go. (may be less in some cases),Þú getur aðeins hlaðið allt að 5000 færslur í einu. (Kann að vera minna í sumum tilfellum) +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +599,Report was not saved (there were errors),Skýrslan var ekki vistað (það voru villur) +DocType: Print Settings,Print Style,Print Style +DocType: DocPerm,Import,innflutningur +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +136,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Ekki leyfilegt að virkja Leyfa á Senda standard sviðum +apps/frappe/frappe/config/setup.py +95,Import / Export Data,Import / Export Data +apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Staðlaðar hlutverk er ekki hægt að endurnefna +apps/frappe/frappe/public/js/frappe/change_log.html +7,updated to {0},uppfærð til {0} +DocType: User,Desktop Background,Desktop Background +DocType: Workflow State,chevron-right,Chevron hægri +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181,"Change type of field. (Currently, Type change is \ + allowed among 'Currency and Float')","Breyting gerð sviði. (Eins og er, Type breyting \ leyft meðal 'gjaldmiðli og fljóta')" +apps/frappe/frappe/website/doctype/web_form/web_form.py +32,You need to be in developer mode to edit a Standard Web Form,Þú þarft að vera í forritarastillingu að breyta Standard vefform +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +51,"For comparative filters, start with","Til samanburðar síur, byrja með" +DocType: Website Theme,Link to Bootstrap CSS,Tengja við Ræsi CSS +DocType: Workflow State,camera,myndavél +DocType: Website Settings,Brand HTML,vörumerki HTML +DocType: Desktop Icon,_doctype,_doctype +apps/frappe/frappe/templates/includes/login/login.js +21,Both login and password required,Bæði notandanafn og lykilorð +apps/frappe/frappe/model/document.py +506,Please refresh to get the latest document.,Vinsamlegast hressa til að fá nýjustu skjalið. +DocType: User,Security Settings,Öryggi Stillingar +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +679,Add Column,Bæta dálk +,Desktop,Desktop +DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Texti til að sýna fyrir Tengill á vefsíðu, ef þetta form er á vefsíðu. Link leið verður sjálfkrafa byggt á `page_name` og` parent_website_route`" +apps/frappe/frappe/public/js/frappe/form/control.js +1427,Please set {0} first,Vinsamlegast settu {0} fyrst +DocType: Dropbox Backup,Send Backups to Dropbox,Senda afrit til Dropbox +DocType: Patch Log,Patch,Patch +DocType: Async Task,Failed,mistókst +apps/frappe/frappe/core/page/data_import_tool/importer.py +44,No data found,Engin gögn fundust +DocType: Web Form,Allow Comments,leyfa athugasemdir +DocType: User,Background Style,bakgrunnur Style +DocType: System Settings,mm-dd-yyyy,mm-dd-áááá +apps/frappe/frappe/core/doctype/communication/feed.py +57,{0} logged in,{0} innskráður +apps/frappe/frappe/templates/emails/new_user.html +4,Your login id is,tenging id er +DocType: Dropbox Backup,Send Notifications To,Senda tilkynningar til +DocType: Bulk Update,Max 500 records at a time,Max 500 færslur í einu +DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",Ef gögn er í HTML skaltu afrita líma nákvæmlega HTML kóðann með merkjunum. +apps/frappe/frappe/utils/csvutils.py +33,Unable to open attached file. Did you export it as CSV?,Ekki er hægt að opna viðhengi. Vissir þú flytja það sem CSV? +DocType: DocField,Ignore User Permissions,Hunsa notanda Heimildir From a6de43956f12cbb839bb051692acd426444bbac4 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 25 Jul 2016 15:35:05 +0600 Subject: [PATCH 4/4] bumped to version 7.0.4 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 4d1939c854..d3e4cebd09 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -13,7 +13,7 @@ import os, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template -__version__ = "7.0.3" +__version__ = "7.0.4" local = Local()