From e9fed9dcc985172d5096f3491b07c419ff67fc8b Mon Sep 17 00:00:00 2001 From: marination <25857446+marination@users.noreply.github.com> Date: Tue, 15 Apr 2025 18:18:31 +0200 Subject: [PATCH 001/211] fix: Render List row buttons as columns to avoid overflow - In the RHS, the buttons caused the like button to flow outside the container --- cypress/integration/list_view.js | 29 ++++++++++++ frappe/public/js/frappe/list/list_view.js | 56 +++++++++++++++-------- frappe/tests/ui_test_helpers.py | 4 +- 3 files changed, 68 insertions(+), 21 deletions(-) diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index 7117d8f98d..d6cc16fef1 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -51,4 +51,33 @@ context("List View", () => { cy.get(".list-row-container:visible").should("contain", "Approved"); }); }); + + it("Adds a button to each list view row", () => { + // Get a ToDo with a reference name + cy.call("frappe.client.get_value", { + doctype: "ToDo", + filters: { + reference_name: ["is", "set"], + }, + fieldname: "name", + }).then((r) => { + const todo_name = r.message.name; + cy.go_to_list("ToDo"); + + // Check if the 'Open' button is present in the ToDo list view + cy.get(".btn-default[data-name='" + todo_name + "']") + .should((el) => { + expect(el).to.exist; + }) + .click(); + + cy.window() + .its("cur_frm") + .then((frm) => { + // Routes to the reference document + expect(frm.doc.doctype).to.equal("ToDo"); + expect(frm.doc.name).to.not.equal(todo_name); + }); + }); + }); }); diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 763b1b7466..e79dfc1fc1 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -692,7 +692,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { ${__(subject_field.label)} `; - const $columns = this.columns + let $columns = this.columns .map((col) => { let classes = [ "list-row-col ellipsis", @@ -717,6 +717,14 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { }) .join(""); + // Add column for button and dropdown button to the header + if (this.settings.button) { + $columns += ``; + } + if (this.settings.dropdown_button) { + $columns += ``; + } + const right_html = ` " - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "警告: 本字段为系统生成,可能被后续更新覆盖。请使用{0}进行修改。" @@ -1030,7 +1025,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1096,10 +1090,10 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "操作" @@ -1161,8 +1155,8 @@ msgstr "用户操作日志" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "添加" @@ -1179,7 +1173,7 @@ msgstr "添加/更新" msgid "Add A New Rule" msgstr "创建新规则" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "添加附件" @@ -1203,7 +1197,7 @@ msgstr "添加上方边框" msgid "Add Card to Dashboard" msgstr "添加到仪表板" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "添加图表至数据面板" @@ -1212,8 +1206,8 @@ msgid "Add Child" msgstr "添加子项" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1795 -#: frappe/public/js/frappe/views/reports/query_report.js:1798 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1274,7 +1268,7 @@ msgstr "添加参与者" msgid "Add Query Parameters" msgstr "添加查询参数" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "添加角色" @@ -1284,7 +1278,7 @@ msgstr "添加一行" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "添加签名" @@ -1307,12 +1301,12 @@ msgstr "添加订阅者" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "新建模板" @@ -1419,7 +1413,7 @@ msgid "Add tab" msgstr "添加页签" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "添加到仪表板" @@ -1574,11 +1568,11 @@ msgstr "系统管理" msgid "Administrator" msgstr "管理员" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "管理员登录" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "管理员访问{0}在{1}通过IP地址{2}。" @@ -2122,7 +2116,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "已注册" @@ -2221,7 +2215,7 @@ msgstr "不允许修订" msgid "Amendment naming rules updated." msgstr "修订命名规则已更新。" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "设置会话默认值时发生错误" @@ -2397,7 +2391,7 @@ msgstr "应用于" msgid "Apply" msgstr "应用" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "应用分配规则" @@ -2478,7 +2472,7 @@ msgstr "已存档" msgid "Archived Columns" msgstr "归档列" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "确定要清除分配吗?" @@ -2510,7 +2504,7 @@ msgstr "确定要删除标签页吗?该标签页中的所有节及字段将移 msgid "Are you sure you want to discard the changes?" msgstr "确定要放弃更改吗?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "确定要生成新报告吗?" @@ -2582,7 +2576,7 @@ msgstr "分派条件" msgid "Assign To" msgstr "执行人" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "分配给" @@ -2739,7 +2733,7 @@ msgstr "父文档类型必须至少有一个字段" msgid "Attach" msgstr "添加文件" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "添加打印输出作为附件" @@ -3232,7 +3226,7 @@ msgstr "B9" msgid "BCC" msgstr "暗送" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "暗送" @@ -3275,7 +3269,7 @@ msgstr "背景图片" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "后台任务" @@ -3881,7 +3875,7 @@ msgstr "已取消" msgid "CC" msgstr "抄送" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "抄送" @@ -4072,7 +4066,7 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" msgid "Cancel" msgstr "取消" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "取消" @@ -4090,7 +4084,7 @@ msgstr "全部取消" msgid "Cancel All Documents" msgstr "取消所有单据" -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "确定要取消{0}个文档吗?" @@ -4352,7 +4346,7 @@ msgstr "卡片" msgid "Card Break" msgstr "卡片分隔" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "数字卡标题" @@ -4491,7 +4485,7 @@ msgstr "图表配置" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "图表名称" @@ -4660,11 +4654,11 @@ msgstr "市/镇" msgid "Clear" msgstr "清除" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "清空并添加模板" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "清除并添加模板" @@ -4672,7 +4666,7 @@ msgstr "清除并添加模板" msgid "Clear All" msgstr "清空全部" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "清除分配" @@ -4698,7 +4692,7 @@ msgstr "日志保留天数" msgid "Clear User Permissions" msgstr "清除用户权限限制" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "模板内容覆盖邮件正文(消息)" @@ -4940,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "折叠" -#: frappe/public/js/frappe/views/reports/query_report.js:2076 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "全部折叠" @@ -4995,7 +4989,7 @@ msgstr "可折叠先决条件(JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5245,7 +5239,7 @@ msgstr "完成" msgid "Complete By" msgstr "完成日期" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "完成注册" @@ -5656,7 +5650,7 @@ msgstr "复制嵌入代码" msgid "Copy error to clipboard" msgstr "将出错日志复制到剪贴板" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "复制到剪贴板" @@ -5780,7 +5774,7 @@ msgstr "贷方" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5794,13 +5788,13 @@ msgstr "创建并继续" msgid "Create Address" msgstr "创建地址" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "创建数字卡" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "创建图表" @@ -6264,12 +6258,12 @@ msgstr "{0}的自定义已导出到:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "定制" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "自定义" @@ -6913,7 +6907,7 @@ msgstr "已逾期" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 @@ -6922,7 +6916,7 @@ msgstr "已逾期" msgid "Delete" msgstr "删除" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "删除" @@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "删除标签页" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "删除并生成新项" @@ -7000,12 +6994,12 @@ msgstr "删除标签页" msgid "Delete this record to allow sending to this email address" msgstr "删除此记录允许发送此邮件地址" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "永久删除 {0} 项?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "永久删除 {0} 项?" @@ -7413,8 +7407,8 @@ msgstr "禁用自助注册" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "禁用" @@ -7423,7 +7417,7 @@ msgstr "禁用" msgid "Disabled Auto Reply" msgstr "禁用自动回复" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -8178,7 +8172,7 @@ msgstr "下载链接" msgid "Download PDF" msgstr "下载PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "下载报表" @@ -8262,7 +8256,7 @@ msgid "Due Date Based On" msgstr "到期日基于" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "复制" @@ -8377,9 +8371,9 @@ msgstr "退出" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1748 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8391,7 +8385,7 @@ msgstr "退出" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "编辑" @@ -8426,11 +8420,11 @@ msgstr "编辑自定义块" msgid "Edit Custom HTML" msgstr "编辑自定义HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "修改单据类型" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "编辑文档类型" @@ -8607,7 +8601,7 @@ msgstr "元素选择器" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8642,7 +8636,7 @@ msgstr "电子邮件账户已禁用" msgid "Email Account Name" msgstr "电子邮箱帐号名" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "电子邮箱帐号已被多次添加" @@ -8749,7 +8743,7 @@ msgstr "电子邮件队列" msgid "Email Queue Recipient" msgstr "电子邮件队列收件人" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "由于过多失败,已中止电子邮件队列刷新操作。" @@ -8813,7 +8807,7 @@ msgstr "电子邮件同步选项" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "电子邮件模板" @@ -8845,7 +8839,7 @@ msgstr "电子邮件已被移至垃圾桶" msgid "Email is mandatory to create User Email" msgstr "创建用户电子邮件时必须填写邮箱地址" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "电子邮件不会被发送到{0}(退订/禁用)" @@ -8871,7 +8865,7 @@ msgstr "已拉取电子邮件" msgid "Emails are already being pulled from this account." msgstr "已从该账户持续拉取电子邮件。" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "邮件已被静音" @@ -9097,8 +9091,8 @@ msgstr "启用应用内网站跟踪" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "已启用" @@ -9225,7 +9219,7 @@ msgstr "在Google设置中输入客户端ID和客户端密钥。" msgid "Enter Code displayed in OTP App." msgstr "输入OTP应用中显示的验证码。" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "输入电子邮件收件人(S)" @@ -9539,7 +9533,7 @@ msgstr "" msgid "Executing..." msgstr "正在执行..." -#: frappe/public/js/frappe/views/reports/query_report.js:2095 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "运行时间:{0}秒" @@ -9565,7 +9559,7 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "展开" -#: frappe/public/js/frappe/views/reports/query_report.js:2076 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "全部展开" @@ -9626,13 +9620,13 @@ msgstr "QR码图像页面的到期时间" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "导出" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "导出" @@ -9990,8 +9984,8 @@ msgstr "正在获取默认全局搜索文档。" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1842 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10561,7 +10555,7 @@ msgid "Folio" msgstr "页码" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "关注" @@ -10753,7 +10747,7 @@ msgstr "用户" msgid "For Value" msgstr "允许值" -#: frappe/public/js/frappe/views/reports/query_report.js:2092 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "过滤条件可以用>,<,= 比较符,两个值之间用:表示范围, 如>5, <10, =20, 5:10" @@ -11015,7 +11009,7 @@ msgstr "星期五" msgid "From" msgstr "从" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "从" @@ -11031,7 +11025,7 @@ msgstr "开始日期" msgid "From Date Field" msgstr "开始日期字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1803 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "单据类型" @@ -11082,7 +11076,7 @@ msgstr "全宽" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "函数" @@ -11160,7 +11154,7 @@ msgstr "正常" msgid "Generate Keys" msgstr "生成密钥" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "生成新报表" @@ -11168,7 +11162,7 @@ msgstr "生成新报表" msgid "Generate Random Password" msgstr "生成随机密码" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 #: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "生成跟踪URL" @@ -11284,7 +11278,7 @@ msgstr "全局访问" msgid "Global Unsubscribe" msgstr "全部退订" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "确定" @@ -11448,8 +11442,6 @@ msgstr "谷歌联系人 - 无法更新谷歌联系人{0}中的联系人,错误 msgid "Google Contacts Id" msgstr "谷歌联系人ID" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "谷歌云端硬盘" @@ -11486,6 +11478,7 @@ msgstr "Google服务" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11913,6 +11906,10 @@ msgstr "隐藏" msgid "Hidden Fields" msgstr "隐藏字段" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 @@ -12026,7 +12023,7 @@ msgstr "隐藏左边栏,菜单及评论" msgid "Hide Standard Menu" msgstr "隐藏标准菜单" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "隐藏标签" @@ -12582,7 +12579,7 @@ msgstr "图像字段的类型必须为附着图像" msgid "Image link '{0}' is not valid" msgstr "图片链接'{0}'无效" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "图片已优化" @@ -12630,7 +12627,7 @@ msgstr "隐式" msgid "Import" msgstr "导入" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "导入" @@ -12858,11 +12855,15 @@ msgstr "包含应用主题" msgid "Include Web View Link in Email" msgstr "邮件包含网页视图链接" -#: frappe/public/js/frappe/views/reports/query_report.js:1618 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "包括过滤条件" -#: frappe/public/js/frappe/views/reports/query_report.js:1610 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "包括缩进" @@ -13020,7 +13021,7 @@ msgstr "在上面插入" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1848 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "在后边插入" @@ -13211,7 +13212,7 @@ msgstr "无效" msgid "Invalid \"depends_on\" expression" msgstr "“depends_on”表达式无效" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "在过滤器{0}中设置了无效的“ depends_on”表达式" @@ -13322,7 +13323,7 @@ msgstr "无效覆盖" msgid "Invalid Parameters." msgstr "参数无效" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" @@ -13912,8 +13913,8 @@ msgstr "作业未运行。" msgid "Join video conference with {0}" msgstr "加入与{0}的视频会议" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "定位到字段" @@ -14878,7 +14879,7 @@ msgstr "列表过滤条件" msgid "List Settings" msgstr "列表设置" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "列表设置" @@ -14950,7 +14951,7 @@ msgstr "加载更多" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "载入中" @@ -15659,7 +15660,7 @@ msgstr "只有组和组,叶节点和叶节点之间能合并" #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15696,7 +15697,7 @@ msgstr "消息已发送" msgid "Message Type" msgstr "消息类型" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "邮件被剪辑" @@ -16411,12 +16412,12 @@ msgstr "导航栏模板" msgid "Navbar Template Values" msgstr "导航栏模板值" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "向下导航列表" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "向上导航列表" @@ -16548,10 +16549,6 @@ msgstr "从网站的联系页面新消息" msgid "New Name" msgstr "新名称" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "新简讯" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "新通知" @@ -16652,7 +16649,7 @@ msgstr "要设置的新值" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16664,15 +16661,15 @@ msgstr "要设置的新值" msgid "New {0}" msgstr "新建 {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "已创建新{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "新{0}{1}已添加到仪表盘{2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "已创建新{0}{1}" @@ -16684,7 +16681,7 @@ msgstr "新{0}:{1}" msgid "New {} releases for the following apps are available" msgstr "以下应用程序有新版本{}了" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "新创建的用户 {0} 未启用任何角色" @@ -16811,7 +16808,7 @@ msgstr "点击进入下一步" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1638 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "否" @@ -16952,7 +16949,7 @@ msgstr "没有结果" msgid "No Results found" msgstr "无数据" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "未分派角色" @@ -17020,7 +17017,7 @@ msgstr "未添加联系人。" msgid "No contacts linked to document" msgstr "文档未关联联系人" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "没有要导出的数据" @@ -17212,7 +17209,7 @@ msgstr "基础查询(剔除查询参数)次数" msgid "Normalized Query" msgstr "规范化查询" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "不允许" @@ -17268,7 +17265,7 @@ msgstr "不可为空" msgid "Not Permitted" msgstr "没有权限" -#: frappe/desk/query_report.py:543 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "无权限读取{0}" @@ -17278,8 +17275,8 @@ msgstr "无权限读取{0}" msgid "Not Published" msgstr "未发布" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17312,7 +17309,7 @@ msgstr "未设置" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "不是一个有效的CSV文件" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "非有效用户图像。" @@ -17547,7 +17544,7 @@ msgstr "如果一分钟内未回复,则发出通知" msgid "Notify users with a popup when they log in" msgstr "用户登录后以弹框通知" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "现在" @@ -17842,7 +17839,7 @@ msgstr "在或之后" msgid "On or Before" msgstr "在或之前" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "{0},{1}写道:" @@ -17918,7 +17915,7 @@ msgstr "只有管理员可以编辑" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "只有管理员可以保存标准报表。请修改为新报表名后保存。" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "只允许管理员使用记录器" @@ -18071,7 +18068,7 @@ msgstr "" msgid "Open in a new tab" msgstr "在新标签页打开" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "打开列表项" @@ -18126,7 +18123,7 @@ msgstr "运算符必须是{0}" msgid "Optimize" msgstr "优化" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "正在优化图像..." @@ -18317,7 +18314,7 @@ msgstr "PATCH方法" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1768 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18676,11 +18673,11 @@ msgstr "已创建" msgid "Password" msgstr "密码" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "密码邮件已发送" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "密码重置" @@ -18714,7 +18711,7 @@ msgstr "邮箱账户缺少密码" msgid "Password not found for {0} {1} {2}" msgstr "未找到{0} {1} {2}的密码" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "密码重置说明已发送至{}的邮箱" @@ -18726,7 +18723,7 @@ msgstr "密码已设置" msgid "Password size exceeded the maximum allowed size" msgstr "密码长度超过允许最大值" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "密码长度超过允许最大值" @@ -19097,7 +19094,7 @@ msgstr "请复制此网址主题定制。" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "请通过pip安装ldap3库以使用ldap功能。" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "请设置图表" @@ -19113,7 +19110,7 @@ msgstr "请在您的电子邮件中添加主题" msgid "Please add a valid comment." msgstr "请添加有效评论" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "请联络管理员确认您的注册" @@ -19145,7 +19142,7 @@ msgstr "请检查仪表板图表设置的过滤值:{}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "请检查为字段{0}设置的“提取自”的值" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "请在您的电子邮件中查看验证码" @@ -19336,7 +19333,7 @@ msgstr "请先选择实体类型" msgid "Please select Minimum Password Score" msgstr "请选择最低密码分数" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "请选择X和Y轴字段" @@ -19394,7 +19391,7 @@ msgstr "请设置电子邮件地址" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "请在“打印机设置”中为此打印格式设置打印机映射" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "请设置过滤条件" @@ -19422,7 +19419,7 @@ msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信" msgid "Please setup a message first" msgstr "请先设置一条消息" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "请通过设置 > 邮箱账户配置默认发件账户" @@ -19640,11 +19637,11 @@ msgstr "后台运行报表用户" msgid "Prepared report render failed" msgstr "预制报表渲染失败" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "准备报表" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "将模板内容追加到邮件正文(消息)" @@ -19709,7 +19706,7 @@ msgstr "在{0}上预览" msgid "Preview type" msgstr "预览类型" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "预览:" @@ -19780,16 +19777,16 @@ msgstr "文档类型{0}的主键存在值,不可修改" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1754 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "打印" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "打印" @@ -19859,7 +19856,7 @@ msgstr "打印格式帮助" msgid "Print Format Type" msgstr "打印格式类型" -#: frappe/public/js/frappe/views/reports/query_report.js:1576 +#: frappe/public/js/frappe/views/reports/query_report.js:1577 msgid "Print Format not found" msgstr "" @@ -19894,7 +19891,7 @@ msgstr "不打印" msgid "Print Hide If No Value" msgstr "无值不打印" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "打印语言" @@ -20040,7 +20037,7 @@ msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_nam msgid "Proceed" msgstr "继续" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "仍然继续" @@ -20346,7 +20343,7 @@ msgstr "查询报表" msgid "Query analysis complete. Check suggested indexes." msgstr "查询分析完成,请检查建议索引" -#: frappe/utils/safe_exec.py:499 +#: frappe/utils/safe_exec.py:495 msgid "Query must be of SELECT or read-only WITH type." msgstr "查询必须为SELECT或只读WITH类型" @@ -20543,7 +20540,7 @@ msgstr "回覆:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "回复:{0}" @@ -20619,7 +20616,7 @@ msgstr "由收件人阅读" msgid "Read mode" msgstr "阅读模式" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "查阅文档以了解更多" @@ -20639,7 +20636,7 @@ msgstr "实时通信(SocketIO)" msgid "Reason" msgstr "原因" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "重新生成" @@ -20785,12 +20782,12 @@ msgstr "重定向" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis缓存服务器无法运行。请联系管理员/技术支持" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "恢复" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "重做上一步操作" @@ -21004,11 +21001,11 @@ msgid "Referrer" msgstr "来源页" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1743 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -21047,7 +21044,7 @@ msgstr "正在刷新" msgid "Refreshing..." msgstr "正在刷新..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "已注册但被禁用" @@ -21096,7 +21093,7 @@ msgstr "重新链接" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "刷新" @@ -21127,7 +21124,7 @@ msgstr "保存最后一次输入值" msgid "Remind At" msgstr "提醒时间" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "提醒我" @@ -21209,7 +21206,7 @@ msgstr "已移除" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21237,7 +21234,7 @@ msgstr "本部分标签左对齐,值右对齐" msgid "Reopen" msgstr "重新打开" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "重复" @@ -21427,7 +21424,7 @@ msgstr "报表管理" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1928 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "报表名称" @@ -21479,7 +21476,7 @@ msgstr "报表无数据,请调整过滤器或更换报表名称" msgid "Report has no numeric fields, please change the Report Name" msgstr "报表无数字字段,请更换报表名称" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "生成报表结果的后台任务已启动,点击查看任务状态" @@ -21491,7 +21488,7 @@ msgstr "达到报表限制" msgid "Report timed out." msgstr "报表超时" -#: frappe/desk/query_report.py:598 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "报表已成功更新" @@ -21499,7 +21496,7 @@ msgstr "报表已成功更新" msgid "Report was not saved (there were errors)" msgstr "报表尚未保存(有错误)" -#: frappe/public/js/frappe/views/reports/query_report.js:1966 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "超过10列的报表更适合横向模式" @@ -21535,7 +21532,7 @@ msgstr "报表" msgid "Reports & Masters" msgstr "报表与主数据" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "报表已加入队列" @@ -21974,7 +21971,7 @@ msgstr "角色权限" msgid "Role Permissions Manager" msgstr "角色权限管理" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "角色权限管理器" @@ -22008,7 +22005,7 @@ msgstr "角色复制" msgid "Role and Level" msgstr "角色和级别" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "已根据用户类型{0}设置角色" @@ -22401,12 +22398,12 @@ msgstr "星期六" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 #: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1920 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22433,7 +22430,7 @@ msgstr "另存为" msgid "Save Customizations" msgstr "保存自定义" -#: frappe/public/js/frappe/views/reports/query_report.js:1923 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "保存报表" @@ -22452,7 +22449,7 @@ msgstr "保存文档。" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22500,7 +22497,7 @@ msgstr "扫描QR码并输入显示的结果代码。" msgid "Schedule" msgstr "计划任务" -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "定时发送" @@ -22809,7 +22806,7 @@ msgstr "安全设置" msgid "See all Activity" msgstr "查看所有活动" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "点这儿可以查看之前的历史报表。" @@ -22877,8 +22874,8 @@ msgstr "单选" msgid "Select All" msgstr "全选" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22944,7 +22941,7 @@ msgstr "选择用户权限限制单据类型。" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "选择字段" @@ -23015,7 +23012,7 @@ msgid "Select Page" msgstr "选择页面" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "选择打印格式" @@ -23107,13 +23104,13 @@ msgstr "选择打印ATLEAST 1项纪录" msgid "Select atleast 2 actions" msgstr "选择至少2个操作" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "选择列表项" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "选择多个列表项" @@ -23229,7 +23226,7 @@ msgstr "立即发送" msgid "Send Print as PDF" msgstr "使用PDF格式发送打印" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "发送阅读回执" @@ -23292,7 +23289,7 @@ msgstr "向此邮件地址发送询价" msgid "Send login link" msgstr "发送登录链接" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "抄送给自己" @@ -23454,7 +23451,7 @@ msgstr "服务器IP" msgid "Server Script" msgstr "Python脚本" -#: frappe/utils/safe_exec.py:96 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "服务器(python)脚本已禁用,可通过后台bench命令 bench set-config -g server_script_enabled 1 启用" @@ -23493,11 +23490,11 @@ msgstr "会话默认设置" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "会话默认值" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "会话默认值已保存" @@ -23533,7 +23530,7 @@ msgstr "设置" msgid "Set Banner from Image" msgstr "从图像设置横幅" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "设置图表" @@ -23559,7 +23556,7 @@ msgstr "设置过滤条件" msgid "Set Filters for {0}" msgstr "为{0}设置过滤器" -#: frappe/public/js/frappe/views/reports/query_report.js:2076 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "设置层级" @@ -23755,7 +23752,7 @@ msgstr "设置您的系统" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23801,7 +23798,7 @@ msgstr "设置 > 用户" msgid "Setup > User Permissions" msgstr "设置 > 用户权限" -#: frappe/public/js/frappe/views/reports/query_report.js:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "设置电子邮件自动发送" @@ -24004,7 +24001,7 @@ msgstr "显示语言选择框" msgid "Show Line Breaks after Sections" msgstr "章节后,显示换行符" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "显示链接" @@ -24080,7 +24077,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "显示标签" @@ -24254,7 +24251,7 @@ msgstr "边栏和评论" msgid "Sign Up and Confirmation" msgstr "注册与确认" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "禁止注册" @@ -25056,7 +25053,7 @@ msgstr "子域名" #: frappe/email/doctype/email_template/email_template.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "主题" @@ -25095,7 +25092,7 @@ msgstr "提交队列" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "提交" @@ -25153,7 +25150,7 @@ msgstr "提交此文档以完成此步骤" msgid "Submit this document to confirm" msgstr "点提交按钮进行确认" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "是否提交{0}个文档?" @@ -25302,7 +25299,7 @@ msgstr "建议优化" msgid "Suggested Indexes" msgstr "建议索引" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "建议用户名:{0}" @@ -25845,7 +25842,7 @@ msgstr "模板警告" msgid "Templates" msgstr "模板" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "暂时禁用" @@ -26117,11 +26114,11 @@ msgstr "从
\n" "\"IAM & Admin\" > \"Settings\"\n" "下的 Google Cloud Console 获取的项目编号" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "重置密码链接已过期" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "重置密码链接已被使用或无效" @@ -26198,7 +26195,7 @@ msgstr "你没有待处理事项" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "此{1}无{0},何不创建一个!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26227,7 +26224,7 @@ msgstr "暂无可显示新消息" msgid "There is some problem with the file url: {0}" msgstr "有一些问题与文件的URL:{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26251,7 +26248,7 @@ msgstr "出错了" msgid "There were errors while creating the document. Please try again." msgstr "创建单据时出错。请再试一次。" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "邮件发送失败,请重试。" @@ -26428,7 +26425,7 @@ msgstr "暂不支持此地理位置服务提供商。" msgid "This goes above the slideshow." msgstr "在幻灯片上面。" -#: frappe/public/js/frappe/views/reports/query_report.js:2152 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" @@ -26484,7 +26481,7 @@ msgstr "可能会打印多页" msgid "This month" msgstr "这个月" -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。" @@ -26492,7 +26489,7 @@ msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告 msgid "This report was generated on {0}" msgstr "此报表是在{0}上生成的" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "报表{0}已生成。" @@ -26558,7 +26555,7 @@ msgstr "将重置此导览并向所有用户显示。是否继续?" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "将立即终止任务,此操作可能危险,是否继续?" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "节流" @@ -26912,7 +26909,7 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存" msgid "To generate password click {0}" msgstr "生成密码请点击{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "要获取已更新报表,请单击{0}。" @@ -26987,7 +26984,7 @@ msgstr "切换到图标视图" msgid "Toggle Sidebar" msgstr "切换边栏" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "切换侧边栏" @@ -27049,7 +27046,7 @@ msgstr "单次操作中数据库变更过多" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "后台作业队列过长({0}),请稍后重试" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。" @@ -27111,9 +27108,9 @@ msgstr "顶部右侧" msgid "Topic" msgstr "主题" -#: frappe/desk/query_report.py:534 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "总计" @@ -27283,7 +27280,7 @@ msgstr "状态转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2207 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "翻译数据" @@ -27316,6 +27313,11 @@ msgstr "翻译" msgid "Translations" msgstr "翻译" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27654,11 +27656,11 @@ msgstr "未捕获异常" msgid "Unchanged" msgstr "未变更" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "撤销" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "撤销上一步操作" @@ -27667,7 +27669,7 @@ msgid "Unescaped quotes in string literal: {0}" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "取消关注" @@ -27738,7 +27740,7 @@ msgstr "未读" msgid "Unread Notification Sent" msgstr "未读发送通知" -#: frappe/utils/safe_exec.py:500 +#: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" msgstr "不安全的SQL查询" @@ -27752,7 +27754,7 @@ msgstr "全部不选" msgid "Unshared" msgstr "非分享" -#: frappe/email/queue.py:66 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "退订" @@ -27772,7 +27774,7 @@ msgstr "退订参数" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "已退订" @@ -28181,7 +28183,7 @@ msgstr "用户无法创建" msgid "User Cannot Search" msgstr "用户不能搜索" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "用户账号已变更" @@ -28287,12 +28289,12 @@ msgstr "用户权限限制" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1907 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "用户权限限制" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "用户权限" @@ -28393,15 +28395,15 @@ msgstr "邮箱地址为{0}的用户不存在" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "系统中不存在邮箱为{0}的用户,请联系系统管理员创建" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "用户{0}不能被删除" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "用户{0}不能被禁用" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "不允许变更用户名{0}" @@ -28422,7 +28424,7 @@ msgstr "用户{0}无权创建工作区" msgid "User {0} has requested for data deletion" msgstr "用户{0}已请求数据删除" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "用户 {0} 以 {1} 身份登录" @@ -28451,7 +28453,7 @@ msgstr "用户信息URI" msgid "Username" msgstr "用户名" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "用户名{0}已存在" @@ -28724,7 +28726,7 @@ msgstr "查看" msgid "View All" msgstr "查看全部" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "查看审计跟踪" @@ -29011,6 +29013,7 @@ msgstr "Web视图" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -29276,11 +29279,11 @@ msgstr "欢迎页网址" msgid "Welcome Workspace" msgstr "欢迎工作区" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "欢迎电子邮件已发送" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "欢迎{0}" @@ -29634,7 +29637,7 @@ msgstr "Y轴字段" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y轴字段" @@ -29695,7 +29698,7 @@ msgstr "黄色" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1638 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "是" @@ -29770,7 +29773,7 @@ msgstr "未被授权导出单据类型{}" msgid "You are not allowed to print this report" msgstr "您未被授权打印此报表" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "你不允许发送与此单据相关的电子邮件" @@ -29885,7 +29888,7 @@ msgstr "可从以下选项中选择:" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "如多个用户通过相同网络登录,请设置一个大一点的数字" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "可尝试变更报表过滤条件" @@ -29970,7 +29973,7 @@ msgstr "您未被授权完成此操作" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:861 +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "您无权访问{0}:{1}。" @@ -30166,7 +30169,7 @@ msgstr "您取消了对该单据的关注" msgid "You viewed this" msgstr "您查看了此内容" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "在另一个浏览器页签用另一个账号登录了,请刷新浏览器后切换到新帐号继续" @@ -30207,11 +30210,11 @@ msgstr "您的账户已被锁定,并将在{0}秒后恢复" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "{2}移除了您在{0} {1}上的分配" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "您的浏览器不支持音频元素" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "您的浏览器不支持视频元素" @@ -31090,7 +31093,7 @@ msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}" msgid "{0} Report" msgstr "{0}报表" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0}报告" @@ -31261,7 +31264,7 @@ msgstr "{0}小时" msgid "{0} has already assigned default value for {1}." msgstr "{0}已为{1}分派了默认值。" -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0}已经离开对话{1} {2}" @@ -31432,11 +31435,11 @@ msgstr "{0}已设置" msgid "{0} is within {1}" msgstr "{0}在{1}范围内" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "已选{0}条记录" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} 因为 {1} 原因以你的帐号登录了系统" @@ -31572,7 +31575,7 @@ msgstr "角色 {0} 无单据类型权限" msgid "{0} row #{1}: " msgstr "{0}行#{1}:" -#: frappe/desk/query_report.py:613 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0}已成功保存" @@ -31614,7 +31617,7 @@ msgstr "{0}于{1}提交了此文档" msgid "{0} subscribers added" msgstr "{0}新增用户" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0}停止接收此类邮件" @@ -31801,7 +31804,7 @@ msgstr "{0}:{1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}:{1} 状态已变更为 {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}:{1}与{2}" From 6cb5f7287a9628e5f91b9b2d5ce71b7ea8be3d3c Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Tue, 22 Jul 2025 19:50:12 +0200 Subject: [PATCH 183/211] feat: allow user to change timezone (#33419) --- .../web_form/edit_profile/edit_profile.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/frappe/core/web_form/edit_profile/edit_profile.json b/frappe/core/web_form/edit_profile/edit_profile.json index 641e0e4d73..1be55728f4 100644 --- a/frappe/core/web_form/edit_profile/edit_profile.json +++ b/frappe/core/web_form/edit_profile/edit_profile.json @@ -22,7 +22,7 @@ "list_columns": [], "login_required": 1, "max_attachment_size": 0, - "modified": "2024-09-11 14:30:04.233730", + "modified": "2025-07-22 19:31:20.283749", "modified_by": "Administrator", "module": "Core", "name": "edit-profile", @@ -155,6 +155,20 @@ "read_only": 0, "reqd": 0, "show_in_filter": 0 + }, + { + "allow_read_on_all_link_options": 0, + "fieldname": "time_zone", + "fieldtype": "Select", + "hidden": 0, + "label": "Time Zone", + "max_length": 0, + "max_value": 0, + "options": "Africa/Abidjan\nAfrica/Accra\nAfrica/Addis_Ababa\nAfrica/Algiers\nAfrica/Asmara\nAfrica/Asmera\nAfrica/Bamako\nAfrica/Bangui\nAfrica/Banjul\nAfrica/Bissau\nAfrica/Blantyre\nAfrica/Brazzaville\nAfrica/Bujumbura\nAfrica/Cairo\nAfrica/Casablanca\nAfrica/Ceuta\nAfrica/Conakry\nAfrica/Dakar\nAfrica/Dar_es_Salaam\nAfrica/Djibouti\nAfrica/Douala\nAfrica/El_Aaiun\nAfrica/Freetown\nAfrica/Gaborone\nAfrica/Harare\nAfrica/Johannesburg\nAfrica/Juba\nAfrica/Kampala\nAfrica/Khartoum\nAfrica/Kigali\nAfrica/Kinshasa\nAfrica/Lagos\nAfrica/Libreville\nAfrica/Lome\nAfrica/Luanda\nAfrica/Lubumbashi\nAfrica/Lusaka\nAfrica/Malabo\nAfrica/Maputo\nAfrica/Maseru\nAfrica/Mbabane\nAfrica/Mogadishu\nAfrica/Monrovia\nAfrica/Nairobi\nAfrica/Ndjamena\nAfrica/Niamey\nAfrica/Nouakchott\nAfrica/Ouagadougou\nAfrica/Porto-Novo\nAfrica/Sao_Tome\nAfrica/Timbuktu\nAfrica/Tripoli\nAfrica/Tunis\nAfrica/Windhoek\nAmerica/Adak\nAmerica/Anchorage\nAmerica/Anguilla\nAmerica/Antigua\nAmerica/Araguaina\nAmerica/Argentina/Buenos_Aires\nAmerica/Argentina/Catamarca\nAmerica/Argentina/ComodRivadavia\nAmerica/Argentina/Cordoba\nAmerica/Argentina/Jujuy\nAmerica/Argentina/La_Rioja\nAmerica/Argentina/Mendoza\nAmerica/Argentina/Rio_Gallegos\nAmerica/Argentina/Salta\nAmerica/Argentina/San_Juan\nAmerica/Argentina/San_Luis\nAmerica/Argentina/Tucuman\nAmerica/Argentina/Ushuaia\nAmerica/Aruba\nAmerica/Asuncion\nAmerica/Atikokan\nAmerica/Atka\nAmerica/Bahia\nAmerica/Bahia_Banderas\nAmerica/Barbados\nAmerica/Belem\nAmerica/Belize\nAmerica/Blanc-Sablon\nAmerica/Boa_Vista\nAmerica/Bogota\nAmerica/Boise\nAmerica/Buenos_Aires\nAmerica/Cambridge_Bay\nAmerica/Campo_Grande\nAmerica/Cancun\nAmerica/Caracas\nAmerica/Catamarca\nAmerica/Cayenne\nAmerica/Cayman\nAmerica/Chicago\nAmerica/Chihuahua\nAmerica/Ciudad_Juarez\nAmerica/Coral_Harbour\nAmerica/Cordoba\nAmerica/Costa_Rica\nAmerica/Coyhaique\nAmerica/Creston\nAmerica/Cuiaba\nAmerica/Curacao\nAmerica/Danmarkshavn\nAmerica/Dawson\nAmerica/Dawson_Creek\nAmerica/Denver\nAmerica/Detroit\nAmerica/Dominica\nAmerica/Edmonton\nAmerica/Eirunepe\nAmerica/El_Salvador\nAmerica/Ensenada\nAmerica/Fort_Nelson\nAmerica/Fort_Wayne\nAmerica/Fortaleza\nAmerica/Glace_Bay\nAmerica/Godthab\nAmerica/Goose_Bay\nAmerica/Grand_Turk\nAmerica/Grenada\nAmerica/Guadeloupe\nAmerica/Guatemala\nAmerica/Guayaquil\nAmerica/Guyana\nAmerica/Halifax\nAmerica/Havana\nAmerica/Hermosillo\nAmerica/Indiana/Indianapolis\nAmerica/Indiana/Knox\nAmerica/Indiana/Marengo\nAmerica/Indiana/Petersburg\nAmerica/Indiana/Tell_City\nAmerica/Indiana/Vevay\nAmerica/Indiana/Vincennes\nAmerica/Indiana/Winamac\nAmerica/Indianapolis\nAmerica/Inuvik\nAmerica/Iqaluit\nAmerica/Jamaica\nAmerica/Jujuy\nAmerica/Juneau\nAmerica/Kentucky/Louisville\nAmerica/Kentucky/Monticello\nAmerica/Knox_IN\nAmerica/Kralendijk\nAmerica/La_Paz\nAmerica/Lima\nAmerica/Los_Angeles\nAmerica/Louisville\nAmerica/Lower_Princes\nAmerica/Maceio\nAmerica/Managua\nAmerica/Manaus\nAmerica/Marigot\nAmerica/Martinique\nAmerica/Matamoros\nAmerica/Mazatlan\nAmerica/Mendoza\nAmerica/Menominee\nAmerica/Merida\nAmerica/Metlakatla\nAmerica/Mexico_City\nAmerica/Miquelon\nAmerica/Moncton\nAmerica/Monterrey\nAmerica/Montevideo\nAmerica/Montreal\nAmerica/Montserrat\nAmerica/Nassau\nAmerica/New_York\nAmerica/Nipigon\nAmerica/Nome\nAmerica/Noronha\nAmerica/North_Dakota/Beulah\nAmerica/North_Dakota/Center\nAmerica/North_Dakota/New_Salem\nAmerica/Nuuk\nAmerica/Ojinaga\nAmerica/Panama\nAmerica/Pangnirtung\nAmerica/Paramaribo\nAmerica/Phoenix\nAmerica/Port-au-Prince\nAmerica/Port_of_Spain\nAmerica/Porto_Acre\nAmerica/Porto_Velho\nAmerica/Puerto_Rico\nAmerica/Punta_Arenas\nAmerica/Rainy_River\nAmerica/Rankin_Inlet\nAmerica/Recife\nAmerica/Regina\nAmerica/Resolute\nAmerica/Rio_Branco\nAmerica/Rosario\nAmerica/Santa_Isabel\nAmerica/Santarem\nAmerica/Santiago\nAmerica/Santo_Domingo\nAmerica/Sao_Paulo\nAmerica/Scoresbysund\nAmerica/Shiprock\nAmerica/Sitka\nAmerica/St_Barthelemy\nAmerica/St_Johns\nAmerica/St_Kitts\nAmerica/St_Lucia\nAmerica/St_Thomas\nAmerica/St_Vincent\nAmerica/Swift_Current\nAmerica/Tegucigalpa\nAmerica/Thule\nAmerica/Thunder_Bay\nAmerica/Tijuana\nAmerica/Toronto\nAmerica/Tortola\nAmerica/Vancouver\nAmerica/Virgin\nAmerica/Whitehorse\nAmerica/Winnipeg\nAmerica/Yakutat\nAmerica/Yellowknife\nAntarctica/Casey\nAntarctica/Davis\nAntarctica/DumontDUrville\nAntarctica/Macquarie\nAntarctica/Mawson\nAntarctica/McMurdo\nAntarctica/Palmer\nAntarctica/Rothera\nAntarctica/South_Pole\nAntarctica/Syowa\nAntarctica/Troll\nAntarctica/Vostok\nArctic/Longyearbyen\nAsia/Aden\nAsia/Almaty\nAsia/Amman\nAsia/Anadyr\nAsia/Aqtau\nAsia/Aqtobe\nAsia/Ashgabat\nAsia/Ashkhabad\nAsia/Atyrau\nAsia/Baghdad\nAsia/Bahrain\nAsia/Baku\nAsia/Bangkok\nAsia/Barnaul\nAsia/Beirut\nAsia/Bishkek\nAsia/Brunei\nAsia/Calcutta\nAsia/Chita\nAsia/Choibalsan\nAsia/Chongqing\nAsia/Chungking\nAsia/Colombo\nAsia/Dacca\nAsia/Damascus\nAsia/Dhaka\nAsia/Dili\nAsia/Dubai\nAsia/Dushanbe\nAsia/Famagusta\nAsia/Gaza\nAsia/Harbin\nAsia/Hebron\nAsia/Ho_Chi_Minh\nAsia/Hong_Kong\nAsia/Hovd\nAsia/Irkutsk\nAsia/Istanbul\nAsia/Jakarta\nAsia/Jayapura\nAsia/Jerusalem\nAsia/Kabul\nAsia/Kamchatka\nAsia/Karachi\nAsia/Kashgar\nAsia/Kathmandu\nAsia/Katmandu\nAsia/Khandyga\nAsia/Kolkata\nAsia/Krasnoyarsk\nAsia/Kuala_Lumpur\nAsia/Kuching\nAsia/Kuwait\nAsia/Macao\nAsia/Macau\nAsia/Magadan\nAsia/Makassar\nAsia/Manila\nAsia/Muscat\nAsia/Nicosia\nAsia/Novokuznetsk\nAsia/Novosibirsk\nAsia/Omsk\nAsia/Oral\nAsia/Phnom_Penh\nAsia/Pontianak\nAsia/Pyongyang\nAsia/Qatar\nAsia/Qostanay\nAsia/Qyzylorda\nAsia/Rangoon\nAsia/Riyadh\nAsia/Saigon\nAsia/Sakhalin\nAsia/Samarkand\nAsia/Seoul\nAsia/Shanghai\nAsia/Singapore\nAsia/Srednekolymsk\nAsia/Taipei\nAsia/Tashkent\nAsia/Tbilisi\nAsia/Tehran\nAsia/Tel_Aviv\nAsia/Thimbu\nAsia/Thimphu\nAsia/Tokyo\nAsia/Tomsk\nAsia/Ujung_Pandang\nAsia/Ulaanbaatar\nAsia/Ulan_Bator\nAsia/Urumqi\nAsia/Ust-Nera\nAsia/Vientiane\nAsia/Vladivostok\nAsia/Yakutsk\nAsia/Yangon\nAsia/Yekaterinburg\nAsia/Yerevan\nAtlantic/Azores\nAtlantic/Bermuda\nAtlantic/Canary\nAtlantic/Cape_Verde\nAtlantic/Faeroe\nAtlantic/Faroe\nAtlantic/Jan_Mayen\nAtlantic/Madeira\nAtlantic/Reykjavik\nAtlantic/South_Georgia\nAtlantic/St_Helena\nAtlantic/Stanley\nAustralia/ACT\nAustralia/Adelaide\nAustralia/Brisbane\nAustralia/Broken_Hill\nAustralia/Canberra\nAustralia/Currie\nAustralia/Darwin\nAustralia/Eucla\nAustralia/Hobart\nAustralia/LHI\nAustralia/Lindeman\nAustralia/Lord_Howe\nAustralia/Melbourne\nAustralia/NSW\nAustralia/North\nAustralia/Perth\nAustralia/Queensland\nAustralia/South\nAustralia/Sydney\nAustralia/Tasmania\nAustralia/Victoria\nAustralia/West\nAustralia/Yancowinna\nBrazil/Acre\nBrazil/DeNoronha\nBrazil/East\nBrazil/West\nCET\nCST6CDT\nCanada/Atlantic\nCanada/Central\nCanada/Eastern\nCanada/Mountain\nCanada/Newfoundland\nCanada/Pacific\nCanada/Saskatchewan\nCanada/Yukon\nChile/Continental\nChile/EasterIsland\nCuba\nEET\nEST\nEST5EDT\nEgypt\nEire\nEtc/GMT\nEtc/GMT+0\nEtc/GMT+1\nEtc/GMT+10\nEtc/GMT+11\nEtc/GMT+12\nEtc/GMT+2\nEtc/GMT+3\nEtc/GMT+4\nEtc/GMT+5\nEtc/GMT+6\nEtc/GMT+7\nEtc/GMT+8\nEtc/GMT+9\nEtc/GMT-0\nEtc/GMT-1\nEtc/GMT-10\nEtc/GMT-11\nEtc/GMT-12\nEtc/GMT-13\nEtc/GMT-14\nEtc/GMT-2\nEtc/GMT-3\nEtc/GMT-4\nEtc/GMT-5\nEtc/GMT-6\nEtc/GMT-7\nEtc/GMT-8\nEtc/GMT-9\nEtc/GMT0\nEtc/Greenwich\nEtc/UCT\nEtc/UTC\nEtc/Universal\nEtc/Zulu\nEurope/Amsterdam\nEurope/Andorra\nEurope/Astrakhan\nEurope/Athens\nEurope/Belfast\nEurope/Belgrade\nEurope/Berlin\nEurope/Bratislava\nEurope/Brussels\nEurope/Bucharest\nEurope/Budapest\nEurope/Busingen\nEurope/Chisinau\nEurope/Copenhagen\nEurope/Dublin\nEurope/Gibraltar\nEurope/Guernsey\nEurope/Helsinki\nEurope/Isle_of_Man\nEurope/Istanbul\nEurope/Jersey\nEurope/Kaliningrad\nEurope/Kiev\nEurope/Kirov\nEurope/Kyiv\nEurope/Lisbon\nEurope/Ljubljana\nEurope/London\nEurope/Luxembourg\nEurope/Madrid\nEurope/Malta\nEurope/Mariehamn\nEurope/Minsk\nEurope/Monaco\nEurope/Moscow\nEurope/Nicosia\nEurope/Oslo\nEurope/Paris\nEurope/Podgorica\nEurope/Prague\nEurope/Riga\nEurope/Rome\nEurope/Samara\nEurope/San_Marino\nEurope/Sarajevo\nEurope/Saratov\nEurope/Simferopol\nEurope/Skopje\nEurope/Sofia\nEurope/Stockholm\nEurope/Tallinn\nEurope/Tirane\nEurope/Tiraspol\nEurope/Ulyanovsk\nEurope/Uzhgorod\nEurope/Vaduz\nEurope/Vatican\nEurope/Vienna\nEurope/Vilnius\nEurope/Volgograd\nEurope/Warsaw\nEurope/Zagreb\nEurope/Zaporozhye\nEurope/Zurich\nFactory\nGB\nGB-Eire\nGMT\nGMT+0\nGMT-0\nGMT0\nGreenwich\nHST\nHongkong\nIceland\nIndian/Antananarivo\nIndian/Chagos\nIndian/Christmas\nIndian/Cocos\nIndian/Comoro\nIndian/Kerguelen\nIndian/Mahe\nIndian/Maldives\nIndian/Mauritius\nIndian/Mayotte\nIndian/Reunion\nIran\nIsrael\nJamaica\nJapan\nKwajalein\nLibya\nMET\nMST\nMST7MDT\nMexico/BajaNorte\nMexico/BajaSur\nMexico/General\nNZ\nNZ-CHAT\nNavajo\nPRC\nPST8PDT\nPacific/Apia\nPacific/Auckland\nPacific/Bougainville\nPacific/Chatham\nPacific/Chuuk\nPacific/Easter\nPacific/Efate\nPacific/Enderbury\nPacific/Fakaofo\nPacific/Fiji\nPacific/Funafuti\nPacific/Galapagos\nPacific/Gambier\nPacific/Guadalcanal\nPacific/Guam\nPacific/Honolulu\nPacific/Johnston\nPacific/Kanton\nPacific/Kiritimati\nPacific/Kosrae\nPacific/Kwajalein\nPacific/Majuro\nPacific/Marquesas\nPacific/Midway\nPacific/Nauru\nPacific/Niue\nPacific/Norfolk\nPacific/Noumea\nPacific/Pago_Pago\nPacific/Palau\nPacific/Pitcairn\nPacific/Pohnpei\nPacific/Ponape\nPacific/Port_Moresby\nPacific/Rarotonga\nPacific/Saipan\nPacific/Samoa\nPacific/Tahiti\nPacific/Tarawa\nPacific/Tongatapu\nPacific/Truk\nPacific/Wake\nPacific/Wallis\nPacific/Yap\nPoland\nPortugal\nROC\nROK\nSingapore\nTurkey\nUCT\nUS/Alaska\nUS/Aleutian\nUS/Arizona\nUS/Central\nUS/East-Indiana\nUS/Eastern\nUS/Hawaii\nUS/Indiana-Starke\nUS/Michigan\nUS/Mountain\nUS/Pacific\nUS/Samoa\nUTC\nUniversal\nW-SU\nWET\nZulu", + "precision": "", + "read_only": 0, + "reqd": 0, + "show_in_filter": 0 } ] -} \ No newline at end of file +} From e7ad633b1525684bec6f20a1a5e3d8b1436575d7 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Wed, 23 Jul 2025 03:29:18 +0530 Subject: [PATCH 184/211] fix: sync translations from crowdin (#33423) --- frappe/locale/de.po | 4 +- frappe/locale/fa.po | 5 +- frappe/locale/hu.po | 10 +- frappe/locale/id.po | 40020 +++++++++++++++++---------------------- frappe/locale/pl.po | 9 +- frappe/locale/pt_BR.po | 6 +- frappe/locale/sv.po | 8 +- frappe/locale/th.po | 6 +- 8 files changed, 16906 insertions(+), 23162 deletions(-) diff --git a/frappe/locale/de.po b/frappe/locale/de.po index fd19f06cb8..46a78c3b74 100644 --- a/frappe/locale/de.po +++ b/frappe/locale/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:45\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -19626,7 +19626,7 @@ msgstr "Vorbereiteter Bericht" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json msgid "Prepared Report Analytics" -msgstr "" +msgstr "Vorbereitete Berichtsanalytik" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index 63b9652d35..616b454ac2 100644 --- a/frappe/locale/fa.po +++ b/frappe/locale/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -4250,7 +4250,8 @@ msgstr "تغییر فرمت چاپ" #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +msgstr "شماره توالی شروع/فعلی یک سری موجود را تغییر دهید.
\n\n" +"هشدار: به‌روزرسانی نادرست شمارنده‌ها می‌تواند از ایجاد اسناد جلوگیری کند. " #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 87ea1a2d8a..874aa3cd9b 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -11344,7 +11344,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "" +msgstr "Rács Oldal hossza" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" @@ -12130,7 +12130,7 @@ msgstr "" #. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "If enabled, all responses on the web form will be submitted anonymously" -msgstr "" +msgstr "Ha engedélyezve van, a webes űrlapra adott összes válasz névtelenül kerül benyújtásra." #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' @@ -12575,7 +12575,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 msgid "In Minutes" -msgstr "" +msgstr "Percben" #. Label of the in_preview (Check) field in DocType 'DocField' #. Label of the in_preview (Check) field in DocType 'Custom Field' @@ -13036,7 +13036,7 @@ msgstr "" #: frappe/integrations/frappe_providers/frappecloud_billing.py:111 msgid "Invalid Code. Please try again." -msgstr "" +msgstr "Érvénytelen kód. Kérjük próbáld újra." #: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" diff --git a/frappe/locale/id.po b/frappe/locale/id.po index 3e07ae769b..13e133e83b 100644 --- a/frappe/locale/id.po +++ b/frappe/locale/id.po @@ -1,365 +1,263 @@ -# Translations template for Frappe Framework. -# Copyright (C) 2024 Frappe Technologies -# This file is distributed under the same license as the Frappe Framework -# project. -# FIRST AUTHOR , 2024. -# msgid "" msgstr "" -"Project-Id-Version: Frappe Framework VERSION\n" +"Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2024-01-12 01:53+0053\n" -"PO-Revision-Date: 2024-01-10 16:34+0553\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" -"Language-Team: developers@frappe.io\n" +"Language-Team: Indonesian\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.13.1\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: id\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: id_ID\n" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid " to your browser" msgstr "ke browser Anda" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" msgstr "" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "\"Sejarah Perusahaan\"" +msgstr "" -#: core/doctype/data_export/exporter.py:204 +#: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" msgstr "\"Induk\" menandakan tabel induk di mana baris ini harus ditambahkan" #. Description of the 'Team Members Heading' (Data) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "\"Anggota Tim\" atau \"Manajemen\"" +msgstr "" -#: public/js/frappe/form/form.js:1063 +#: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." msgstr "Bidang "amended_from" harus ada untuk melakukan amandemen." -#: utils/csvutils.py:219 +#: frappe/utils/csvutils.py:246 msgid "\"{0}\" is not a valid Google Sheets URL" msgstr ""{0}" bukan URL Google Spreadsheet yang valid" -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###,##" -msgstr "" - -#: public/js/frappe/ui/toolbar/tag_utils.js:21 -#: public/js/frappe/ui/toolbar/tag_utils.js:22 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 msgid "#{0}" msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "<head> HTML" -msgstr "<head> HTML" +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" -#: public/js/form_builder/store.js:201 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "" + +#: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1305 +#: frappe/core/doctype/doctype/doctype.py:1354 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}" -#: public/js/form_builder/store.js:193 +#: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:360 +#: frappe/custom/doctype/customize_form/customize_form.py:362 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}" -#: automation/doctype/auto_repeat/auto_repeat.py:149 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" msgstr "'Penerima' belum ditentukan" -#: utils/__init__.py:240 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" -#: core/doctype/doctype/doctype.py:1299 +#: frappe/core/doctype/doctype/doctype.py:1348 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}" -#: model/rename_doc.py:689 +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" msgstr "** Gagal: {0} ke {1}: {2}" +#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" + #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "0 - Draft; 1 - Dikirim; 2 - Dibatalkan" +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "0 adalah tertinggi" +msgstr "" -#: public/js/frappe/form/grid_row.js:786 +#: frappe/public/js/frappe/form/grid_row.js:876 msgid "1 = True & 0 = False" msgstr "" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "" -"1 Currency = [?] Fraction\n" +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" "For e.g. 1 USD = 100 Cent" msgstr "" -#: public/js/frappe/form/reminders.js:19 +#: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:358 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." msgstr "1 Acara Kalender Google disinkronkan." -#: website/doctype/blog_post/blog_post.py:378 +#: frappe/public/js/frappe/views/reports/query_report.js:954 +msgid "1 Report" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:380 msgid "1 comment" msgstr "1 komentar" -#: tests/test_utils.py:647 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" -#: public/js/frappe/form/reminders.js:17 +#: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" msgstr "" -#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645 +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643 +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651 +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 bulan lalu" -#: public/js/frappe/data_import/data_exporter.js:223 +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" msgstr "1 catatan akan diekspor" -#: tests/test_utils.py:642 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649 +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 minggu yang lalu" -#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653 +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 tahun yang lalu" -#: tests/test_utils.py:646 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: tests/test_utils.py:652 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: tests/test_utils.py:650 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: tests/test_utils.py:654 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: tests/test_utils.py:644 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" -#: public/js/frappe/form/reminders.js:16 +#: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" msgstr "" -#: public/js/frappe/form/reminders.js:18 +#: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "5 catatan" -#: tests/test_utils.py:648 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:37 +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" msgstr "; tidak diijinkan dalam kondisi" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<=" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:564 +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "" #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"
\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
\n" " Edit list of Series in the box. Rules:\n" "
    \n" "
  • Each Series Prefix on a new line.
  • \n" @@ -380,11 +278,12 @@ msgid "" "
  • .MM. - Month
  • \n" "
  • .DD. - Day of month
  • \n" "
  • .WW. - Week of the year
  • \n" -"
  • .FY. - Fiscal Year
  • \n" "
  • \n" " .{fieldname}. - fieldname on the document e.g.\n" " branch\n" "
  • \n" +"
  • .FY. - Fiscal Year (requires ERPNext to be installed)
  • \n" +"
  • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
  • \n" "
\n" " \n" " \n" @@ -400,38 +299,27 @@ msgid "" msgstr "" #. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "" -"

Custom CSS Help

\n" -"\n" -"

Notes:

\n" -"\n" +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

\n\n" "
    \n" "
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" "
  3. All values are given class value
  4. \n" "
  5. All Section Breaks are given class section-break
  6. \n" "
  7. All Column Breaks are given class column-break
  8. \n" -"
\n" -"\n" -"

Examples

\n" -"\n" -"

1. Left align integers

\n" -"\n" -"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n" -"\n" -"

1. Add border to sections except the last section

\n" -"\n" +"\n\n" +"

Examples

\n\n" +"

1. Left align integers

\n\n" +"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n" +"

1. Add border to sections except the last section

\n\n" "
.section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
 ".section-break:last-child { padding-bottom: 0px; border-bottom: 0px;  }
\n" msgstr "" #. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.json #, python-format -msgctxt "Print Format" -msgid "" -"

Print Format Help

\n" +msgid "

Print Format Help

\n" "
\n" "

Introduction

\n" "

Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.

\n" @@ -500,11 +388,9 @@ msgid "" msgstr "" #. Description of the 'Template' (Code) field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/address_template/address_template.json #, python-format -msgctxt "Address Template" -msgid "" -"

Default Template

\n" +msgid "

Default Template

\n" "

Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

\n" "
{{ address_line1 }}<br>\n"
 "{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
 msgstr ""
 
 #. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"

Email Reply Example

\n" -"\n" -"
Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "

Email Reply Example

\n\n" +"
Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
 "- Customer: {{ customer }}\n"
 "- Amount: {{ grand_total }}\n"
-"
\n" -"\n" -"

How to get fieldnames

\n" -"\n" -"

The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

\n" -"\n" -"

Templating

\n" -"\n" +"
\n\n" +"

How to get fieldnames

\n\n" +"

The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

\n\n" +"

Templating

\n\n" "

Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

\n" msgstr "" #. Content of the 'html_5' (HTML) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "
Or
" msgstr "" #. Content of the 'Message Examples' (HTML) field in DocType 'Notification' -#: email/doctype/notification/notification.json +#: frappe/email/doctype/notification/notification.json #, python-format -msgctxt "Notification" -msgid "" -"
Message Example
\n" -"\n" -"
<h3>Order Overdue</h3>\n"
-"\n"
-"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n"
-"\n"
+msgid "
Message Example
\n\n" +"
<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
 "<!-- show last comment -->\n"
 "{% if comments %}\n"
 "Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
-"{% endif %}\n"
-"\n"
-"<h4>Details</h4>\n"
-"\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
 "<ul>\n"
 "<li>Customer: {{ doc.customer }}\n"
 "<li>Amount: {{ doc.grand_total }}\n"
@@ -575,103 +443,68 @@ msgid ""
 msgstr ""
 
 #. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"

Condition Examples:

\n" +#: frappe/integrations/doctype/webhook/webhook.json +msgid "

Condition Examples:

\n" "
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" "
" msgstr "" #. Content of the 'html_7' (HTML) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "" -"

Condition Examples:

\n" +#: frappe/email/doctype/notification/notification.json +msgid "

Condition Examples:

\n" "
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" "
\n" msgstr "" -#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "" -"

Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.

For Example:

\n" +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "

Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.

For Example:

\n" "

If you create a separate webform every year to capture feedback from employees add a \n" " field named year in doctype and add a filter year = 2023

\n" msgstr "" #. Description of the 'Context Script' (Code) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "" -"

Set context before rendering a template. Example:

\n" +#: frappe/website/doctype/web_page/web_page.json +msgid "

Set context before rendering a template. Example:

\n" "

\n"
 "context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
 "
" msgstr "" #. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "" -"

To interact with above HTML you will have to use `root_element` as a parent selector.

For example:

// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "

To interact with above HTML you will have to use `root_element` as a parent selector.

For example:

// here root_element is provided by default\n"
 "let some_class_element = root_element.querySelector('.some-class');\n"
 "some_class_element.textContent = \"New content\";\n"
 "
" msgstr "" -#: twofactor.py:469 +#: frappe/twofactor.py:446 msgid "

Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.

" msgstr "" #. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job #. Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "" -"
*  *  *  *  *\n"
-"┬  ┬  ┬  ┬  ┬\n"
-"│  │  │  │  │\n"
-"│  │  │  │  └ day of week (0 - 6) (0 is Sunday)\n"
-"│  │  │  └───── month (1 - 12)\n"
-"│  │  └────────── day of month (1 - 31)\n"
-"│  └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n" -msgstr "" - #. Description of the 'Cron Format' (Data) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "" -"
*  *  *  *  *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "
*  *  *  *  *\n"
 "┬  ┬  ┬  ┬  ┬\n"
 "│  │  │  │  │\n"
 "│  │  │  │  └ day of week (0 - 6) (0 is Sunday)\n"
 "│  │  │  └───── month (1 - 12)\n"
 "│  │  └────────── day of month (1 - 31)\n"
 "│  └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
 "* - Any value\n"
 "/ - Step values\n"
 "
\n" msgstr "" #. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "" -"
doc.grand_total > 0
\n" -"\n" +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "
doc.grand_total > 0
\n\n" "

Conditions should be written in simple Python. Please use properties available in the form only.

\n" "

Allowed functions:\n" "

    \n" @@ -686,27369 +519,22965 @@ msgid "" "

    Example:

    doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True) 

    " msgstr "" -#: custom/doctype/custom_field/custom_field.js:39 +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "=" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">=" msgstr "" -#. Description of the Onboarding Step 'Custom Document Types' -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs." -msgstr "" - -#: core/doctype/doctype/doctype.py:1015 +#: frappe/core/doctype/doctype/doctype.py:1034 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" -#: website/doctype/blog_post/blog_post.py:93 +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Postingan unggulan harus memiliki gambar sampul" -#: custom/doctype/custom_field/custom_field.py:171 +#: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: core/doctype/file/file.py:254 +#: frappe/core/doctype/file/file.py:257 msgid "A file with same name {} already exists" msgstr "" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.
    e.g. project" -msgstr "Sebuah daftar sumber daya yang App Klien akan memiliki akses ke setelah pengguna memungkinkan.
    misalnya proyek" +msgstr "" -#: templates/emails/new_user.html:5 +#: frappe/templates/emails/new_user.html:5 msgid "A new account has been created for you at {0}" msgstr "Sebuah akun baru telah dibuat untuk Anda di {0}" -#: automation/doctype/auto_repeat/auto_repeat.py:388 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}." #. Description of the 'Symbol' (Data) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "A symbol for this currency. For e.g. $" -msgstr "Simbol untuk mata uang ini. Contoh $" +msgstr "" -#: printing/doctype/print_format_field_template/print_format_field_template.py:48 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 msgid "A template already exists for field {0} of {1}" msgstr "" -#: utils/password_strength.py:173 +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
    \n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + +#: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Sebuah kata dengan sendirinya mudah ditebak." #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A0" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A1" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A2" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A3" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A4" -msgstr "A4" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A5" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A6" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A7" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A8" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A9" msgstr "" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "ALL" -msgstr "SEMUA" +msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "API" -msgstr "API" +msgstr "" -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "API Access" -msgstr "Akses API" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "API Access" -msgstr "Akses API" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the api_endpoint (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "API Endpoint" -msgstr "API Endpoint" +msgstr "" -#. Label of a Code field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "API Endpoint Args" -msgstr "API Endpoint Args" +msgstr "" -#. Label of a Data field in DocType 'Google Settings' -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Key" -msgstr "API Key" +msgstr "" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "API Key" -msgstr "API Key" +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" #. Description of the 'API Key' (Data) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "API Key cannot be regenerated" msgstr "" -#. Label of a Data field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "API Method" -msgstr "Metode API" +msgstr "" -#. Label of a Password field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" -msgstr "API Rahasia" - -#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "ASC" -msgstr "ASC" +msgstr "" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "ASC" +msgstr "" #. Label of a standard help item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "About" msgstr "" -#: www/about.html:11 www/about.html:18 +#: frappe/www/about.html:11 frappe/www/about.html:18 msgid "About Us" msgstr "" #. Name of a DocType -#: website/doctype/about_us_settings/about_us_settings.json -msgid "About Us Settings" -msgstr "Pengaturan Tetang Kami" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json msgid "About Us Settings" msgstr "Pengaturan Tetang Kami" #. Name of a DocType -#: website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "About Us Team Member" msgstr "Tentang Kami Anggota Tim" -#: core/doctype/data_import/data_import.js:27 +#: frappe/core/doctype/data_import/data_import.js:27 msgid "About {0} minute remaining" msgstr "Sekitar {0} menit tersisa" -#: core/doctype/data_import/data_import.js:28 +#: frappe/core/doctype/data_import/data_import.js:28 msgid "About {0} minutes remaining" msgstr "Sekitar {0} menit tersisa" -#: core/doctype/data_import/data_import.js:25 +#: frappe/core/doctype/data_import/data_import.js:25 msgid "About {0} seconds remaining" msgstr "Tentang {0} detik tersisa" -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Access Key ID" -msgstr "ID Kunci Akses" - -#. Label of a Password field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Access Key Secret" -msgstr "Akses Kunci Rahasia" +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "" #. Name of a DocType -#: core/doctype/access_log/access_log.json -msgid "Access Log" -msgstr "Log Akses" - #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Access Log" +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json msgid "Access Log" msgstr "Log Akses" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Access Log" -msgstr "Log Akses" - -#. Label of a Data field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Access Token" -msgstr "Akses Token" +msgstr "" -#. Label of a Password field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Access Token" -msgstr "Akses Token" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Access Token URL" -msgstr "URL Token Akses" +msgstr "" -#: auth.py:444 +#: frappe/auth.py:491 msgid "Access not allowed from this IP Address" msgstr "Akses tidak diizinkan dari Alamat IP ini" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Account" msgstr "Akun" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Account Deletion Settings" msgstr "" #. Name of a role -#: automation/doctype/auto_repeat/auto_repeat.json -#: contacts/doctype/contact/contact.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Accounts Manager" msgstr "Pengelola Akun" #. Name of a role -#: automation/doctype/auto_repeat/auto_repeat.json -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Accounts User" msgstr "Pengguna Akun" -#: email/doctype/email_group/email_group.js:34 -#: email/doctype/email_group/email_group.js:63 -#: email/doctype/email_group/email_group.js:72 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37 -#: public/js/frappe/form/sidebar/review.js:59 -#: workflow/page/workflow_builder/workflow_builder.js:37 -msgid "Action" -msgstr "Tindakan" - -#. Label of a Select field in DocType 'Amended Document Naming Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Select field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Action" -msgstr "Tindakan" +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "" +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 msgid "Action" msgstr "Tindakan" -#. Label of a Select field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Small Text field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action / Route" -msgstr "Tindakan / Rute" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:310 -#: public/js/frappe/widgets/onboarding_widget.js:381 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 msgid "Action Complete" msgstr "" -#: model/document.py:1648 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "aksi Gagal" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Action Label" msgstr "" -#. Label of a Int field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json msgid "Action Timeout (Seconds)" -msgstr "Timeout Aksi (Detik)" +msgstr "" -#. Label of a Select field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action Type" -msgstr "tipe aksi" +msgstr "" -#: core/doctype/submission_queue/submission_queue.py:119 +#: frappe/core/doctype/submission_queue/submission_queue.py:120 msgid "Action {0} completed successfully on {1} {2}. View it {3}" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:115 +#: frappe/core/doctype/submission_queue/submission_queue.py:116 msgid "Action {0} failed on {1} {2}. View it {3}" msgstr "" -#: core/doctype/communication/communication.js:66 -#: core/doctype/communication/communication.js:74 -#: core/doctype/communication/communication.js:82 -#: core/doctype/communication/communication.js:90 -#: core/doctype/communication/communication.js:99 -#: core/doctype/communication/communication.js:108 -#: core/doctype/communication/communication.js:131 -#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39 -#: custom/doctype/customize_form/customize_form.js:108 -#: custom/doctype/customize_form/customize_form.js:116 -#: custom/doctype/customize_form/customize_form.js:124 -#: custom/doctype/customize_form/customize_form.js:132 -#: custom/doctype/customize_form/customize_form.js:140 -#: custom/doctype/customize_form/customize_form.js:238 -#: public/js/frappe/views/reports/query_report.js:190 -#: public/js/frappe/views/reports/query_report.js:203 -#: public/js/frappe/views/reports/query_report.js:213 +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Tindakan" -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Actions" -msgstr "Tindakan" - -#. Label of a Section Break field in DocType 'DocType' -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Actions" -msgstr "Tindakan" - -#. Label of a Check field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Activate" msgstr "" -#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12 -#: workflow/doctype/workflow/workflow_list.js:5 -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 msgid "Active" msgstr "Aktif" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Active Directory" msgstr "" -#. Label of a Section Break field in DocType 'Domain Settings' -#. Label of a Table field in DocType 'Domain Settings' -#: core/doctype/domain_settings/domain_settings.json -msgctxt "Domain Settings" +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Active Domains" -msgstr "Domain aktif" +msgstr "" -#: www/third_party_apps.html:32 +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 msgid "Active Sessions" msgstr "Sesi Aktif" -#: public/js/frappe/form/dashboard.js:22 -msgid "Activity" -msgstr "Aktivitas" - #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 msgid "Activity" msgstr "Aktivitas" #. Name of a DocType -#: core/doctype/activity_log/activity_log.json -msgid "Activity Log" -msgstr "Log Aktivitas" - #. Label of a Link in the Build Workspace #. Label of a Link in the Users Workspace -#: core/workspace/build/build.json core/workspace/users/users.json -msgctxt "Activity Log" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json msgid "Activity Log" msgstr "Log Aktivitas" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Activity Log" -msgstr "Log Aktivitas" - -#: core/page/permission_manager/permission_manager.js:465 -#: email/doctype/email_group/email_group.js:60 -#: public/js/frappe/form/grid_row.js:468 -#: public/js/frappe/form/sidebar/assign_to.js:100 -#: public/js/frappe/list/bulk_operations.js:372 -#: public/js/frappe/views/dashboard/dashboard_view.js:440 -#: public/js/frappe/views/reports/query_report.js:265 -#: public/js/frappe/views/reports/query_report.js:293 -#: public/js/frappe/widgets/widget_dialog.js:30 +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Tambahkan" -#: core/doctype/user_permission/user_permission_list.js:4 +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" msgstr "Tambah / Perbarui" -#: core/page/permission_manager/permission_manager.js:425 +#: frappe/core/page/permission_manager/permission_manager.js:442 msgid "Add A New Rule" msgstr "Tambah Aturan Baru" -#: public/js/frappe/views/interaction.js:159 +#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Tambahkan lampiran" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_background_image (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Background Image" msgstr "" -#. Title of an Onboarding Step -#: website/onboarding_step/add_blog_category/add_blog_category.json -msgid "Add Blog Category" -msgstr "" - -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Border at Bottom" msgstr "" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Border at Top" msgstr "" -#: public/js/frappe/views/reports/query_report.js:209 +#: frappe/desk/doctype/number_card/number_card.js:36 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Tambahkan Bagan ke Dasbor" -#: public/js/frappe/views/treeview.js:285 +#: frappe/public/js/frappe/views/treeview.js:301 msgid "Add Child" msgstr "Tambah Anak" -#: public/js/frappe/views/reports/query_report.js:1664 -#: public/js/frappe/views/reports/query_report.js:1667 -#: public/js/frappe/views/reports/report_view.js:329 -#: public/js/frappe/views/reports/report_view.js:354 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/report_view.js:355 +#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Tambahkan Kolom" -#: core/doctype/communication/communication.js:127 +#: frappe/core/doctype/communication/communication.js:127 msgid "Add Contact" msgstr "Tambah kontak" -#: desk/doctype/event/event.js:38 +#: frappe/desk/doctype/event/event.js:38 msgid "Add Contacts" msgstr "Tambahkan Kontak" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_container (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Container" -msgstr "Tambahkan Penampung" +msgstr "" -#. Label of a Button field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the set_meta_tags (Button) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Add Custom Tags" -msgstr "Tambahkan Tag Kustom" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:159 -#: public/js/frappe/widgets/widget_dialog.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 msgid "Add Filters" msgstr "Tambahkan Filter" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_shade (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Gray Background" -msgstr "Tambahkan Latar Belakang Abu-abu" +msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:417 +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Tambahkan Grup" -#: core/page/permission_manager/permission_manager.js:428 +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "Tambahkan Beberapa" + +#: frappe/core/page/permission_manager/permission_manager.js:445 msgid "Add New Permission Rule" msgstr "Tambahkan Rule Izin Baru" -#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42 +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 msgid "Add Participants" msgstr "Tambahkan Peserta" -#. Label of a Check field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the add_query_parameters (Check) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Add Query Parameters" msgstr "" -#: public/js/frappe/form/sidebar/review.js:45 -msgid "Add Review" -msgstr "Tambahkan Ulasan" - -#: core/doctype/user/user.py:768 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" -#: public/js/frappe/views/communication.js:117 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Row" +msgstr "" + +#. Label of the add_signature (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Tambahkan Signature" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Add Signature" -msgstr "Tambahkan Signature" - -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Space at Bottom" msgstr "" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_top_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Space at Top" msgstr "" -#: email/doctype/email_group/email_group.js:38 -#: email/doctype/email_group/email_group.js:59 +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 msgid "Add Subscribers" msgstr "Tambahkan Pelanggan" -#: public/js/frappe/list/bulk_operations.js:360 +#: frappe/public/js/frappe/list/bulk_operations.js:425 msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1834 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:320 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Add Total Row" -msgstr "Tambahkan 'Baris Total'" +msgstr "" -#. Label of a Check field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "" + +#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Add Unsubscribe Link" -msgstr "Menambahkan Unsubscribe Link" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:6 +#: frappe/core/doctype/user_permission/user_permission_list.js:6 msgid "Add User Permissions" msgstr "Tambahkan Izin Pengguna" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Add Video Conferencing" msgstr "" -#: public/js/frappe/form/form_tour.js:203 +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:211 msgid "Add a Row" msgstr "" -#: templates/includes/comments/comments.html:30 -#: templates/includes/comments/comments.html:47 +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 msgid "Add a comment" msgstr "Tambah komentar" -#: public/js/frappe/form/form.js:192 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:193 msgid "Add a row above the current row" msgstr "" -#: public/js/frappe/form/form.js:204 +#: frappe/public/js/frappe/form/form.js:205 msgid "Add a row at the bottom" msgstr "" -#: public/js/frappe/form/form.js:200 +#: frappe/public/js/frappe/form/form.js:201 msgid "Add a row at the top" msgstr "" -#: public/js/frappe/form/form.js:196 +#: frappe/public/js/frappe/form/form.js:197 msgid "Add a row below the current row" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:285 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 msgid "Add a {0} Chart" msgstr "Tambahkan Bagan {0}" -#: custom/doctype/client_script/client_script.js:16 +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:16 msgid "Add script for Child Table" msgstr "Tambahkan skrip untuk Tabel Anak" -#: public/js/frappe/utils/dashboard_utils.js:263 -#: public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Tambahkan ke Dashboard" -#: public/js/frappe/form/sidebar/assign_to.js:98 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 msgid "Add to ToDo" msgstr "Tambahkan ke ToDo" -#: website/doctype/website_slideshow/website_slideshow.js:32 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 msgid "Add to table" msgstr "Tambahkan ke tabel" -#: public/js/frappe/form/footer/form_timeline.js:97 +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 msgid "Add to this activity by mailing to {0}" msgstr "" +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:286 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "" + #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "Ditambahkan HTML di bagian dari halaman web, terutama digunakan untuk verifikasi situs dan SEO" +msgstr "" -#: core/doctype/log_settings/log_settings.py:82 +#: frappe/core/doctype/log_settings/log_settings.py:81 msgid "Added default log doctypes: {}" msgstr "" -#: core/doctype/file/file.py:720 -msgid "Added {0}" -msgstr "Ditambahkan {0}" - -#: public/js/frappe/form/link_selector.js:180 -#: public/js/frappe/form/link_selector.js:202 +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" msgstr "Ditambahkan {0} ({1})" -#: core/doctype/user/user.py:271 -msgid "Adding System Manager to this User as there must be atleast one System Manager" -msgstr "Menambahkan Pengelola Sistem untuk user ini dikarenakan minimal harus ada satu Pengelola Sistem" - -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Additional Permissions" -msgstr "Izin Tambahan" - -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Additional Permissions" -msgstr "Izin Tambahan" +msgstr "" #. Name of a DocType -#: contacts/doctype/address/address.json +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Address" msgstr "Alamat" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Address" -msgstr "Alamat" - -#. Label of a Section Break field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address" -msgstr "Alamat" - -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Address" -msgstr "Alamat" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Alamat Baris 1" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address Line 1" -msgstr "Alamat Baris 1" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Address Line 2" -msgstr "Alamat Baris 2" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 2" msgstr "Alamat Baris 2" #. Name of a DocType -#: contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/address_template/address_template.json msgid "Address Template" msgstr "Template Alamat" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Title" -msgstr "Judul Alamat" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address Title" -msgstr "Judul Alamat" - -#: contacts/doctype/address/address.py:71 +#: frappe/contacts/doctype/address/address.py:72 msgid "Address Title is mandatory." msgstr "Wajib masukan Judul Alamat." -#. Label of a Select field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Address Type" -msgstr "Tipe Alamat" +msgstr "" #. Description of the 'Address' (Small Text) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Address and other legal information you may want to put in the footer." -msgstr "Alamat dan informasi legal lainnya yang mungkin Anda ingin masukkan ke footer." +msgstr "" -#: contacts/doctype/address/address.py:208 +#: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" msgstr "Daftar Alamat" #. Name of a report -#: contacts/report/addresses_and_contacts/addresses_and_contacts.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json msgid "Addresses And Contacts" msgstr "Alamat-Alamat Dan Kontak-Kontak" -#: public/js/frappe/ui/toolbar/search_utils.js:536 +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "Administrasi" #. Name of a role -#: contacts/doctype/salutation/salutation.json -#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json -#: core/doctype/module_def/module_def.json core/doctype/page/page.json -#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json -#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json -#: core/doctype/transaction_log/transaction_log.json -#: core/doctype/user_type/user_type.json core/doctype/version/version.json -#: custom/doctype/client_script/client_script.json -#: custom/doctype/custom_field/custom_field.json -#: custom/doctype/property_setter/property_setter.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -#: desk/doctype/onboarding_step/onboarding_step.json -#: website/doctype/website_theme/website_theme.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Administrator" -msgstr "Administrator" +msgstr "" -#: core/doctype/user/user.py:1180 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" -msgstr "Administrator Logged In" +msgstr "" -#: core/doctype/user/user.py:1174 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}." -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Advanced" -msgstr "Lanjutan" +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Advanced" -msgstr "Lanjutan" +msgstr "" -#. Label of a Section Break field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the advanced_control_section (Section Break) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Advanced Control" -msgstr "Kontrol Tingkat Lanjut" +msgstr "" -#: public/js/frappe/form/controls/link.js:315 -#: public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/controls/link.js:335 +#: frappe/public/js/frappe/form/controls/link.js:337 msgid "Advanced Search" msgstr "Pencarian Lanjutan" -#. Label of a Section Break field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Advanced Settings" -msgstr "Pengaturan lanjutan" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Cancel" -msgstr "Setelah Batal" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Delete" -msgstr "Setelah Hapus" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "After Insert" msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "After Save" -msgstr "Setelah Simpan" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "After Save (Submitted Document)" -msgstr "Setelah Menyimpan (Dokumen yang Dikirim)" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save (Submitted Document)" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "After Submission" msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Submit" -msgstr "Setelah Kirim" +msgstr "" -#: desk/doctype/number_card/number_card.py:58 +#: frappe/desk/doctype/number_card/number_card.py:62 msgid "Aggregate Field is required to create a number card" msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Aggregate Function Based On" -msgstr "Fungsi Agregat Berdasarkan" +msgstr "" -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Aggregate Function Based On" -msgstr "Fungsi Agregat Berdasarkan" - -#: desk/doctype/dashboard_chart/dashboard_chart.py:410 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 msgid "Aggregate Function field is required to create a dashboard chart" msgstr "Bidang Fungsi Agregat diperlukan untuk membuat bagan dasbor" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Alert" -msgstr "Waspada" +msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Alerts and Notifications" msgstr "" -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Align" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the align_labels_right (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Align Labels to the Right" -msgstr "Meratakan Labels ke kanan" +msgstr "" -#. Label of a Check field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#. Label of the right (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Align Right" -msgstr "Rata kanan" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:479 +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" msgstr "menyelaraskan Nilai" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: contacts/doctype/gender/gender.json -#: contacts/doctype/salutation/salutation.json -#: core/doctype/communication/communication.json core/doctype/file/file.json -#: core/doctype/language/language.json core/doctype/module_def/module_def.json -#: core/doctype/user/user.json desk/doctype/event/event.json -#: desk/doctype/notification_log/notification_log.json -#: desk/doctype/notification_settings/notification_settings.json -#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json -#: desk/doctype/todo/todo.json geo/doctype/country/country.json -#: integrations/doctype/connected_app/connected_app.json -#: integrations/doctype/token_cache/token_cache.json -#: printing/doctype/print_heading/print_heading.json -#: website/doctype/personal_data_download_request/personal_data_download_request.json -#: website/doctype/website_settings/website_settings.json -msgid "All" -msgstr "Semua" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "All" -msgstr "Semua" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "All" msgstr "Semua" -#: public/js/frappe/ui/notifications/notifications.js:394 +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 msgid "All Day" msgstr "Semua Hari" -#. Label of a Check field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" -msgid "All Day" -msgstr "Semua Hari" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "All Day" -msgstr "Semua Hari" - -#: website/doctype/website_slideshow/website_slideshow.py:42 +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" msgstr "Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum" -#: public/js/frappe/data_import/data_exporter.js:29 +#: frappe/public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" msgstr "Semua Rekaman" -#: custom/doctype/customize_form/customize_form.js:384 +#: frappe/public/js/frappe/form/form.js:2222 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." msgstr "Semua kustomisasi akan terhapus. Silakan konfirmasi." -#: templates/includes/comments/comments.html:158 +#: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." msgstr "" #. Description of the 'Document States' (Table) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" msgstr "" -#: utils/password_strength.py:187 +#: frappe/utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." msgstr "Semua-huruf besar hampir sama mudahnya untuk menebak semua-huruf kecil." -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Allocated To" -msgstr "Dialokasikan Ke" - -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Allot Points To Assigned Users" -msgstr "Allot Points Untuk Pengguna yang Ditugaskan" - -#: templates/includes/oauth_confirmation.html:15 -msgid "Allow" -msgstr "Mengizinkan" +msgstr "" +#. Label of the allow (Link) field in DocType 'User Permission' #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 msgid "Allow" msgstr "Mengizinkan" -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Allow" -msgstr "Mengizinkan" - -#: website/doctype/website_settings/website_settings.py:160 +#: frappe/website/doctype/website_settings/website_settings.py:160 msgid "Allow API Indexing Access" msgstr "Izinkan Akses Pengindeksan API" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Auto Repeat" -msgstr "Izinkan Ulangi Otomatis" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow Auto Repeat" -msgstr "Izinkan Ulangi Otomatis" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow Bulk Edit" -msgstr "Izinkan Edit Massal" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow Bulk Edit" -msgstr "Izinkan Edit Massal" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Comments" -msgstr "Izinkan Komentar" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Consecutive Login Attempts " -msgstr "Izinkan Upaya Masuk Berturut-turut" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Delete" -msgstr "Izinkan Hapus" - -#. Label of a Button field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Allow Dropbox Access" -msgstr "Izinkan Akses Dropbox" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Editing After Submit" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:100 -#: integrations/doctype/google_calendar/google_calendar.py:114 +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts " +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" msgstr "Izinkan Google Kalender Akses" -#: integrations/doctype/google_contacts/google_contacts.py:39 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 msgid "Allow Google Contacts Access" msgstr "Izinkan Google Kontak Mengakses" -#: integrations/doctype/google_drive/google_drive.py:51 -msgid "Allow Google Drive Access" -msgstr "Izinkan Akses Google Drive" - -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" -msgstr "Izinkan Tamu" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow Guest to View" -msgstr "Izinkan tamu untuk Lihat" +msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Allow Guest to comment" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Guests to Upload Files" -msgstr "Izinkan Tamu Mengunggah File" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Allow Import (via Data Import Tool)" -msgstr "Izinkan Impor (melalui Alat Import Data)" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow Import (via Data Import Tool)" -msgstr "Izinkan Impor (melalui Alat Import Data)" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Incomplete Forms" -msgstr "Izikan Formulir tidak lengkap" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login After Fail" -msgstr "Perbolehkan Masuk Setelah Gagal" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login using Mobile Number" -msgstr "Izinkan Login menggunakan Nomor Handphone" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login using User Name" -msgstr "Izinkan Login menggunakan User Name" - -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Allow Modules" -msgstr "Izinkan Modul" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Multiple Responses" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_import (Check) field in DocType 'DocType' +#. Label of the allow_import (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Import (via Data Import Tool)" +msgstr "" + +#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login After Fail" +msgstr "" + +#. Label of the allow_login_using_mobile_number (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using Mobile Number" +msgstr "" + +#. Label of the allow_login_using_user_name (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using User Name" +msgstr "" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Older Web View Links (Insecure)" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Print" -msgstr "Izinkan Cetak" - -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Cancelled" -msgstr "Memungkinkan Print untuk Dibatalkan" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:395 +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Memungkinkan Print untuk Draft" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Allow Print for Draft" -msgstr "Memungkinkan Print untuk Draft" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Allow Read On All Link Options" -msgstr "Izinkan Baca Di Semua Opsi Tautan" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow Rename" -msgstr "Izinkan Rename" +msgstr "" -#. Label of a Table MultiSelect field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Allow Roles" -msgstr "Izinkan Roles" +msgstr "" -#. Label of a Section Break field in DocType 'Role Permission for Page and -#. Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Allow Roles" -msgstr "Izinkan Roles" - -#. Label of a Check field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the allow_self_approval (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "Izinkan Persetujuan Sendiri" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_telemetry (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Sending Usage Data for Improving Applications" msgstr "" #. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow #. Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "Izinkan persetujuan untuk pembuat dokumen" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow document creation via Email" -msgstr "Izinkan pembuatan dokumen melalui Email" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow document creation via Email" -msgstr "Izinkan pembuatan dokumen melalui Email" +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow events in timeline" -msgstr "Izinkan acara dalam garis waktu" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow on Submit" -msgstr "Izinkan Submit" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow on Submit" -msgstr "Izinkan Submit" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow on Submit" -msgstr "Izinkan Submit" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow only one session per user" -msgstr "Hanya mengizinkan satu sesi per pengguna" +msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow page break inside tables" -msgstr "Memungkinkan halaman istirahat dalam tabel" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:420 +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 msgid "Allow recording my first session to improve user experience" msgstr "" -#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web #. Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "Izinkan untuk menyimpan jika bidang wajib tidak diisi" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:413 +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" msgstr "" #. Description of the 'Login After' (Int) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Allow user to login only after this hour (0-24)" -msgstr "Memungkinkan pengguna untuk login hanya setelah jam ini (0-24)" +msgstr "" #. Description of the 'Login Before' (Int) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Allow user to login only before this hour (0-24)" -msgstr "Memungkinkan pengguna untuk login hanya sebelum jam ini (0-24)" +msgstr "" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow users to log in without a password, using a login link sent to their email" msgstr "" -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allowed" -msgstr "Diizinkan" +msgstr "" -#. Label of a Small Text field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allowed File Extensions" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "Diizinkan Dengan Sebutan" +msgstr "" -#. Label of a Section Break field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Allowed Modules" msgstr "" -#: public/js/frappe/form/form.js:1229 +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1256 msgid "Allowing DocType, DocType. Be careful!" msgstr "Membiarkan DocType, DocType. Hati-hati!" -#: core/doctype/user/user.py:977 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Sudah Terdaftar" -#: desk/form/assign_to.py:132 +#: frappe/desk/form/assign_to.py:137 msgid "Already in the following Users ToDo list:{0}" msgstr "Sudah ada di daftar ToDo Pengguna berikut: {0}" -#: public/js/frappe/views/reports/report_view.js:840 +#: frappe/public/js/frappe/views/reports/report_view.js:902 msgid "Also adding the dependent currency field {0}" msgstr "Juga menambahkan field mata uang dependen {0}" -#: public/js/frappe/views/reports/report_view.js:853 +#: frappe/public/js/frappe/views/reports/report_view.js:915 msgid "Also adding the status dependency field {0}" msgstr "Juga menambahkan bidang dependensi status {0}" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "Selalu menambahkan "Draft" Menuju rancangan pencetakan dokumen" +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Amend" -msgstr "Merubah" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Amend" -msgstr "Merubah" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Amend" -msgstr "Merubah" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Amend Counter" -msgstr "" - #. Option for the 'Default Amendment Naming' (Select) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" msgstr "" #. Name of a DocType -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" msgstr "" -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" msgstr "" -#. Label of a Link field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" +#. Label of the amended_from (Link) field in DocType 'Transaction Log' +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" -msgstr "Diubah Dari" +msgstr "" -#. Label of a Link field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Amended From" -msgstr "Diubah Dari" - -#: public/js/frappe/form/save.js:12 +#: frappe/public/js/frappe/form/save.js:12 msgctxt "Freeze message while amending a document" msgid "Amending" msgstr "Amandemen" -#. Label of a Table field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:208 +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:287 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Terjadi kesalahan saat mengatur Sesi Default" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr "File icon dengan ekstensi .ico. Harus 16 x 16 px. Dihasilkan menggunakan generator favicon. [favicon-generator.org]" +msgstr "" -#: templates/includes/oauth_confirmation.html:35 +#: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "Analytics" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:35 +#: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" msgstr "Leluhur Dari" +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Annual" msgstr "Tahunan" -#. Label of a Code field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Anonymization Matrix" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Anonymous" -msgstr "Anonim" +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" -#: public/js/frappe/request.js:186 +#: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." msgstr "Transaksi lain yang menghalangi satu ini. Silakan coba lagi dalam beberapa detik." -#: model/rename_doc.py:380 +#: frappe/model/rename_doc.py:379 msgid "Another {0} with name {1} exists, select another name" msgstr "Lain {0} dengan nama {1} ada, pilih nama lain" #. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." -msgstr "Bahasa printer berbasis string apa pun dapat digunakan. Menulis perintah mentah membutuhkan pengetahuan tentang bahasa asli printer yang disediakan oleh produsen printer. Silakan merujuk ke manual pengembang yang disediakan oleh pabrik printer tentang cara menulis perintah asli mereka. Perintah-perintah ini diberikan di sisi server menggunakan Bahasa Templating Jinja." - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "App" -msgstr "Aplikasi" - -#. Label of a Data field in DocType 'Website Theme Ignore App' -#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json -msgctxt "Website Theme Ignore App" -msgid "App" -msgstr "Aplikasi" - -#. Label of a Data field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "App Access Key" -msgstr "Aplikasi Access Key" - -#: integrations/doctype/dropbox_settings/dropbox_settings.js:22 -msgid "App Access Key and/or Secret Key are not present." msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Client ID" -msgstr "Aplikasi Client ID" +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Client Secret" -msgstr "Aplikasi Client Rahasia" +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "" -#. Label of a Data field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json msgid "App Logo" msgstr "" -#: core/doctype/installed_applications/installed_applications.js:27 +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Nama App" -#. Label of a Select field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "App Name" -msgstr "Nama App" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Name" -msgstr "Nama App" - -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "App Name" -msgstr "Nama App" - -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "App Secret Key" -msgstr "App Kunci Rahasia" - -#: modules/utils.py:268 +#: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1677 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} tidak diinstal" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Append Emails to Sent Folder" -msgstr "Tambahkan Email ke Folder Terkirim" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Append Emails to Sent Folder" -msgstr "Tambahkan Email ke Folder Terkirim" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "Append To" -msgstr "Untuk menambahkan" +msgstr "" -#. Label of a Link field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "Append To" -msgstr "Untuk menambahkan" - -#: email/doctype/email_account/email_account.py:178 +#: frappe/email/doctype/email_account/email_account.py:202 msgid "Append To can be one of {0}" msgstr "Tambahkan Untuk dapat menjadi salah satu {0}" #. Description of the 'Append To' (Link) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." msgstr "" -#: core/doctype/user_permission/user_permission_list.js:105 +#: frappe/core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" msgstr "Jenis Dokumen yang Berlaku" -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Applicable For" -msgstr "Berlaku Untuk" +msgstr "" -#. Label of a Attach Image field in DocType 'Navbar Settings' -#. Label of a Section Break field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Application Logo" -msgstr "Logo Aplikasi" +msgstr "" -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Application Name" -msgstr "nama aplikasi" +msgstr "" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Application Name" -msgstr "nama aplikasi" - -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json msgid "Application Version" -msgstr "Versi Aplikasi" +msgstr "" -#. Label of a Select field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" -msgstr "Diterapkan Pada" +msgstr "" -#: public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Terapkan Aturan Penugasan" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Apply Document Permissions" -msgstr "Terapkan Izin Dokumen" - -#: public/js/frappe/ui/filters/filter_list.js:315 +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" msgstr "" -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Apply Only Once" -msgstr "Terapkan Hanya Sekali" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the apply_strict_user_permissions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Apply Strict User Permissions" -msgstr "Terapkan Izin Pengguna yang Ketat" +msgstr "" -#. Label of a Select field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json msgid "Apply To" msgstr "" -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "Berlaku untuk Semua Jenis Dokumen" +msgstr "" -#. Label of a Link field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" msgstr "" +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "" + #. Description of the 'If user is the owner' (Check) field in DocType 'Custom #. DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Apply this rule if the User is the Owner" -msgstr "Menerapkan aturan ini jika pengguna adalah pemilik" - #. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "Apply this rule if the User is the Owner" -msgstr "Menerapkan aturan ini jika pengguna adalah pemilik" +msgstr "" -#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Apply this rule only once per document" -msgstr "Terapkan aturan ini hanya sekali per dokumen" - -#: core/doctype/user_permission/user_permission_list.js:75 +#: frappe/core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" msgstr "Berlaku untuk semua Jenis Dokumen" -#: model/workflow.py:265 +#: frappe/model/workflow.py:266 msgid "Applying: {0}" msgstr "Menerapkan: {0}" -#: public/js/frappe/form/sidebar/review.js:62 -msgid "Appreciate" -msgstr "Menghargai" - -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Appreciation" -msgstr "Apresiasi" - -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" msgstr "Diperlukan Persetujuan" -#: public/js/frappe/utils/number_systems.js:41 +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Archived" -msgstr "Diarsipkan" +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" -#: public/js/frappe/views/kanban/kanban_board.bundle.js:490 +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 msgid "Archived Columns" msgstr "Kolom diarsipkan" -#: public/js/frappe/form/grid.js:269 +#: frappe/public/js/frappe/list/list_view.js:1966 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:294 msgid "Are you sure you want to delete all rows?" msgstr "Anda yakin ingin menghapus semua baris?" -#: public/js/frappe/views/workspace/workspace.js:885 -msgid "Are you sure you want to delete page {0}?" -msgstr "" - -#: public/js/frappe/form/sidebar/attachments.js:135 +#: frappe/public/js/frappe/form/controls/attach.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:135 msgid "Are you sure you want to delete the attachment?" msgstr "Apakah Anda yakin ingin menghapus lampiran?" -#: public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:185 msgid "Are you sure you want to discard the changes?" msgstr "" -#: public/js/frappe/form/toolbar.js:110 +#: frappe/public/js/frappe/views/reports/query_report.js:968 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 msgid "Are you sure you want to merge {0} with {1}?" msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?" -#: public/js/frappe/views/kanban/kanban_view.js:105 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 msgid "Are you sure you want to proceed?" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:25 +#: frappe/core/doctype/rq_job/rq_job_list.js:25 msgid "Are you sure you want to re-enable scheduler?" msgstr "" -#: core/doctype/communication/communication.js:163 +#: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" msgstr "Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}?" -#: core/doctype/rq_job/rq_job_list.js:10 +#: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" msgstr "" -#: public/js/frappe/list/list_filter.js:109 +#: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:267 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" msgstr "Apakah Anda yakin ingin mengatur ulang semua penyesuaian?" -#: email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:16 -#: core/doctype/user_permission/user_permission_list.js:165 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" msgstr "Apakah kamu yakin" -#. Label of a Code field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Arguments" msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "Arial" +msgstr "" -#: desk/form/assign_to.py:102 +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "" + +#: frappe/desk/form/assign_to.py:107 msgid "As document sharing is disabled, please give them the required permissions before assigning." msgstr "" -#: templates/emails/account_deletion_notification.html:3 +#: frappe/templates/emails/account_deletion_notification.html:3 msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" -msgstr "Kondisi Penugasan" +msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:163 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Tugaskan Kepada" -#: public/js/frappe/list/list_view.js:1804 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tugaskan Kepada" -#. Label of a Section Break field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Assign To Users" -msgstr "Tetapkan Untuk Pengguna" +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:232 +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 msgid "Assign a user" msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.js:52 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" msgstr "Tetapkan satu per satu, secara berurutan" -#: public/js/frappe/form/sidebar/assign_to.js:154 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" msgstr "Tetapkan ke saya" -#: automation/doctype/assignment_rule/assignment_rule.js:53 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" msgstr "Tugaskan orang yang memiliki tugas paling sedikit" -#: automation/doctype/assignment_rule/assignment_rule.js:54 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" msgstr "Tetapkan ke kumpulan pengguna di bidang ini" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Assigned" -msgstr "Ditugaskan" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Assigned" -msgstr "Ditugaskan" - -#: desk/report/todo/todo.py:41 +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 msgid "Assigned By" msgstr "Ditugaskan Oleh" -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Assigned By" -msgstr "Ditugaskan Oleh" - -#. Label of a Read Only field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Assigned By Full Name" -msgstr "Ditugaskan Dengan Nama Lengkap" +msgstr "" -#: desk/doctype/todo/todo_list.js:35 -msgid "Assigned By Me" -msgstr "Ditugaskan Olehku" - -#: model/__init__.py:151 model/meta.py:55 -#: public/js/frappe/list/list_sidebar_group_by.js:71 -#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 -#: public/js/frappe/views/interaction.js:82 +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 msgid "Assigned To" msgstr "Ditugaskan Kepada" -#: desk/report/todo/todo.py:40 +#: frappe/desk/report/todo/todo.py:40 msgid "Assigned To/Owner" msgstr "Ditugaskan Untuk / Owner" -#: public/js/frappe/form/sidebar/assign_to.js:241 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "Tugas" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "Tugas Selesai" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Assignment Completed" -msgstr "Tugas Selesai" - -#. Label of a Section Break field in DocType 'Assignment Rule' -#. Label of a Table field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the sb (Section Break) field in DocType 'Assignment Rule' +#. Label of the assignment_days (Table) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Days" -msgstr "Hari Penugasan" - -#: automation/doctype/assignment_rule/assignment_rule.py:64 -msgid "Assignment Day{0} {1} has been repeated." msgstr "" #. Name of a DocType -#: automation/doctype/assignment_rule/assignment_rule.json -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Assignment Rule" -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json msgid "Assignment Rule" msgstr "Aturan Penugasan" #. Name of a DocType -#: automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json msgid "Assignment Rule Day" msgstr "Hari Aturan Penugasan" #. Name of a DocType -#: automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" msgstr "Pengguna Aturan Penugasan" -#: automation/doctype/assignment_rule/assignment_rule.py:53 -msgid "Assignment Rule is not allowed on {0} document type" +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" msgstr "" -#. Label of a Section Break field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Rules" -msgstr "Aturan Penugasan" +msgstr "" -#: desk/doctype/notification_log/notification_log.py:157 +#: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" msgstr "Pembaruan Tugas pada {0}" -#: desk/form/assign_to.py:75 +#: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" msgstr "Tugas untuk {0} {1}" -#: desk/doctype/todo/todo.py:62 +#: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:227 +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 msgid "Assignments" msgstr "Tugas" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Assignments" -msgstr "Tugas" - -#: public/js/frappe/form/grid_row.js:629 +#: frappe/public/js/frappe/form/grid_row.js:680 msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:64 -msgid "Atleast one field is required in Web Form Fields Table" +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" msgstr "" -#: core/doctype/data_export/data_export.js:44 -msgid "Atleast one field of Parent Document Type is mandatory" -msgstr "Setidaknya satu bidang Jenis Dokumen Induk adalah wajib" - -#: public/js/frappe/form/controls/attach.js:5 -msgid "Attach" -msgstr "Melampirkan" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Attach" -msgstr "Melampirkan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Attach" -msgstr "Melampirkan" +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Attach" -msgstr "Melampirkan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" msgstr "Melampirkan" -#: public/js/frappe/views/communication.js:139 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Lampirkan Dokumen Cetak" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Attach Image" -msgstr "Pasang Gambar" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Attach Image" -msgstr "Pasang Gambar" +msgstr "" -#. Label of a Attach field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Attach Package" msgstr "" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "Lampirkan Cetak" +msgstr "" -#: website/doctype/website_slideshow/website_slideshow.js:8 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." msgstr "Lampirkan file / url dan tambahkan dalam tabel." -#. Label of a Code field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Attached File" -msgstr "File terlampir" +msgstr "" -#. Label of a Link field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To DocType" -msgstr "Terlampir Untuk DocType" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "Terlampir ke lapangan" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "Terlampir Untuk Nama" +msgstr "" -#: core/doctype/file/file.py:140 +#: frappe/core/doctype/file/file.py:142 msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Attachment" -msgstr "Lampiran" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Attachment" -msgstr "Lampiran" - -#. Label of a Attach field in DocType 'Newsletter Attachment' -#: email/doctype/newsletter_attachment/newsletter_attachment.json -msgctxt "Newsletter Attachment" -msgid "Attachment" -msgstr "Lampiran" - -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the attachment_limit (Int) field in DocType 'Email Account' +#. Label of the attachment_limit (Int) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Attachment Limit (MB)" -msgstr "Batas Lampiran (MB)" +msgstr "" -#. Label of a Int field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Attachment Limit (MB)" -msgstr "Batas Lampiran (MB)" - -#: core/doctype/file/file.py:321 -#: public/js/frappe/form/sidebar/attachments.js:36 +#: frappe/core/doctype/file/file.py:324 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" -#. Label of a HTML field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Attachment Link" -msgstr "Tautan Lampiran" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "Lampiran Dihapus" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Attachment Removed" -msgstr "Lampiran Dihapus" - -#: core/doctype/file/utils.py:40 -#: email/doctype/newsletter/templates/newsletter.html:47 -#: website/doctype/web_form/templates/web_form.html:103 +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Lampiran" -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Attachments" -msgstr "Lampiran" - -#. Label of a Table field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Attachments" -msgstr "Lampiran" - -#: public/js/frappe/form/print_utils.js:89 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Mencoba Koneksi ke Baki QZ ..." -#: public/js/frappe/form/print_utils.js:105 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Mencoba meluncurkan QZ Tray ..." -#. Label of a Table field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Audience" +#: frappe/www/attribution.html:9 +msgid "Attribution" msgstr "" #. Name of a report -#: custom/report/audit_system_hooks/audit_system_hooks.json +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" msgstr "" #. Name of a DocType -#: core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/audit_trail/audit_trail.json msgid "Audit Trail" msgstr "" -#. Label of a Code field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the auth_url_data (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Auth URL Data" -msgstr "Data URL Auth" +msgstr "" +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' #. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Authentication" msgstr "pembuktian keaslian" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Authentication" -msgstr "pembuktian keaslian" - -#: www/qrcode.html:19 +#: frappe/www/qrcode.html:19 msgid "Authentication Apps you can use are: " msgstr "Aplikasi Otentikasi yang dapat Anda gunakan adalah:" -#: email/doctype/email_account/email_account.py:294 +#: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." msgstr "Autentikasi gagal saat menerima email dari Akun Email: {0}." -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Author" -msgstr "Penulis" +msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Authorization Code" -msgstr "Kode otorisasi" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Authorization Code" -msgstr "Kode otorisasi" +msgstr "" -#. Label of a Small Text field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Authorization URI" msgstr "" -#: templates/includes/oauth_confirmation.html:32 +#: frappe/templates/includes/oauth_confirmation.html:35 msgid "Authorization error for {}." msgstr "" -#. Label of a Button field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Authorize API Access" msgstr "" -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Authorize API Indexing Access" -msgstr "Izinkan Akses Pengindeksan API" +msgstr "" -#. Label of a Button field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Authorize Google Calendar Access" -msgstr "Otorisasi Akses Kalender Google" +msgstr "" -#. Label of a Button field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Authorize Google Contacts Access" -msgstr "Otorisasi Akses Kontak Google" +msgstr "" -#. Label of a Button field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Authorize Google Drive Access" -msgstr "Otorisasi Akses Google Drive" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the authorize_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Authorize URL" -msgstr "Otorisasi URL" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Authorized" -msgstr "resmi" +msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Auto" -msgstr "Mobil" +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Auto" -msgstr "Mobil" +msgstr "" +#. Label of a Link in the Tools Workspace #. Name of a DocType -#: email/doctype/auto_email_report/auto_email_report.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Auto Email Report" msgstr "Laporan Surel Otomatis" -#. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Auto Email Report" -msgid "Auto Email Report" -msgstr "Laporan Surel Otomatis" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Auto Name" -msgstr "Nama Otomatis" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Auto Name" -msgstr "Nama Otomatis" +msgstr "" #. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.json -#: public/js/frappe/utils/common.js:442 -msgid "Auto Repeat" -msgstr "Ulangi Otomatis" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Auto Repeat" -msgid "Auto Repeat" -msgstr "Ulangi Otomatis" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 msgid "Auto Repeat" msgstr "Ulangi Otomatis" #. Name of a DocType -#: automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json msgid "Auto Repeat Day" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:158 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:436 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 msgid "Auto Repeat Document Creation Failed" msgstr "Ulangi Pembuatan Dokumen Otomatis Gagal" -#: automation/doctype/auto_repeat/auto_repeat.js:115 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 msgid "Auto Repeat Schedule" msgstr "" -#: public/js/frappe/utils/common.js:434 +#: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Ulangi Otomatis dibuat untuk dokumen ini" -#: automation/doctype/auto_repeat/auto_repeat.py:439 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 msgid "Auto Repeat failed for {0}" msgstr "Ulangi Otomatis gagal untuk {0}" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply" msgstr "" -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply Message" -msgstr "Auto Reply Pesan" +msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:179 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 msgid "Auto assignment failed: {0}" msgstr "Tugas otomatis gagal: {0}" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that are assigned to you" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that are shared with you" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you Like" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you comment on" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you create" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Autocomplete" -msgstr "" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Autocomplete" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Autocomplete" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Autoincrement" msgstr "" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "" + #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Automated Message" msgstr "" -#: public/js/frappe/ui/theme_switcher.js:69 -msgid "Automatic" -msgstr "" - #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 msgid "Automatic" msgstr "" -#: email/doctype/email_account/email_account.py:675 +#: frappe/email/doctype/email_account/email_account.py:772 msgid "Automatic Linking can be activated only for one Email Account." msgstr "Tautan Otomatis hanya dapat diaktifkan untuk satu Akun Email." -#: email/doctype/email_account/email_account.py:670 +#: frappe/email/doctype/email_account/email_account.py:766 msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "Tautan Otomatis hanya dapat diaktifkan jika Incoming diaktifkan." -#. Label of a Int field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:128 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "" + +#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Automatically delete account within (hours)" msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Automation" msgstr "Otomatisasi" -#. Label of a Attach Image field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#. Label of the avatar (Attach Image) field in DocType 'Blogger' +#: frappe/website/doctype/blogger/blogger.json msgid "Avatar" -msgstr "Avatar" - -#: public/js/frappe/form/controls/password.js:89 -#: public/js/frappe/ui/group_by/group_by.js:21 -msgid "Average" -msgstr "Rata-rata" +msgstr "" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Average" -msgstr "Rata-rata" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 msgid "Average" msgstr "Rata-rata" -#: public/js/frappe/ui/group_by/group_by.js:332 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Rata-rata dari {0}" -#: utils/password_strength.py:132 +#: frappe/utils/password_strength.py:130 msgid "Avoid dates and years that are associated with you." msgstr "Hindari tanggal dan tahun yang berkaitan dengan Anda." -#: utils/password_strength.py:126 +#: frappe/utils/password_strength.py:124 msgid "Avoid recent years." msgstr "Hindari beberapa tahun terakhir." -#: utils/password_strength.py:119 +#: frappe/utils/password_strength.py:117 msgid "Avoid sequences like abc or 6543 as they are easy to guess" msgstr "Hindari urutan seperti abc atau 6543 karena hal itu mudah ditebak" -#: utils/password_strength.py:126 +#: frappe/utils/password_strength.py:124 msgid "Avoid years that are associated with you." msgstr "Hindari tahun yang berkaitan dengan Anda." -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json msgid "Awaiting Password" -msgstr "Menunggu Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Awaiting password" -msgstr "Menunggu Sandi" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:200 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 msgid "Awesome Work" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:358 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 msgid "Awesome, now try making an entry yourself" msgstr "" -#: public/js/frappe/utils/number_systems.js:9 +#: frappe/public/js/frappe/utils/number_systems.js:9 msgctxt "Number system" msgid "B" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B0" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B1" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B10" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B2" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B3" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B4" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B5" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B6" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B7" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B8" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:76 +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "BCC" -msgstr "BCC" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" msgid "BCC" -msgstr "BCC" +msgstr "" -#. Label of a Code field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "BCC" -msgstr "BCC" +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" -#: templates/pages/integrations/gcalendar-success.html:13 +#: frappe/templates/pages/integrations/gcalendar-success.html:13 msgid "Back to Desk" msgstr "Kembali ke Meja" -#: www/404.html:20 +#: frappe/www/404.html:26 msgid "Back to Home" msgstr "Kembali ke rumah" -#: www/login.html:181 www/login.html:212 +#: frappe/www/login.html:201 frappe/www/login.html:232 msgid "Back to Login" msgstr "Kembali ke Login" -#. Label of a Color field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Background Color" -msgstr "Warna Latar" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Background Color" -msgstr "Warna Latar" - -#. Label of a Attach Image field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Background Image" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:143 -msgid "Background Jobs" -msgstr "Pekerjaan/Proses Latar" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "RQ Job" +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Pekerjaan/Proses Latar" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Workers" -msgstr "Pekerja latar" +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:31 -msgid "Backing up to Google Drive." -msgstr "Mencadangkan ke Google Drive." - -#. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgid "Backup" -msgstr "Cadangan" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Details" -msgstr "Detail Cadangan" - -#: desk/page/backups/backups.js:26 +#: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Files" -msgstr "File Cadangan" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Backup Folder ID" -msgstr "ID Folder Cadangan" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Backup Folder Name" -msgstr "Nama Folder Cadangan" - -#. Label of a Select field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Backup Frequency" -msgstr "Frekuensi Pencadangan" - -#. Label of a Select field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Frequency" -msgstr "Frekuensi Pencadangan" - -#: desk/page/backups/backups.py:99 +#: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" msgstr "Pekerjaan cadangan sudah dalam antrian. Anda akan menerima surel dengan tautan unduh" -#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup public and private files along with the database." -msgstr "Cadangkan file publik dan pribadi bersama dengan database." - -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Backups" -msgstr "Cadangan" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding" msgstr "" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding (legacy)" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner" -msgstr "Spanduk" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner HTML" -msgstr "Spanduk HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json msgid "Banner Image" -msgstr "Spanduk Gambar" - -#. Label of a Attach Image field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Banner Image" -msgstr "Spanduk Gambar" +msgstr "" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner is above the Top Menu Bar." -msgstr "Spanduk di atas Menu Atas." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Bar" -msgstr "Bar" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Barcode" -msgstr "Kode batang" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Barcode" -msgstr "Kode batang" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Barcode" msgstr "Kode batang" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Base Distinguished Name (DN)" -msgstr "Dasar Pembedaan Nama (DN)" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Base URL" -msgstr "URL dasar" +msgstr "" -#: printing/page/print/print.js:266 printing/page/print/print.js:320 -msgid "Based On" -msgstr "Berdasarkan" - -#. Label of a Link field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:273 +#: frappe/printing/page/print/print.js:327 msgid "Based On" msgstr "Berdasarkan" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Based on Field" -msgstr "Berdasarkan Bidang" +msgstr "" -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the user (Link) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Based on Permissions For User" -msgstr "Berdasarkan Izin Untuk Pengguna" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Basic" -msgstr "Dasar" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Basic Info" msgstr "" +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "" + #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Cancel" -msgstr "Sebelum Batalkan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Delete" -msgstr "Sebelum Hapus" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Before Insert" -msgstr "Sebelum Memasukkan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Before Save" -msgstr "Sebelum Menyimpan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Save (Submitted Document)" -msgstr "Sebelum Menyimpan (Dokumen yang Dikirim)" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Submit" -msgstr "Sebelum Kirim" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Validate" msgstr "" #. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json msgid "Beginner" -msgstr "Pemula" +msgstr "" -#: public/js/frappe/form/link_selector.js:29 +#: frappe/public/js/frappe/form/link_selector.js:29 msgid "Beginning with" msgstr "Dimulai dengan" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Beta" -msgstr "beta" +msgstr "" -#: utils/password_strength.py:75 +#: frappe/utils/password_strength.py:73 msgid "Better add a few more letters or another word" msgstr "Lebih baik tambahkan beberapa huruf atau gunakan kata lain" -#: public/js/frappe/ui/filters/filter.js:27 +#: frappe/public/js/frappe/ui/filters/filter.js:27 msgid "Between" msgstr "Antara" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Billing" -msgstr "Penagihan" +msgstr "" -#. Label of a Small Text field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#. Label of the bio (Small Text) field in DocType 'Blogger' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/blogger/blogger.json msgid "Bio" -msgstr "Bio" +msgstr "" -#. Label of a Small Text field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Bio" -msgstr "Bio" - -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Bio" -msgstr "Bio" - -#. Label of a Date field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Birth Date" -msgstr "Tanggal lahir" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:41 +#: frappe/public/js/frappe/data_import/data_exporter.js:41 msgid "Blank Template" msgstr "Templat Kosong" #. Name of a DocType -#: core/doctype/block_module/block_module.json +#: frappe/core/doctype/block_module/block_module.json msgid "Block Module" msgstr "Blok Modul" -#. Label of a Table field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json msgid "Block Modules" -msgstr "Blok Modul" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Block Modules" -msgstr "Blok Modul" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Blocked" -msgstr "Diblokir" +msgstr "" #. Label of a Card Break in the Website Workspace -#: website/doctype/blog_post/blog_post.py:239 -#: website/doctype/blog_post/templates/blog_post.html:13 -#: website/doctype/blog_post/templates/blog_post_list.html:2 -#: website/doctype/blog_post/templates/blog_post_list.html:11 -#: website/workspace/website/website.json +#: frappe/website/doctype/blog_post/blog_post.py:245 +#: frappe/website/doctype/blog_post/templates/blog_post.html:13 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 +#: frappe/website/workspace/website/website.json msgid "Blog" -msgstr "Blog" +msgstr "" #. Name of a DocType -#: website/doctype/blog_category/blog_category.json -msgid "Blog Category" -msgstr "Kategori Blog" - +#. Label of the blog_category (Link) field in DocType 'Blog Post' #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blog Category" +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/workspace/website/website.json msgid "Blog Category" msgstr "Kategori Blog" -#. Label of a Link field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Blog Category" -msgstr "Kategori Blog" - -#. Label of a Small Text field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Blog Intro" -msgstr "Pendahuluan Blog" +msgstr "" -#. Label of a Small Text field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Introduction" -msgstr "Pendahuluan Blog" +msgstr "" #. Name of a DocType -#: website/doctype/blog_post/blog_post.json -msgid "Blog Post" -msgstr "Posting Blog" - -#. Linked DocType in Blog Category's connections -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Blog Post" -msgstr "Posting Blog" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blog Post" -msgid "Blog Post" -msgstr "Posting Blog" - -#. Linked DocType in Blogger's connections -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/workspace/website/website.json msgid "Blog Post" msgstr "Posting Blog" #. Name of a DocType -#: website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Settings" msgstr "Pengaturan Blog" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the blog_title (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Title" -msgstr "Judul Blog" +msgstr "" #. Name of a role +#. Label of the blogger (Link) field in DocType 'Blog Post' #. Name of a DocType -#: website/doctype/blog_category/blog_category.json -#: website/doctype/blog_post/blog_post.json -#: website/doctype/blog_settings/blog_settings.json -#: website/doctype/blogger/blogger.json -msgid "Blogger" -msgstr "Blogger" - -#. Label of a Link field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Blogger" -msgstr "Blogger" - #. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blogger" +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/workspace/website/website.json msgid "Blogger" -msgstr "Blogger" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Blogger" -msgstr "Blogger" - -#. Subtitle of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Blogs, Website View Tracking, and more." msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Blue" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Blue" +msgstr "Biru" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Bold" -msgstr "Mencolok" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Bold" -msgstr "Mencolok" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Bold" -msgstr "Mencolok" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "Bot" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:126 +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" msgstr "Kedua DOCTYPE dan Nama diperlukan" +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 msgid "Bottom" -msgstr "Bawah" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 msgid "Bottom Center" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Bottom Center" -msgstr "" - -#. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 msgid "Bottom Left" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Bottom Right" -msgstr "" - #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 msgid "Bottom Right" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Bounced" -msgstr "Memantul" +msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand" msgstr "Merek" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand HTML" -msgstr "Merek HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand Image" -msgstr "Image Merek" +msgstr "" -#. Label of a Attach Image field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Brand Logo" msgstr "" #. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "" -"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" "has a transparent background and use the <img /> tag. Keep size as 200px x 30px" msgstr "" -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json msgid "Breadcrumbs" -msgstr "Tepung Roti" +msgstr "" -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Breadcrumbs" -msgstr "Tepung Roti" - -#: website/doctype/blog_post/templates/blog_post_list.html:18 -#: website/doctype/blog_post/templates/blog_post_list.html:21 +#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Browse by category" msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Browse by category" +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" msgstr "" -#: website/report/website_analytics/website_analytics.js:36 -msgid "Browser" -msgstr "Browser" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Browser" -msgstr "Browser" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the browser_version (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Browser Version" -msgstr "Versi Peramban" +msgstr "" -#: public/js/frappe/desk.js:19 +#: frappe/public/js/frappe/desk.js:19 msgid "Browser not supported" msgstr "Browser tidak didukung" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Brute Force Security" -msgstr "Brute Force Security" +msgstr "" -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Bucket Name" -msgstr "Nama Keranjang" - -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66 -msgid "Bucket {0} not found." +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" msgstr "" #. Name of a Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "Build" msgstr "" -#: workflow/doctype/workflow/workflow_list.js:18 +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 msgid "Build {0}" msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Bulk Actions" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:142 +#: frappe/core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" msgstr "Hapus Massal" -#: public/js/frappe/list/bulk_operations.js:256 +#: frappe/public/js/frappe/list/bulk_operations.js:321 msgid "Bulk Edit" msgstr "" -#: public/js/frappe/form/grid.js:1151 +#: frappe/public/js/frappe/form/grid.js:1188 msgid "Bulk Edit {0}" msgstr "Sunting Massal {0}" -#. Name of a DocType -#: desk/doctype/bulk_update/bulk_update.json -msgid "Bulk Update" -msgstr "Perbarui Massal" +#: frappe/desk/reportview.py:602 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:606 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Bulk Update" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Bulk Update" msgstr "Perbarui Massal" -#: model/workflow.py:253 +#: frappe/model/workflow.py:254 msgid "Bulk approval only support up to 500 documents." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:57 +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 msgid "Bulk operation is enqueued in background." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:70 +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 msgid "Bulk operations only support up to 500 documents." msgstr "" -#: model/workflow.py:243 +#: frappe/model/workflow.py:243 msgid "Bulk {0} is enqueued in background." msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Button" -msgstr "Tombol" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Button" -msgstr "Tombol" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Button" -msgstr "Tombol" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Gradients" -msgstr "Gradien Tombol" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Rounded Corners" -msgstr "Tombol Rounded Corners" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "Bayangan Tombol" - -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "By \"Naming Series\" field" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" msgstr "" -#: website/doctype/web_page/web_page.js:111 -#: website/doctype/web_page/web_page.js:118 +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 msgid "By default the title is used as meta title, adding a value here will override it." msgstr "Secara default, judul digunakan sebagai judul meta, menambahkan nilai di sini akan menimpanya." -#. Description of the 'Send Email for Successful Backup' (Check) field in -#. DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "By default, emails are only sent for failed backups." -msgstr "" - +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By fieldname" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "By fieldname" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By script" msgstr "" -#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "By script" -msgstr "" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" -msgstr "Bypass Restricted IP Address Periksa Jika Two Factor Auth Diaktifkan" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "Bypass Two Factor Auth untuk pengguna yang masuk dari IP Address terbatas" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "Bypass restricted IP Address check Jika Two Factor Auth Diaktifkan" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "C5E" msgstr "" -#: templates/print_formats/standard_macros.html:212 +#: frappe/templates/print_formats/standard_macros.html:220 msgid "CANCELLED" msgstr "DIBATALKAN" -#: public/js/frappe/views/communication.js:71 +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "CC" -msgstr "CC" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" msgid "CC" -msgstr "CC" +msgstr "" -#. Label of a Code field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "CC" -msgstr "CC" - -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "CMD" msgstr "" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "CSS" -msgstr "CSS" +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" -#. Label of a Code field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json msgid "CSS" -msgstr "CSS" +msgstr "" -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "CSS" -msgstr "CSS" - -#. Label of a Small Text field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "CSS Class" -msgstr "Kelas CSS" +msgstr "" #. Description of the 'Element Selector' (Data) field in DocType 'Form Tour #. Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "CSS selector for the element you want to highlight." msgstr "" -#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "CSV" -msgstr "CSV" - #. Option for the 'File Type' (Select) field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "CSV" -msgstr "CSV" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_label (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA Label" -msgstr "Label CTA" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_url (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA URL" -msgstr "URL CTA" +msgstr "" -#: sessions.py:31 +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 msgid "Cache Cleared" msgstr "Cache Dihapus" -#: public/js/frappe/ui/toolbar/awesome_bar.js:181 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 msgid "Calculate" msgstr "Menghitung" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Event" -msgid "Calendar" -msgstr "Kalender" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Calendar" -msgstr "Kalender" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Calendar" -msgstr "Kalender" +msgstr "" -#. Label of a Data field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Calendar Name" -msgstr "Nama Kalender" +msgstr "" #. Name of a DocType -#: desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 msgid "Calendar View" msgstr "Tampilan kalender" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Calendar View" -msgstr "Tampilan kalender" - -#: contacts/doctype/contact/contact.js:50 -msgid "Call" -msgstr "Panggilan Telpon" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json msgid "Call" msgstr "Panggilan Telpon" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action" -msgstr "Panggilan untuk bertindak" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "URL Ajakan Bertindak" +msgstr "" -#. Label of a Section Break field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Call to Action" msgstr "" -#. Label of a Small Text field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Message" -msgstr "Pesan Panggilan Balik" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Title" -msgstr "Judul Panggilan Balik" +msgstr "" -#: public/js/frappe/ui/capture.js:326 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" msgstr "Kamera" -#: public/js/frappe/utils/utils.js:1711 -#: website/report/website_analytics/website_analytics.js:39 +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "" +msgstr "Promosi" -#. Label of a Link field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Campaign" -msgstr "" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Campaign" -msgstr "" - -#. Label of a Small Text field in DocType 'Marketing Campaign' -#: website/doctype/marketing_campaign/marketing_campaign.json -msgctxt "Marketing Campaign" +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Campaign Description (Optional)" msgstr "" -#: custom/doctype/custom_field/custom_field.py:360 +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: core/doctype/doctype/doctype.py:1114 +#: frappe/core/doctype/doctype/doctype.py:1163 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" #. Description of the 'Apply User Permission On' (Link) field in DocType 'User #. Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#: frappe/core/doctype/user_type/user_type.json msgid "Can only list down the document types which has been linked to the User document type." msgstr "" -#: model/rename_doc.py:367 +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 msgid "Can't rename {0} to {1} because {0} doesn't exist." msgstr "" -#: core/doctype/doctype/doctype_list.js:113 -#: public/js/frappe/form/reminders.js:54 +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Batalkan" -#: public/js/frappe/list/list_view.js:1889 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Batalkan" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Cancel" -msgstr "Batalkan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Cancel" -msgstr "Batalkan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Cancel" -msgstr "Batalkan" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Cancel" -msgstr "Batalkan" - -#: public/js/frappe/ui/messages.js:68 +#: frappe/public/js/frappe/ui/messages.js:68 msgctxt "Secondary button in warning dialog" msgid "Cancel" msgstr "Batalkan" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Cancel" -msgstr "Batalkan" - -#: public/js/frappe/form/form.js:998 +#: frappe/public/js/frappe/form/form.js:979 msgid "Cancel All" msgstr "" -#: public/js/frappe/form/form.js:985 +#: frappe/public/js/frappe/form/form.js:966 msgid "Cancel All Documents" msgstr "Batalkan Semua Dokumen" -#: email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: public/js/frappe/list/list_view.js:1894 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Batalkan {0} dokumen?" -#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78 -#: public/js/frappe/ui/filters/filter.js:495 -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Cancelled" -msgstr "Dibatalkan" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Cancelled" -msgstr "Dibatalkan" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 msgid "Cancelled" msgstr "Dibatalkan" -#: core/doctype/deleted_document/deleted_document.py:51 +#: frappe/core/doctype/deleted_document/deleted_document.py:52 msgid "Cancelled Document restored as Draft" msgstr "Dokumen yang Dibatalkan dipulihkan sebagai Konsep" -#: public/js/frappe/form/save.js:13 +#: frappe/public/js/frappe/form/save.js:13 msgctxt "Freeze message while cancelling a document" msgid "Cancelling" msgstr "Membatalkan" -#: desk/form/linked_with.py:379 +#: frappe/desk/form/linked_with.py:381 msgid "Cancelling documents" msgstr "Membatalkan dokumen" -#: desk/doctype/bulk_update/bulk_update.py:94 +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 msgid "Cancelling {0}" msgstr "Membatalkan {0}" -#: core/doctype/prepared_report/prepared_report.py:244 +#: frappe/core/doctype/prepared_report/prepared_report.py:265 msgid "Cannot Download Report due to insufficient permissions" msgstr "" -#: client.py:461 +#: frappe/client.py:452 msgid "Cannot Fetch Values" msgstr "" -#: core/page/permission_manager/permission_manager.py:150 +#: frappe/core/page/permission_manager/permission_manager.py:156 msgid "Cannot Remove" msgstr "Tidak bisa Hapus" -#: model/base_document.py:1034 +#: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" msgstr "" -#: core/doctype/file/file.py:574 +#: frappe/core/doctype/file/file.py:621 msgid "Cannot access file path {0}" msgstr "" -#: public/js/workflow_builder/utils.js:183 +#: frappe/public/js/workflow_builder/utils.js:183 msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: workflow/doctype/workflow/workflow.py:112 +#: frappe/workflow/doctype/workflow/workflow.py:109 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}" -#: public/js/frappe/list/bulk_operations.js:229 +#: frappe/public/js/frappe/list/bulk_operations.js:294 msgid "Cannot cancel {0}." msgstr "" -#: model/document.py:838 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: model/document.py:852 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" -#: public/js/workflow_builder/utils.js:170 +#: frappe/public/js/workflow_builder/utils.js:170 msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: workflow/doctype/workflow/workflow.py:101 +#: frappe/workflow/doctype/workflow/workflow.py:98 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Tidak dapat mengubah keadaan Dibatalkan Dokumen. Transisi baris {0}" -#: core/doctype/doctype/doctype.py:1104 +#: frappe/core/doctype/doctype/doctype.py:1153 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" -#: core/doctype/communication/communication.py:193 +#: frappe/core/doctype/communication/communication.py:169 msgid "Cannot create a {0} against a child document: {1}" msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}" -#: desk/doctype/workspace/workspace.py:250 +#: frappe/desk/doctype/workspace/workspace.py:272 msgid "Cannot create private workspace of other users" msgstr "" -#: core/doctype/file/file.py:151 +#: frappe/core/doctype/file/file.py:153 msgid "Cannot delete Home and Attachments folders" msgstr "Tidak dapat menghapus Rumah dan Lampiran folder" -#: model/delete_doc.py:367 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Tidak dapat menghapus atau membatalkan karena {0} {1} dikaitkan dengan {2} {3} {4}" -#: desk/doctype/workspace/workspace.py:417 -msgid "Cannot delete private workspace of other users" -msgstr "" - -#: desk/doctype/workspace/workspace.py:410 -msgid "Cannot delete public workspace without Workspace Manager role" -msgstr "" - -#: custom/doctype/customize_form/customize_form.js:313 +#: frappe/custom/doctype/customize_form/customize_form.js:369 msgid "Cannot delete standard action. You can hide it if you want" msgstr "Tidak dapat menghapus tindakan standar. Anda bisa menyembunyikannya jika mau" -#: custom/doctype/customize_form/customize_form.js:328 +#: frappe/custom/doctype/customize_form/customize_form.js:391 msgid "Cannot delete standard document state." msgstr "" -#: custom/doctype/customize_form/customize_form.js:276 +#: frappe/custom/doctype/customize_form/customize_form.js:321 msgid "Cannot delete standard field {0}. You can hide it instead." msgstr "" -#: custom/doctype/customize_form/customize_form.js:298 +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 msgid "Cannot delete standard link. You can hide it if you want" msgstr "Tidak dapat menghapus link standar. Anda bisa menyembunyikannya jika mau" -#: custom/doctype/customize_form/customize_form.js:268 +#: frappe/custom/doctype/customize_form/customize_form.js:313 msgid "Cannot delete system generated field {0}. You can hide it instead." msgstr "" -#: public/js/frappe/list/bulk_operations.js:171 +#: frappe/public/js/frappe/list/bulk_operations.js:215 msgid "Cannot delete {0}" msgstr "Tidak dapat menghapus {0}" -#: utils/nestedset.py:302 +#: frappe/utils/nestedset.py:299 msgid "Cannot delete {0} as it has child nodes" msgstr "Tidak dapat menghapus {0} karena memiliki node anak" -#: desk/doctype/dashboard/dashboard.py:49 +#: frappe/desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" msgstr "" -#: email/doctype/notification/notification.py:120 +#: frappe/email/doctype/notification/notification.py:192 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Tidak dapat mengedit Pemberitahuan Standar. Untuk mengedit, nonaktifkan ini dan gandakan" -#: desk/doctype/dashboard_chart/dashboard_chart.py:388 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:68 +#: frappe/core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "tidak dapat mengedit laporan standar. Silakan menggandakan dan membuat laporan baru" -#: model/document.py:858 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Tidak dapat mengedit dokumen dibatalkan" -#: desk/doctype/dashboard_chart/dashboard_chart.js:378 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" msgstr "Tidak dapat mengedit filter untuk bagan standar" -#: client.py:166 +#: frappe/desk/doctype/number_card/number_card.js:277 +#: frappe/desk/doctype/number_card/number_card.js:364 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 msgid "Cannot edit standard fields" msgstr "Tidak dapat mengedit bidang standar" -#: automation/doctype/auto_repeat/auto_repeat.py:124 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: core/doctype/file/file.py:249 +#: frappe/core/doctype/file/file.py:252 msgid "Cannot find file {} on disk" msgstr "" -#: core/doctype/file/file.py:520 +#: frappe/core/doctype/file/file.py:561 msgid "Cannot get file contents of a Folder" msgstr "" -#: printing/page/print/print.js:817 +#: frappe/printing/page/print/print.js:844 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal." -#: model/document.py:926 +#: frappe/public/js/frappe/form/grid.js:1132 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Tidak dapat menghubungkan dokumen dibatalkan: {0}" -#: model/mapper.py:184 +#: frappe/model/mapper.py:175 msgid "Cannot map because following condition fails:" msgstr "" -#: core/doctype/data_import/importer.py:924 +#: frappe/core/doctype/data_import/importer.py:971 msgid "Cannot match column {0} with any field" msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun" -#: public/js/frappe/form/grid_row.js:172 +#: frappe/public/js/frappe/form/grid_row.js:175 msgid "Cannot move row" msgstr "Tidak dapat memindahkan baris" -#: public/js/frappe/views/reports/report_view.js:865 +#: frappe/public/js/frappe/views/reports/report_view.js:927 msgid "Cannot remove ID field" msgstr "Tidak dapat menghapus bidang ID" -#: email/doctype/notification/notification.py:136 -msgid "Cannot set Notification on Document Type {0}" -msgstr "Tidak dapat mengatur Pemberitahuan pada Jenis Dokumen {0}" +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" -#: core/doctype/docshare/docshare.py:69 +#: frappe/email/doctype/notification/notification.py:209 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:67 msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" msgstr "" -#: public/js/frappe/list/bulk_operations.js:226 +#: frappe/public/js/frappe/list/bulk_operations.js:291 msgid "Cannot submit {0}." msgstr "" -#: desk/doctype/workspace/workspace.py:351 -msgid "Cannot update private workspace of other users" -msgstr "" - -#: desk/doctype/bulk_update/bulk_update.js:26 -#: public/js/frappe/list/bulk_operations.js:301 +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 msgid "Cannot update {0}" msgstr "Tidak dapat memperbarui {0}" -#: model/db_query.py:1125 +#: frappe/model/db_query.py:1126 msgid "Cannot use sub-query in order by" msgstr "tidak bisa menggunakan sub-query dalam rangka oleh" -#: model/db_query.py:1143 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" -#: public/js/frappe/list/bulk_operations.js:232 +#: frappe/public/js/frappe/list/bulk_operations.js:297 msgid "Cannot {0} {1}." msgstr "" -#: utils/password_strength.py:185 +#: frappe/utils/password_strength.py:181 msgid "Capitalization doesn't help very much." msgstr "Kapitalisasi tidak membantu sangat banyak." -#: public/js/frappe/ui/capture.js:286 +#: frappe/public/js/frappe/ui/capture.js:294 msgid "Capture" msgstr "" -#. Label of a Link field in DocType 'Number Card Link' -#: desk/doctype/number_card_link/number_card_link.json -msgctxt "Number Card Link" +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Card" -msgstr "Kartu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Card Break" msgstr "" -#: public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Label Kartu" -#: public/js/frappe/widgets/widget_dialog.js:227 +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 msgid "Card Links" msgstr "" -#. Label of a Table field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Cards" -msgstr "Kartu-kartu" +msgstr "" -#: public/js/frappe/views/interaction.js:72 +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json msgid "Category" msgstr "Kategori" -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Category" -msgstr "Kategori" - -#. Label of a Link field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Category" -msgstr "Kategori" - -#. Label of a Text field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Category Description" -msgstr "Kategori Deskripsi" +msgstr "" -#. Label of a Data field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Category Name" -msgstr "Kategori Nama" - -#: utils/data.py:1491 -msgid "Cent" -msgstr "Sen" +msgstr "" #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Center" -msgstr "Pusat" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Center" -msgstr "Pusat" +msgstr "" -#: core/report/transaction_log_report/transaction_log_report.py:82 +#: frappe/core/page/permission_manager/permission_manager_help.html:16 +msgid "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." +msgstr "" + +#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 msgid "Chain Integrity" msgstr "Integritas Rantai" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Chaining Hash" -msgstr "Chaining Hash" +msgstr "" -#: tests/test_translate.py:98 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 msgid "Change" msgstr "Perubahan" -#: tests/test_translate.py:99 +#: frappe/tests/test_translate.py:112 msgctxt "Coins" msgid "Change" msgstr "Perubahan" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "" + +#. Label of the label (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Change Label (via Custom Translation)" -msgstr "Ganti Label (via Khusus Translation)" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Change Password" -msgstr "Ganti kata sandi" +msgstr "" -#: public/js/print_format_builder/print_format_builder.bundle.js:27 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 msgid "Change Print Format" msgstr "" -#: desk/page/user_profile/user_profile_controller.js:51 -#: desk/page/user_profile/user_profile_controller.js:59 -msgid "Change User" -msgstr "Ganti pengguna" - #. Description of the 'Update Series Counter' (Section Break) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"Change the starting / current sequence number of an existing series.
    \n" -"\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
    \n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " msgstr "" -#: email/doctype/email_domain/email_domain.js:5 +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.js:5 msgid "Changing any setting will reflect on all the email accounts associated with this domain." msgstr "" -#: core/doctype/system_settings/system_settings.js:62 +#: frappe/core/doctype/system_settings/system_settings.js:67 msgid "Changing rounding method on site with data can result in unexpected behaviour." msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Channel" -msgstr "Saluran" +msgstr "" -#. Label of a Link field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Chart" msgstr "Grafik" -#. Label of a Code field in DocType 'Dashboard Settings' -#: desk/doctype/dashboard_settings/dashboard_settings.json -msgctxt "Dashboard Settings" +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Chart Configuration" -msgstr "Konfigurasi Grafik" +msgstr "" -#. Label of a Data field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" -msgstr "Nama Bagan" +msgstr "" -#. Label of a Link field in DocType 'Workspace Chart' -#: desk/doctype/workspace_chart/workspace_chart.json -msgctxt "Workspace Chart" -msgid "Chart Name" -msgstr "Nama Bagan" - -#. Label of a Code field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Options" -msgstr "Opsi Bagan" +msgstr "" -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Chart Options" -msgstr "Opsi Bagan" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Source" -msgstr "Sumber Bagan" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:479 +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:505 msgid "Chart Type" msgstr "Jenis bagan" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Chart Type" -msgstr "Jenis bagan" - -#. Label of a Table field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Charts" -msgstr "Grafik" - -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Charts" -msgstr "Grafik" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Chat" -msgstr "Obrolan" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Check" -msgstr "Memeriksa" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Check" -msgstr "Memeriksa" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Check" -msgstr "Memeriksa" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Check" -msgstr "Memeriksa" +msgstr "" -#: integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:95 msgid "Check Request URL" msgstr "Periksa Permintaan URL" -#: email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:442 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 msgid "Check the Error Log for more information: {0}" msgstr "Periksa Log Kesalahan untuk informasi lebih lanjut: {0}" -#: website/doctype/website_settings/website_settings.js:147 +#: frappe/website/doctype/website_settings/website_settings.js:147 msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." msgstr "Centang ini jika Anda tidak ingin pengguna mendaftar akun di situs Anda. Pengguna tidak akan mendapatkan akses meja kecuali Anda menyediakannya secara eksplisit." #. Description of the 'User must always select' (Check) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." -msgstr "Periksa ini jika Anda ingin untuk memaksa pengguna untuk memilih seri sebelum menyimpan. Tidak akan ada default jika Anda memeriksa ini." - -#: email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." msgstr "" -#: public/js/frappe/desk.js:214 +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Memeriksa satu saat" -#: website/doctype/website_settings/website_settings.js:140 +#: frappe/website/doctype/website_settings/website_settings.js:140 msgid "Checking this will enable tracking page views for blogs, web pages, etc." msgstr "Memeriksa ini akan mengaktifkan pelacakan tampilan halaman untuk blog, halaman web, dll." #. Description of the 'Hide Custom DocTypes and Reports' (Check) field in #. DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "Memeriksa ini akan menyembunyikan jenis dokumen dan kartu laporan khusus di bagian Tautan" +msgstr "" -#: website/doctype/web_page/web_page.js:78 +#: frappe/website/doctype/web_page/web_page.js:78 msgid "Checking this will publish the page on your website and it'll be visible to everyone." msgstr "Memeriksa ini akan menerbitkan halaman di situs web Anda dan akan terlihat oleh semua orang." -#: website/doctype/web_page/web_page.js:104 +#: frappe/website/doctype/web_page/web_page.js:104 msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Memeriksa ini akan menampilkan area teks tempat Anda dapat menulis javascript khusus yang akan berjalan di halaman ini." -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the checksum_version (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Checksum Version" -msgstr "Versi Checksum" +msgstr "" -#: www/list.py:85 +#: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Child Doctype" msgstr "" -#: core/doctype/doctype/doctype.py:1588 +#: frappe/core/doctype/doctype/doctype.py:1647 msgid "Child Table {0} for field {1}" msgstr "" -#: core/doctype/doctype/doctype_list.js:37 -msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" - #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:52 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" -#: public/js/frappe/widgets/widget_dialog.js:614 +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Pilih Kartu yang Ada atau buat Kartu Baru" -#: public/js/frappe/views/workspace/workspace.js:1385 +#: frappe/public/js/frappe/views/workspace/workspace.js:571 msgid "Choose a block or continue typing" msgstr "" -#: public/js/frappe/form/controls/color.js:5 +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 msgid "Choose a color" msgstr "" -#: public/js/frappe/form/controls/icon.js:5 +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 msgid "Choose an icon" msgstr "" #. Description of the 'Two Factor Authentication method' (Select) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Choose authentication method to be used by all users" -msgstr "Pilih metode otentikasi yang akan digunakan oleh semua pengguna" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "City" msgstr "Kota" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "City/Town" -msgstr "Kota / Kota" +msgstr "" -#: core/doctype/recorder/recorder_list.js:12 +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Clear" msgstr "Bersih" -#: public/js/frappe/views/communication.js:325 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:98 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/ui/keyboard.js:275 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" msgstr "Bersihkan Cache dan Reload" -#: core/doctype/error_log/error_log_list.js:12 +#: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" msgstr "Log Kesalahan jelas" -#. Label of a Int field in DocType 'Logs To Clear' -#: core/doctype/logs_to_clear/logs_to_clear.json -msgctxt "Logs To Clear" +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Clear Logs After (days)" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:144 +#: frappe/core/doctype/user_permission/user_permission_list.js:144 msgid "Clear User Permissions" msgstr "Hapus Izin Pengguna" -#: public/js/frappe/views/communication.js:326 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" -#: website/doctype/web_page/web_page.py:214 +#: frappe/website/doctype/web_page/web_page.py:215 msgid "Clearing end date, as it cannot be in the past for published pages." msgstr "Menghapus tanggal akhir, karena tidak boleh di masa lalu untuk halaman yang dipublikasikan." -#: website/doctype/web_form/templates/web_form.html:144 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Click here" msgstr "" -#: email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Klik di sini untuk memverifikasi" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +msgid "Click on a file to select it." +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:46 -msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." -msgstr "Klik pada Otorisasi Google Drive Access untuk mengotorisasi Google Drive Access." - -#: templates/emails/login_with_email_link.html:19 +#: frappe/templates/emails/login_with_email_link.html:19 msgid "Click on the button to log in to {0}" msgstr "" -#: templates/emails/data_deletion_approval.html:2 +#: frappe/templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" msgstr "Klik tautan di bawah untuk menyetujui permintaan" -#: templates/emails/new_user.html:7 +#: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" msgstr "Klik link di bawah ini untuk melengkapi pendaftaran Anda dan mengatur sandi baru" -#: templates/emails/download_data.html:3 +#: frappe/templates/emails/download_data.html:3 msgid "Click on the link below to download your data" msgstr "Klik tautan di bawah untuk mengunduh data Anda" -#: templates/emails/delete_data_confirmation.html:4 +#: frappe/templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" msgstr "Klik tautan di bawah untuk memverifikasi permintaan Anda" -#: integrations/doctype/google_calendar/google_calendar.py:101 -#: integrations/doctype/google_contacts/google_contacts.py:40 -#: integrations/doctype/google_drive/google_drive.py:52 -#: website/doctype/website_settings/website_settings.py:161 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 msgid "Click on {0} to generate Refresh Token." msgstr "Klik pada {0} untuk menghasilkan Refresh Token." -#: email/doctype/auto_email_report/auto_email_report.js:96 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klik tabel untuk mengedit" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:402 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:711 +msgid "Click to sort by {0}" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Clicked" -msgstr "Diklik" +msgstr "" -#. Label of a Link field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the client (Link) field in DocType 'OAuth Authorization Code' +#. Label of the client (Link) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Client" -msgstr "Client (Nasabah)" +msgstr "" -#. Label of a Link field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Client" -msgstr "Client (Nasabah)" - -#. Label of a Section Break field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Client Code" -msgstr "Kode Klien" +msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Credentials" -msgstr "Kredensial klien" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client Credentials" -msgstr "Kredensial klien" - -#. Label of a Data field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" -msgstr "ID klien" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client ID" -msgstr "ID klien" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Client Id" msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the client_information (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Information" -msgstr "Informasi klien" +msgstr "" -#. Name of a DocType -#: custom/doctype/client_script/client_script.json -#: website/doctype/web_page/web_page.js:103 -msgid "Client Script" -msgstr "Naskah Klien" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Client Script" +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 msgid "Client Script" msgstr "Naskah Klien" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Code field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Password field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" -msgstr "Rahasia Klien" +msgstr "" -#. Label of a Password field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "Client Secret" -msgstr "Rahasia Klien" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" -#. Label of a Password field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client Secret" -msgstr "Rahasia Klien" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" -msgstr "URL klien" +msgstr "" -#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23 -#: public/js/frappe/ui/messages.js:245 +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 msgid "Close" msgstr "Tutup" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Close Condition" -msgstr "Kondisi Tutup" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json msgid "Closed" msgstr "Tertutup" -#: templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Cmd+Enter to add comment" msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" -msgid "Code" -msgstr "Kode" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Code" -msgstr "Kode" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Code" -msgstr "Kode" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Code" -msgstr "Kode" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Code" -msgstr "Kode" +msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code Challenge" msgstr "" -#. Label of a Select field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code challenge method" msgstr "" -#: public/js/frappe/form/form_tour.js:268 -#: public/js/frappe/widgets/base_widget.js:157 +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Collapse" msgstr "Jatuh" -#: public/js/frappe/form/controls/code.js:146 +#: frappe/public/js/frappe/form/controls/code.js:184 msgctxt "Shrink code field." msgid "Collapse" msgstr "Jatuh" -#: public/js/frappe/views/treeview.js:121 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Perkecil Semua" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible" -msgstr "Collapsible" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Collapsible" -msgstr "Collapsible" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Collapsible" -msgstr "Collapsible" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "Collapsible Tergantung Pada" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Collapsible Depends On" -msgstr "Collapsible Tergantung Pada" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" msgstr "" -#. Name of a DocType -#: public/js/frappe/views/reports/query_report.js:1140 -#: public/js/frappe/widgets/widget_dialog.js:505 -#: public/js/frappe/widgets/widget_dialog.js:657 -#: website/doctype/color/color.json -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Color' -#: website/doctype/color/color.json -msgctxt "Color" -msgid "Color" -msgstr "Warna" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Color" -msgstr "Warna" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Dashboard Chart Field' -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json -msgctxt "Dashboard Chart Field" -msgid "Color" -msgstr "Warna" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Color" -msgstr "Warna" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Color" -msgstr "Warna" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Color" -msgstr "Warna" - -#. Label of a Select field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Color" -msgstr "Warna" - +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Color" msgstr "Warna" -#. Label of a Color field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Color" -msgstr "Warna" +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" -#: desk/doctype/kanban_board/kanban_board.py:85 +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 msgid "Column {0} already exist." msgstr "Kolom {0} sudah ada." -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Column Break" -msgstr "Kolom Istirahat" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Column Break" -msgstr "Kolom Istirahat" +msgstr "" -#: core/doctype/data_export/exporter.py:140 +#: frappe/core/doctype/data_export/exporter.py:140 msgid "Column Labels:" msgstr "Kolom Labels:" -#: core/doctype/data_export/exporter.py:25 +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Column Name" msgstr "Kolom Nama" -#. Label of a Data field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Column Name" -msgstr "Kolom Nama" - -#: desk/doctype/kanban_board/kanban_board.py:44 +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 msgid "Column Name cannot be empty" msgstr "Nama kolom tidak boleh kosong" -#: public/js/frappe/form/grid_row.js:593 +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:645 msgid "Column width cannot be zero." msgstr "" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Columns" -msgstr "kolom" +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Columns" -msgstr "kolom" +msgstr "" -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Columns" -msgstr "kolom" - -#. Label of a Table field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Columns" -msgstr "kolom" - -#. Label of a Section Break field in DocType 'Report' -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Columns" -msgstr "kolom" - -#. Label of a HTML Editor field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Columns / Fields" -msgstr "Kolom / Bidang" +msgstr "" -#: public/js/frappe/views/kanban/kanban_view.js:394 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Kolom berdasarkan" -#: integrations/doctype/oauth_client/oauth_client.py:43 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombinasi Tipe Hibah ( {0} ) dan Tipe Respon ( {1} ) tidak diperbolehkan" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Comm10E" msgstr "" #. Name of a DocType -#: core/doctype/comment/comment.json -#: public/js/frappe/form/sidebar/assign_to.js:210 -#: templates/includes/comments/comments.html:34 -msgid "Comment" -msgstr "Komentar" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 msgid "Comment" msgstr "Komentar" -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Comment" -msgstr "Komentar" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment By" -msgstr "Komentar By" +msgstr "" -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment Email" -msgstr "Email Komentar" +msgstr "" -#. Label of a Select field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment Type" -msgstr "Komentar Type" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Comment Type" -msgstr "Komentar Type" - -#: desk/form/utils.py:58 +#: frappe/desk/form/utils.py:58 msgid "Comment can only be edited by the owner" msgstr "Komentar hanya bisa diedit oleh pemiliknya" -#. Label of a Int field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the comment_limit (Int) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit" msgstr "" #. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit per hour" msgstr "" -#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206 -#: public/js/frappe/model/model.js:125 -#: website/doctype/web_form/templates/web_form.html:119 +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "" + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:122 msgid "Comments" msgstr "Komentar" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Comments and Communications will be associated with this linked document" -msgstr "Komentar dan Komunikasi akan terkait dengan dokumen terkait ini" +msgstr "" -#: templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:38 msgid "Comments cannot have links or email addresses" msgstr "Komentar tidak dapat memiliki tautan atau alamat email" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Commercial Rounding" msgstr "" -#. Label of a Check field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Commit" -msgstr "Melakukan" +msgstr "" -#. Label of a Check field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json msgid "Committed" msgstr "" -#: utils/password_strength.py:180 +#: frappe/utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." msgstr "Nama-nama umum dan nama keluarga mudah ditebak." #. Name of a DocType -#: core/doctype/communication/communication.json tests/test_translate.py:35 -#: tests/test_translate.py:103 -msgid "Communication" -msgstr "Komunikasi" - #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Communication" -msgstr "Komunikasi" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Communication" -msgstr "Komunikasi" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Communication" -msgstr "Komunikasi" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 msgid "Communication" msgstr "Komunikasi" #. Name of a DocType -#: core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/communication_link/communication_link.json msgid "Communication Link" msgstr "Tautan Komunikasi" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Communication" +#: frappe/core/workspace/build/build.json msgid "Communication Logs" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Communication Type" -msgstr "komunikasi Jenis" +msgstr "" -#: desk/page/leaderboard/leaderboard.js:112 -msgid "Company" -msgstr "Perusahaan" +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" #. Name of a DocType -#: website/doctype/company_history/company_history.json www/about.html:29 +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 msgid "Company History" msgstr "Sejarah Perusahaan" -#. Label of a Text Editor field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Company Introduction" -msgstr "Pendahuluan Perusahaan" +msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Company Name" msgstr "Nama Perusahaan" -#: core/doctype/server_script/server_script.js:14 -#: custom/doctype/client_script/client_script.js:54 -#: public/js/frappe/utils/diffview.js:27 +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: core/doctype/server_script/server_script.py:134 +#: frappe/core/doctype/server_script/server_script.py:157 msgid "Compilation warning" msgstr "" -#: website/doctype/website_theme/website_theme.py:125 +#: frappe/website/doctype/website_theme/website_theme.py:123 msgid "Compiled Successfully" msgstr "Berhasil dikompilasi" -#: www/complete_signup.html:21 -msgid "Complete" -msgstr "Lengkap" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 msgid "Complete" msgstr "Lengkap" -#: public/js/frappe/form/sidebar/assign_to.js:176 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 msgid "Complete By" msgstr "Lengkap Dengan" -#: core/doctype/user/user.py:438 templates/emails/new_user.html:10 +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Pendaftaran Lengkap" -#: utils/goal.py:117 -msgid "Completed" -msgstr "Selesai" +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Completed" -msgstr "Selesai" - -#. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Completed" -msgstr "Selesai" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Completed" -msgstr "Selesai" - #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Completed" -msgstr "Selesai" - +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' #. Option for the 'Status' (Select) field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed" msgstr "Selesai" -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the completed_by_role (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By Role" msgstr "" -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By User" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#: frappe/website/doctype/web_template/web_template.json msgid "Component" -msgstr "Komponen" +msgstr "" -#: public/js/frappe/views/inbox/inbox_view.js:184 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 msgid "Compose Email" msgstr "Menulis Surel" -#. Label of a Small Text field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Select field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Data field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Small Text field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a HTML field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Condition Description" +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" msgstr "" -#. Label of a JSON field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Condition JSON" msgstr "" -#. Label of a Table field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Conditions" -msgstr "Kondisi" +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "" -#. Label of a Section Break field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Conditions" -msgstr "Kondisi" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Configuration" msgstr "" -#: public/js/frappe/views/reports/report_view.js:461 +#: frappe/public/js/frappe/views/reports/report_view.js:487 msgid "Configure Chart" msgstr "Konfigurasikan Bagan" -#: public/js/frappe/form/grid_row.js:381 +#: frappe/public/js/frappe/form/grid_row.js:390 msgid "Configure Columns" msgstr "" +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "" + #. Description of the 'Amended Documents' (Section Break) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"Configure how amended documents will be named.
    \n" -"\n" -"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n" -"\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
    \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: www/update-password.html:30 +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Menegaskan" -#: public/js/frappe/ui/messages.js:31 +#: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Menegaskan" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100 +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:173 +#: frappe/core/doctype/user/user.js:191 msgid "Confirm New Password" msgstr "Konfirmasi password baru" -#: www/update-password.html:24 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" -#: templates/emails/data_deletion_approval.html:6 -#: templates/emails/delete_data_confirmation.html:7 +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" msgstr "Konfirmasikan Permintaan" -#: email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Konfirmasi Email Anda" - -#. Label of a Link field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" -msgstr "Template Email Konfirmasi" +msgstr "" -#: email/doctype/newsletter/newsletter.py:381 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Dikonfirmasi" -#: public/js/frappe/widgets/onboarding_widget.js:530 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:25 msgid "Connect to {}" msgstr "" +#. Label of the connected_app (Link) field in DocType 'Email Account' #. Name of a DocType -#: integrations/doctype/connected_app/connected_app.json +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Connected App" msgstr "" -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Connected App" -msgstr "" - -#. Label of a Link field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Connected App" -msgstr "" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Connected User" msgstr "" -#: public/js/frappe/form/print_utils.js:95 -#: public/js/frappe/form/print_utils.js:119 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Terhubung ke Baki QZ!" -#: public/js/frappe/request.js:34 +#: frappe/public/js/frappe/request.js:36 msgid "Connection Lost" msgstr "" -#: templates/pages/integrations/gcalendar-success.html:3 +#: frappe/templates/pages/integrations/gcalendar-success.html:3 msgid "Connection Success" msgstr "Sukses Koneksi" -#: public/js/frappe/dom.js:433 +#: frappe/public/js/frappe/dom.js:446 msgid "Connection lost. Some features might not work." msgstr "Koneksi terputus. Beberapa fitur mungkin tidak bekerja." -#: public/js/frappe/form/dashboard.js:54 +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 msgid "Connections" msgstr "" -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Connections" -msgstr "" - -#. Label of a Tab Break field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Connections" -msgstr "" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Connections" -msgstr "" - -#. Label of a Code field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Console" -msgstr "Menghibur" +msgstr "" #. Name of a DocType -#: desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/console_log/console_log.json msgid "Console Log" msgstr "Log Konsol" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Constraints" msgstr "" #. Name of a DocType -#: contacts/doctype/contact/contact.json -#: core/doctype/communication/communication.js:113 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 msgid "Contact" msgstr "Kontak" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Contact" -msgstr "Kontak" - -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" -msgstr "Kontak Detail" +msgstr "" #. Name of a DocType -#: contacts/doctype/contact_email/contact_email.json +#: frappe/contacts/doctype/contact_email/contact_email.json msgid "Contact Email" msgstr "Email Kontak" -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Contact Numbers" -msgstr "Nomor kontak" +msgstr "" #. Name of a DocType -#: contacts/doctype/contact_phone/contact_phone.json +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Contact Phone" msgstr "Hubungi Telepon" -#: integrations/doctype/google_contacts/google_contacts.py:288 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 msgid "Contact Synced with Google Contacts." msgstr "Kontak Disinkronkan dengan Kontak Google." -#. Name of a DocType -#: website/doctype/contact_us_settings/contact_us_settings.json -msgid "Contact Us Settings" -msgstr "Hubungi Kami Settings" +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" +#. Name of a DocType #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json msgid "Contact Us Settings" msgstr "Hubungi Kami Settings" #. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us #. Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." -msgstr "Opsi kontak, seperti \"Penjualan Query, Dukungan Query\" dll masing-masing pada baris baru atau dipisahkan dengan koma." +msgstr "" -#. Label of a Text Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Blog Post' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1745 +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 msgid "Content" -msgstr "Isi Halaman" +msgstr "" -#. Label of a HTML Editor field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Text Editor field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Text Editor field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Tab Break field in DocType 'Web Page' -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Long Text field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a HTML Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Content (HTML)" -msgstr "Konten (HTML)" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Content (Markdown)" -msgstr "Konten (penurunan harga)" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Content Hash" -msgstr "Content Hash" +msgstr "" -#. Label of a Select field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_type (Select) field in DocType 'Blog Post' +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.json msgid "Content Type" -msgstr "Tipe Konten" +msgstr "" -#. Label of a Select field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Content Type" -msgstr "Tipe Konten" - -#. Label of a Select field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Content Type" -msgstr "Tipe Konten" - -#: desk/doctype/workspace/workspace.py:79 +#: frappe/desk/doctype/workspace/workspace.py:86 msgid "Content data shoud be a list" msgstr "" -#: website/doctype/web_page/web_page.js:91 +#: frappe/website/doctype/web_page/web_page.js:91 msgid "Content type for building the page" msgstr "Jenis konten untuk membangun halaman" -#. Label of a Data field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json msgid "Context" -msgstr "Konteks" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Context" -msgstr "Konteks" - -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Context Script" -msgstr "Skrip Konteks" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:209 -#: public/js/frappe/widgets/onboarding_widget.js:237 -#: public/js/frappe/widgets/onboarding_widget.js:277 -#: public/js/frappe/widgets/onboarding_widget.js:317 -#: public/js/frappe/widgets/onboarding_widget.js:366 -#: public/js/frappe/widgets/onboarding_widget.js:388 -#: public/js/frappe/widgets/onboarding_widget.js:428 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 msgid "Continue" msgstr "Terus" -#. Label of a Check field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json msgid "Contributed" -msgstr "Berkontribusi" - -#. Label of a Data field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Contribution Document Name" -msgstr "Nama Dokumen Kontribusi" - -#. Label of a Select field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Contribution Status" -msgstr "Status Kontribusi" - -#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. " msgstr "" -#: public/js/frappe/utils/utils.js:1030 +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Disalin ke papan klip." -#: public/js/frappe/request.js:615 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:620 msgid "Copy error to clipboard" msgstr "" -#: public/js/frappe/form/toolbar.js:388 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" -msgstr "Hak cipta" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:118 +#: frappe/custom/doctype/customize_form/customize_form.py:122 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes tidak dapat dikustomisasi." -#: desk/doctype/global_search_settings/global_search_settings.py:35 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Modul Inti {0} tidak dapat dicari dalam Pencarian Global." -#: email/smtp.py:77 +#: frappe/printing/page/print/print.js:620 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "Tidak dapat terhubung ke server email keluar" -#: model/document.py:922 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Tidak dapat menemukan {0}" -#: core/doctype/data_import/importer.py:886 +#: frappe/core/doctype/data_import/importer.py:933 msgid "Could not map column {0} to field {1}" msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}" -#: public/js/frappe/web_form/web_form.js:355 +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up: " +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:359 msgid "Couldn't save, please check the data you have entered" msgstr "Tidak dapat menyimpan, harap periksa data yang telah Anda masukkan" -#: public/js/frappe/ui/group_by/group_by.js:19 -#: public/js/frappe/ui/group_by/group_by.js:318 -msgid "Count" -msgstr "Menghitung" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Count" -msgstr "Menghitung" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Menghitung" -#: public/js/frappe/widgets/widget_dialog.js:499 +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 msgid "Count Customizations" msgstr "Hitung Kustomisasi" -#: public/js/frappe/widgets/widget_dialog.js:484 +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 msgid "Count Filter" msgstr "Hitung Filter" -#. Label of a Section Break field in DocType 'Workspace Shortcut' -#. Label of a Code field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Count Filter" -msgstr "Hitung Filter" +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "" -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Counter" -msgstr "Melawan" +msgstr "" +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' #. Name of a DocType -#: geo/doctype/country/country.json +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Negara" -#. Label of a Link field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Country" -msgstr "Negara" - -#. Label of a Link field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" -msgid "Country" -msgstr "Negara" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Country" -msgstr "Negara" - -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Country" -msgstr "Negara" - -#: utils/__init__.py:116 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Country Name" -msgstr "Nama Negara" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "County" -msgstr "daerah" +msgstr "" -#: public/js/frappe/utils/number_systems.js:23 -#: public/js/frappe/utils/number_systems.js:45 +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" msgstr "" -#: core/doctype/communication/communication.js:117 -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 -#: public/js/frappe/form/reminders.js:49 -#: public/js/frappe/views/file/file_view.js:112 -#: public/js/frappe/views/interaction.js:18 -#: public/js/frappe/views/reports/query_report.js:1172 -#: public/js/frappe/views/workspace/workspace.js:1217 -#: workflow/page/workflow_builder/workflow_builder.js:46 +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Buat" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Create" -msgstr "Buat" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Create" -msgstr "Buat" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Create" -msgstr "Buat" - -#: core/doctype/doctype/doctype_list.js:85 +#: frappe/core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" msgstr "" -#. Title of an Onboarding Step -#: website/onboarding_step/create_blogger/create_blogger.json -msgid "Create Blogger" +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" msgstr "" -#: public/js/frappe/views/reports/query_report.js:186 -#: public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Buat Kartu" -#: public/js/frappe/views/reports/query_report.js:284 -#: public/js/frappe/views/reports/query_report.js:1099 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Buat Bagan" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Create Contacts from Incoming Emails" -msgstr "Buat Kontak dari Email Masuk" - -#. Title of an Onboarding Step -#: custom/onboarding_step/custom_field/custom_field.json -msgid "Create Custom Fields" +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:925 -msgid "Create Duplicate" +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Create Entry" -msgstr "Buat Entri" +msgstr "" -#. Label of a Check field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "" + +#. Label of the create_log (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Create Log" -msgstr "Buat Log" +msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41 -#: public/js/frappe/views/treeview.js:361 -#: workflow/page/workflow_builder/workflow_builder.js:41 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 msgid "Create New" msgstr "Buat New" -#: core/doctype/doctype/doctype_list.js:83 +#: frappe/public/js/frappe/list/list_view.js:509 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "Buat New" + +#: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" msgstr "" -#: public/js/frappe/list/list_view_select.js:204 +#: frappe/public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:251 +#: frappe/core/doctype/user/user.js:270 msgid "Create User Email" msgstr "Buat Email Pengguna" -#: public/js/frappe/views/workspace/workspace.js:465 -msgid "Create Workspace" +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" msgstr "" -#: public/js/frappe/form/reminders.js:9 +#: frappe/public/js/frappe/form/reminders.js:9 msgid "Create a Reminder" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:521 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 msgid "Create a new ..." msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:156 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" msgstr "Buat catatan baru" -#: public/js/frappe/form/controls/link.js:291 -#: public/js/frappe/form/controls/link.js:293 -#: public/js/frappe/form/link_selector.js:139 -#: public/js/frappe/list/list_view.js:470 +#: frappe/public/js/frappe/form/controls/link.js:311 +#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Buat baru {0}" -#: www/login.html:142 +#: frappe/www/login.html:162 msgid "Create a {0} Account" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:34 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" msgstr "" -#: public/js/frappe/list/list_view.js:473 +#: frappe/public/js/frappe/list/list_view.js:504 msgid "Create your first {0}" msgstr "Buat {0} pertama Anda" -#: workflow/doctype/workflow/workflow.js:16 +#: frappe/workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Created" -msgstr "Dibuat" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Created" -msgstr "Dibuat" - -#. Label of a Datetime field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Created At" msgstr "" -#: model/__init__.py:138 model/meta.py:51 -#: public/js/frappe/list/list_sidebar_group_by.js:73 -#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 msgid "Created By" msgstr "Dibuat Oleh" -#: workflow/doctype/workflow/workflow.py:65 +#: frappe/workflow/doctype/workflow/workflow.py:64 msgid "Created Custom Field {0} in {1}" msgstr "Dibuat Bidang Kustom {0} pada {1}" -#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140 -#: model/meta.py:46 public/js/frappe/model/meta.js:198 -#: public/js/frappe/model/model.js:115 -#: public/js/frappe/views/dashboard/dashboard_view.js:478 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Created On" msgstr "Dibuat pada" -#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376 +#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Membuat {0}" -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Criticism" -msgstr "Kritik" - -#: public/js/frappe/form/sidebar/review.js:66 -msgid "Criticize" -msgstr "Mengkritik" +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Cron" -msgstr "Cron" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "Cron" +msgstr "" -#. Label of a Data field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Cron Format" -msgstr "Format Cron" +msgstr "" -#. Label of a Data field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Cron Format" -msgstr "Format Cron" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" -#: templates/includes/comments/comments.html:32 +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" msgstr "Ctrl + Enter untuk menambahkan komentar" -#. Name of a DocType -#: desk/page/setup_wizard/setup_wizard.js:403 -#: geo/doctype/currency/currency.json -msgid "Currency" -msgstr "Mata uang" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Currency" -msgstr "Mata uang" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Currency" -msgstr "Mata uang" - +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Currency" msgstr "Mata uang" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Currency Name" -msgstr "Nama Mata Uang" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Currency Precision" -msgstr "Presisi mata uang" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Current" msgstr "Arus" -#. Label of a Link field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Current Job ID" msgstr "" -#. Label of a Int field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Current Value" msgstr "" -#: public/js/frappe/form/form_viewers.js:5 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" msgstr "Sedang Melihat" -#: public/js/frappe/form/sidebar/review.js:77 -msgid "Currently you have {0} review points" -msgstr "Saat ini Anda memiliki {0} poin ulasan" - -#: core/doctype/user_type/user_type_list.js:7 -#: public/js/frappe/form/reminders.js:20 -msgid "Custom" -msgstr "Disesuaikan" - +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Custom" -msgstr "Disesuaikan" - +#. Label of the custom (Check) field in DocType 'Desktop Icon' #. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Custom" -msgstr "Disesuaikan" - +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 msgid "Custom" msgstr "Disesuaikan" -#. Label of a Check field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Custom Base URL" -msgstr "URL Basis Kustom" +msgstr "" -#. Label of a Link field in DocType 'Workspace Custom Block' -#: desk/doctype/workspace_custom_block/workspace_custom_block.json -msgctxt "Workspace Custom Block" +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Custom Block Name" msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Custom Blocks" msgstr "" -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json msgid "Custom CSS" -msgstr "Kustom CSS" +msgstr "" -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Custom CSS" -msgstr "Kustom CSS" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Custom Configuration" -msgstr "Konfigurasi Kustom" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" #. Name of a DocType -#: core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json msgid "Custom DocPerm" msgstr "kustom DocPerm" -#. Title of an Onboarding Step -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "Custom Document Types" -msgstr "" - -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Custom Document Types (Select Permission)" msgstr "" -#: core/doctype/user_type/user_type.py:104 +#: frappe/core/doctype/user_type/user_type.py:105 msgid "Custom Document Types Limit Exceeded" msgstr "" -#: desk/desktop.py:483 +#: frappe/desk/desktop.py:524 msgid "Custom Documents" msgstr "Dokumen Kustom" -#. Name of a DocType -#: custom/doctype/custom_field/custom_field.json -msgid "Custom Field" -msgstr "Bidang Kustom" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Custom Field" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Custom Field" msgstr "Bidang Kustom" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Custom Field" -msgstr "Bidang Kustom" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Custom Field" -msgstr "Bidang Kustom" - -#: custom/doctype/custom_field/custom_field.py:216 +#: frappe/custom/doctype/custom_field/custom_field.py:220 msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." msgstr "Bidang Khusus {0} dibuat oleh Administrator dan hanya dapat dihapus melalui akun Administrator." -#. Subtitle of the Module Onboarding 'Customization' -#: custom/module_onboarding/customization/customization.json -msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports" -msgstr "" - -#: custom/doctype/custom_field/custom_field.py:260 +#: frappe/custom/doctype/custom_field/custom_field.py:277 msgid "Custom Fields can only be added to a standard DocType." msgstr "Bidang Kustom hanya dapat ditambahkan ke DocType standar." -#: custom/doctype/custom_field/custom_field.py:257 +#: frappe/custom/doctype/custom_field/custom_field.py:274 msgid "Custom Fields cannot be added to core DocTypes." msgstr "Bidang Kustom tidak dapat ditambahkan ke DocTypes inti." -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Custom Footer" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Custom Format" -msgstr "Kustom Format" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Custom Group Search" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:119 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:190 -#: printing/page/print_format_builder/print_format_builder.js:720 +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 msgid "Custom HTML" -msgstr "Custom HTML" +msgstr "" #. Name of a DocType -#: desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "Custom HTML Block" msgstr "" -#. Label of a HTML field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Custom HTML Help" -msgstr "Custom HTML Bantuan" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:111 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" msgstr "" -#. Label of a Data field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Custom Label" msgstr "" -#. Label of a Data field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Custom Label" -msgstr "" - -#. Label of a Table field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Menu Items" -msgstr "Kustom Menu Produk" +msgstr "" -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Custom Options" -msgstr "Opsi Kustom" +msgstr "" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Custom Overrides" -msgstr "Penggantian Kustom" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Custom Report" -msgstr "Laporan Kustom" +msgstr "" -#: desk/desktop.py:484 +#: frappe/desk/desktop.py:525 msgid "Custom Reports" msgstr "Laporan Kustom" #. Name of a DocType -#: core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/custom_role/custom_role.json msgid "Custom Role" msgstr "Peran kustom" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Custom SCSS" -msgstr "SCSS Kustom" +msgstr "" -#. Label of a Section Break field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Sidebar Menu" -msgstr "Kustom Sidebar menu" +msgstr "" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Translation" +#: frappe/core/workspace/build/build.json msgid "Custom Translation" msgstr "" -#: core/doctype/doctype/doctype_list.js:65 -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Card Break in the Build Workspace -#. Title of the Module Onboarding 'Customization' -#: core/workspace/build/build.json -#: custom/module_onboarding/customization/customization.json -msgid "Customization" -msgstr "Kustomisasi" - -#. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Customization" -msgstr "Kustomisasi" - -#. Group in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Customization" -msgstr "Kustomisasi" - -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Customization" -msgstr "Kustomisasi" - -#. Success message of the Module Onboarding 'Customization' -#: custom/module_onboarding/customization/customization.json -msgid "Customization onboarding is all done!" +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:511 +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "Kustom?" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "Kustomisasi" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" msgstr "" -#: custom/doctype/customize_form/customize_form.js:397 +#: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" msgstr "Penyesuaian ulang Reset" -#: modules/utils.py:95 +#: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
    {1}" msgstr "Penyesuaian untuk {0} diekspor ke:
    {1}" -#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527 +#: frappe/printing/page/print/print.js:171 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Sesuaikan" -#: public/js/frappe/list/list_view.js:1664 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Sesuaikan" -#: custom/doctype/customize_form/customize_form.js:89 +#: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:37 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" msgstr "" -#. Name of a DocType -#: custom/doctype/customize_form/customize_form.json -#: public/js/frappe/views/kanban/kanban_view.js:340 -msgid "Customize Form" -msgstr "Sesuaikan Form" - #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Customize Form" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Sesuaikan Form" -#: custom/doctype/customize_form/customize_form.js:100 +#: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" msgstr "" #. Name of a DocType -#: custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" msgstr "Sesuaikan Form Lapangan" -#. Title of an Onboarding Step -#: custom/onboarding_step/print_format/print_format.json -msgid "Customize Print Formats" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" msgstr "" -#: public/js/frappe/views/file/file_view.js:144 +#: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" msgstr "Memotong" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Cyan" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "DELETE" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "DELETE" msgstr "" -#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "DESC" -msgstr "DESC" - #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "DESC" -msgstr "DESC" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "DLE" msgstr "" -#: templates/print_formats/standard_macros.html:207 +#: frappe/templates/print_formats/standard_macros.html:215 msgid "DRAFT" msgstr "Draf" -#: public/js/frappe/utils/common.js:398 -#: website/report/website_analytics/website_analytics.js:23 -msgid "Daily" -msgstr "Sehari-hari" - +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 msgid "Daily" msgstr "Sehari-hari" -#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox -#. Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Daily" -msgstr "Sehari-hari" - -#: templates/emails/upcoming_events.html:8 +#: frappe/templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Harian Kegiatan Digest dikirim untuk Kalender Acara di mana pengingat ditetapkan." -#: desk/doctype/event/event.py:93 +#: frappe/desk/doctype/event/event.py:100 msgid "Daily Events should finish on the Same Day." msgstr "Acara Harian harus selesai pada Hari yang Sama." #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Daily Long" -msgstr "Long setiap hari" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Daily Long" -msgstr "Long setiap hari" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Danger" -msgstr "Bahaya" +msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Dark" msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Dark Color" -msgstr "Warna gelap" +msgstr "" -#: public/js/frappe/ui/theme_switcher.js:65 +#: frappe/public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" msgstr "" -#. Name of a DocType -#: core/page/dashboard_view/dashboard_view.js:10 -#: desk/doctype/dashboard/dashboard.json -#: public/js/frappe/ui/toolbar/search_utils.js:546 -msgid "Dashboard" -msgstr "Dasbor" - +#. Label of the dashboard (Check) field in DocType 'User' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Dashboard" -msgid "Dashboard" -msgstr "Dasbor" - +#. Name of a DocType #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Dashboard" -msgstr "Dasbor" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Dashboard" -msgstr "Dasbor" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Dasbor" -#. Name of a DocType -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 -msgid "Dashboard Chart" -msgstr "Bagan Dasbor" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Dashboard Chart" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" msgstr "Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgid "Dashboard Chart Field" msgstr "Bidang Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" msgstr "Tautan Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" msgstr "Sumber Bagan Dasbor" #. Name of a role -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" msgstr "Manajer Dasbor" -#. Label of a Data field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "Nama Dashboard" +msgstr "" #. Name of a DocType -#: desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" msgstr "Pengaturan Dashboard" -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Dashboards" -msgstr "Dasbor" +msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json -msgid "Data" -msgstr "Data" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Data" -msgstr "Data" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" -msgid "Data" -msgstr "Data" - +#. Label of the data (Code) field in DocType 'Deleted Document' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Data" -msgstr "Data" - -#. Label of a Long Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "Data" -msgstr "Data" - +#. Label of the data (Long Text) field in DocType 'Transaction Log' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Data" -msgstr "Data" +msgstr "" -#. Label of a Table field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Data" -msgstr "Data" - -#: public/js/frappe/form/controls/data.js:58 +#: frappe/public/js/frappe/form/controls/data.js:59 msgid "Data Clipped" msgstr "" #. Name of a DocType -#: core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_export/data_export.json msgid "Data Export" msgstr "Ekspor Data" #. Name of a DocType -#: core/doctype/data_import/data_import.json -msgid "Data Import" -msgstr "Impor data" - -#. Label of a Link field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import" msgstr "Impor data" #. Name of a DocType -#: core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import Log" msgstr "" -#: core/doctype/data_export/exporter.py:174 +#: frappe/core/doctype/data_export/exporter.py:174 msgid "Data Import Template" msgstr "Impor Template Data" -#: custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:614 msgid "Data Too Long" msgstr "Data Terlalu Panjang" -#: model/base_document.py:703 -msgid "Data missing in table" -msgstr "Data hilang dalam tabel" +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Database Engine" -msgstr "database Engine" +msgstr "" -#. Label of a Section Break field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Database Processes" msgstr "" -#: public/js/frappe/doctype/index.js:38 +#: frappe/public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" msgstr "" #. Name of a report -#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" msgstr "" -#: custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:248 msgid "Database Table Row Size Limit" msgstr "" -#: public/js/frappe/doctype/index.js:40 +#: frappe/public/js/frappe/doctype/index.js:40 msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." msgstr "" -#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109 -#: public/js/frappe/views/interaction.js:80 -msgid "Date" -msgstr "Tanggal" - -#. Label of a Datetime field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Date" -msgstr "Tanggal" - -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Date" -msgstr "Tanggal" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Date" -msgstr "Tanggal" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Date" -msgstr "Tanggal" +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "" +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Date" -msgstr "Tanggal" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Date" -msgstr "Tanggal" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Date" -msgstr "Tanggal" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" msgstr "Tanggal" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json msgid "Date Format" -msgstr "Format Tanggal" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Date Format" -msgstr "Format Tanggal" - -#: desk/page/leaderboard/leaderboard.js:165 +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 msgid "Date Range" msgstr "" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Date Range" -msgstr "" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Date and Number Format" -msgstr "Tanggal dan Nomor Format" +msgstr "" -#: public/js/frappe/form/controls/date.js:163 +#: frappe/public/js/frappe/form/controls/date.js:247 msgid "Date {0} must be in format: {1}" msgstr "Tanggal {0} harus dalam format: {1}" -#: utils/password_strength.py:131 +#: frappe/utils/password_strength.py:129 msgid "Dates are often easy to guess." msgstr "Tanggal seringkali mudah ditebak." -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Datetime" -msgstr "Datetime" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Datetime" -msgstr "Datetime" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Datetime" -msgstr "Datetime" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:270 +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 msgid "Day" msgstr "Hari" -#. Label of a Select field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Day" -msgstr "Hari" - -#. Label of a Select field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Day" -msgstr "Hari" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the day_of_week (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Day of Week" -msgstr "Hari dalam seminggu" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Days After" -msgstr "Setelah hari" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Days Before" -msgstr "Sebelum hari" +msgstr "" -#. Label of a Int field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Days Before or After" -msgstr "Sebelum hari atau setelah" +msgstr "" -#: public/js/frappe/request.js:249 +#: frappe/public/js/frappe/request.js:252 msgid "Deadlock Occurred" msgstr "" -#: templates/emails/password_reset.html:1 +#: frappe/templates/emails/password_reset.html:1 msgid "Dear" msgstr "Kepada Yth." -#: templates/emails/administrator_logged_in.html:1 +#: frappe/templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," msgstr "Kepada System Manager Yth.," -#: templates/emails/account_deletion_notification.html:1 -#: templates/emails/delete_data_confirmation.html:1 +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 msgid "Dear User," msgstr "Pengguna yang terhormat," -#: templates/emails/download_data.html:1 +#: frappe/templates/emails/download_data.html:1 msgid "Dear {0}" msgstr "Yth {0}" -#. Label of a Code field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Debug Log" msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Default" -msgstr "Standar" +#: frappe/public/js/frappe/views/reports/report_utils.js:308 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Default" -msgstr "Standar" +#: frappe/public/js/frappe/views/reports/report_utils.js:300 +msgid "Decimal Separator must be a single character" +msgstr "" +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" msgstr "Standar" -#. Label of a Small Text field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Default" -msgstr "Standar" - -#. Label of a Data field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Default" -msgstr "Standar" - -#. Label of a Small Text field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Default" -msgstr "Standar" - -#: contacts/doctype/address_template/address_template.py:40 +#: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" msgstr "Template Default Address tidak bisa dihapus" -#. Label of a Select field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Amendment Naming" msgstr "" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Email Template" msgstr "" -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default Email Template" -msgstr "" - -#: email/doctype/email_account/email_account_list.js:13 +#: frappe/email/doctype/email_account/email_account_list.js:13 msgid "Default Inbox" msgstr "Standar Inbox" -#: email/doctype/email_account/email_account.py:194 +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 msgid "Default Incoming" msgstr "Standar Masuk" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Default Incoming" -msgstr "Standar Masuk" - -#. Label of a Check field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Default Letter Head" -msgstr "Standar Surat Kepala" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Default Naming" -msgstr "" - #. Option for the 'Default Amendment Naming' (Select) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Naming" msgstr "" -#: email/doctype/email_account/email_account.py:201 +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 msgid "Default Outgoing" msgstr "Standar Outgoing" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Default Outgoing" -msgstr "Standar Outgoing" - -#. Label of a Data field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the default_portal_home (Data) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Portal Home" -msgstr "Beranda Portal Default" +msgstr "" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_print_format (Data) field in DocType 'DocType' +#. Label of the default_print_format (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Print Format" -msgstr "Standar Print Format" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default Print Format" -msgstr "Standar Print Format" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the default_print_language (Link) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Default Print Language" -msgstr "Bahasa Cetak Default" +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Default Redirect URI" -msgstr "Bawaan Redirect URI" +msgstr "" -#. Label of a Link field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Role at Time of Signup" -msgstr "Peran bawaan di Waktu Pendaftaran" +msgstr "" -#: email/doctype/email_account/email_account_list.js:16 +#: frappe/email/doctype/email_account/email_account_list.js:16 msgid "Default Sending" msgstr "Default Mengirim" -#: email/doctype/email_account/email_account_list.js:7 +#: frappe/email/doctype/email_account/email_account_list.js:7 msgid "Default Sending and Inbox" msgstr "Default Mengirim dan Inbox" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Field" -msgstr "Bidang Sortir Default" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Order" -msgstr "Urutan Sortir Default" +msgstr "" -#. Label of a Data field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" +#. Label of the field (Data) field in DocType 'Print Format Field Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Default Template For Field" msgstr "" -#: website/doctype/website_theme/website_theme.js:28 +#: frappe/website/doctype/website_theme/website_theme.js:28 msgid "Default Theme" msgstr "Tema Default" -#. Label of a Link field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Role" msgstr "" -#. Label of a Link field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the default_user_type (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Type" msgstr "" -#. Label of a Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the default (Text) field in DocType 'Custom Field' +#. Label of the default_value (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Default Value" -msgstr "Nilai Awal" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Default Value" -msgstr "Nilai Awal" - -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_view (Select) field in DocType 'DocType' +#. Label of the default_view (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default View" msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default View" +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" msgstr "" -#: core/doctype/doctype/doctype.py:1327 +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1376 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Default untuk jenis bidang 'Cek' {0} harus berupa '0' atau '1'" -#: core/doctype/doctype/doctype.py:1340 +#: frappe/core/doctype/doctype/doctype.py:1389 msgid "Default value for {0} must be in the list of options." msgstr "Nilai bawaan untuk {0} harus ada di daftar opsi." -#: core/doctype/session_default_settings/session_default_settings.py:37 +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "Default {0}" +msgstr "" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Default: \"Contact Us\"" -msgstr "Default: \"Hubungi Kami\"" +msgstr "" #. Name of a DocType -#: core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json msgid "DefaultValue" -msgstr "DefaultValue" +msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "Standar" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Defaults" -msgstr "Standar" - -#: email/doctype/email_account/email_account.py:207 +#: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" msgstr "" -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Delayed" -msgstr "Terlambat" +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:189 -#: public/js/frappe/form/toolbar.js:423 -#: public/js/frappe/views/reports/report_view.js:1645 -#: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:823 -#: templates/discussions/reply_card.html:35 +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Hapus" -#: public/js/frappe/list/list_view.js:1857 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Hapus" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Delete" -msgstr "Hapus" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Delete" -msgstr "Hapus" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Delete" -msgstr "Hapus" - -#: www/me.html:75 +#: frappe/www/me.html:65 msgid "Delete Account" msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 msgid "Delete Data" msgstr "Hapus Data" -#: public/js/frappe/views/kanban/kanban_view.js:103 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:824 -msgid "Delete Workspace" +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:696 +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:935 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:741 msgid "Delete comment?" msgstr "Hapus komentar?" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:30 +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 msgid "Delete this record to allow sending to this email address" msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini" -#: public/js/frappe/list/list_view.js:1862 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1868 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Hapus {0} item secara permanen?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Deleted" -msgstr "Dihapus" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Deleted" -msgstr "Dihapus" - #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Deleted" -msgstr "Dihapus" - #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Deleted" -msgstr "Dihapus" +msgstr "" -#. Label of a Data field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "DocType dihapus" +msgstr "" #. Name of a DocType -#: core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" msgstr "Dokumen dihapus" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Deleted Document" +#: frappe/automation/workspace/tools/tools.json msgid "Deleted Documents" -msgstr "Dokumen yang dihapus" +msgstr "" -#. Label of a Data field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Name" -msgstr "Nama dihapus" +msgstr "" -#: desk/reportview.py:488 +#: frappe/desk/reportview.py:606 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Menghapus {0}" -#: public/js/frappe/list/bulk_operations.js:158 +#: frappe/public/js/frappe/list/bulk_operations.js:202 msgid "Deleting {0} records..." msgstr "" -#: public/js/frappe/model/model.js:706 +#: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." msgstr "" -#. Label of a Table field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Deletion Steps " msgstr "" -#: core/doctype/page/page.py:108 +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 msgid "Deletion of this document is only permitted in developer mode." msgstr "" -#: public/js/frappe/views/reports/report_utils.js:276 +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:296 msgid "Delimiter must be a single character" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Delivery Status" msgstr "Status Pengiriman" -#: templates/includes/oauth_confirmation.html:14 -msgid "Deny" -msgstr "" - #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 msgid "Deny" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Department" msgstr "Departemen" -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 msgid "Dependencies" msgstr "" -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Depends On" -msgstr "Tergantung Pada" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Dependencies & Licenses" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Depends On" -msgstr "Tergantung Pada" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:32 +#: frappe/public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "Descendants Of" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:33 +#: frappe/public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" msgstr "" -#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text Editor field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a HTML Editor field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Section Break field in DocType 'Onboarding Step' -#. Label of a Markdown Editor field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Print Heading' -#: printing/doctype/print_heading/print_heading.json -msgctxt "Print Heading" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Tag' -#: desk/doctype/tag/tag.json -msgctxt "Tag" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text Editor field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'Blog Category' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 msgid "Description" msgstr "Deskripsi" #. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Deskripsi untuk halaman daftar, dalam teks biasa, hanya beberapa baris. (maks 200 karakter)" +msgstr "" #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Description to inform the user about any action that is going to be performed" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Designation" msgstr "Penunjukan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json msgid "Desk Access" -msgstr "meja Access" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Desk Settings" msgstr "" -#. Label of a Select field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Desk Theme" msgstr "" #. Name of a role -#: automation/doctype/reminder/reminder.json core/doctype/report/report.json -#: core/doctype/submission_queue/submission_queue.json -#: core/doctype/user_group/user_group.json -#: custom/doctype/doctype_layout/doctype_layout.json -#: desk/doctype/calendar_view/calendar_view.json -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_settings/dashboard_settings.json -#: desk/doctype/form_tour/form_tour.json -#: desk/doctype/kanban_board/kanban_board.json -#: desk/doctype/list_filter/list_filter.json -#: desk/doctype/module_onboarding/module_onboarding.json -#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json -#: desk/doctype/onboarding_step/onboarding_step.json -#: email/doctype/document_follow/document_follow.json -#: email/doctype/email_template/email_template.json -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/doctype/google_contacts/google_contacts.json -#: printing/doctype/letter_head/letter_head.json -#: printing/doctype/network_printer_settings/network_printer_settings.json -#: printing/doctype/print_format/print_format.json -#: social/doctype/energy_point_log/energy_point_log.json -#: website/doctype/marketing_campaign/marketing_campaign.json -#: workflow/doctype/workflow_action/workflow_action.json -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Desk User" msgstr "" #. Name of a DocType -#: desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Desktop Icon" -msgstr "Desktop Icon" +msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:230 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 msgid "Desktop Icon already exists" msgstr "Ikon Desktop sudah ada" -#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38 -#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276 +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Penjelasan" -#. Label of a Tab Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Details" -msgstr "Penjelasan" +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "" -#. Label of a Section Break field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Details" -msgstr "Penjelasan" - -#. Label of a Code field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Details" -msgstr "Penjelasan" - -#: core/page/permission_manager/permission_manager.js:477 +#: frappe/core/page/permission_manager/permission_manager.js:494 msgid "Did not add" msgstr "Tidak menambahkan" -#: core/page/permission_manager/permission_manager.js:378 +#: frappe/core/page/permission_manager/permission_manager.js:388 msgid "Did not remove" msgstr "Tidak menghapus" -#: public/js/frappe/utils/diffview.js:56 +#: frappe/public/js/frappe/utils/diffview.js:57 msgid "Diff" msgstr "" #. Description of the 'States' (Section Break) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." -msgstr "Berbeda \"Negara\" dokumen ini dapat eksis masuk Like \"Open\", \"Menunggu Persetujuan\" dll" +msgstr "" -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Digits" -msgstr "Digit" +msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Directory Server" msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_auto_refresh (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Auto Refresh" -msgstr "Nonaktifkan Refresh Otomatis" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Change Log Notification" msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_comment_count (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Comment Count" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the disable_comments (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Comments" -msgstr "Nonaktifkan Komentar" +msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "" + +#. Label of the disable_count (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Count" -msgstr "Nonaktifkan Count" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_document_sharing (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Document Sharing" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the disable_likes (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Likes" msgstr "" -#: core/doctype/report/report.js:36 +#: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Nonaktifkan Laporan" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Disable SMTP server authentication" -msgstr "Nonaktifkan otentikasi server SMTP" +msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Sidebar Stats" -msgstr "Nonaktifkan Status Bilah Samping" +msgstr "" -#: website/doctype/website_settings/website_settings.js:146 +#: frappe/website/doctype/website_settings/website_settings.js:146 msgid "Disable Signup for your site" msgstr "Nonaktifkan Pendaftaran untuk situs Anda" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "Nonaktifkan standard catatan kaki pada surel" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_system_update_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable System Update Notification" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_user_pass_login (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Username/Password Login" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Disable signups" msgstr "" -#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108 -#: public/js/frappe/model/indicator.js:115 -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#. Label of the disabled (Check) field in DocType 'Blogger' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Dinonaktifkan" -#. Label of a Check field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#: email/doctype/email_account/email_account.js:237 +#: frappe/email/doctype/email_account/email_account.js:300 msgid "Disabled Auto Reply" msgstr "Balas Otomatis Dinonaktifkan" -#: public/js/frappe/views/communication.js:30 -#: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:502 -#: public/js/frappe/web_form/web_form.js:187 -#: website/doctype/web_form/templates/web_form.html:41 +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "Membuang" -#: public/js/frappe/web_form/web_form.js:184 +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "Membuang" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "Membuang" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:184 msgid "Discard?" msgstr "" +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "" + #. Name of a DocType -#: website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Discussion Reply" msgstr "" #. Name of a DocType -#: website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Discussion Topic" msgstr "" -#: templates/discussions/reply_card.html:16 +#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" msgstr "Memberhentikan" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Display" -msgstr "Tampilan" +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "Memberhentikan" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Display" -msgstr "Tampilan" +msgstr "" -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the depends_on (Code) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Display Depends On" -msgstr "Tampilan Tergantung Pada" +msgstr "" -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Display Depends On (JS)" msgstr "" -#. Label of a Check field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do Not Create New User " msgstr "" #. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: public/js/frappe/form/grid.js:1156 +#: frappe/public/js/frappe/form/grid.js:1193 msgid "Do not edit headers which are preset in the template" msgstr "Jangan edit header yang sudah ada di template" -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64 -msgid "Do not have permission to access bucket {0}." -msgstr "" - -#: core/doctype/system_settings/system_settings.js:66 +#: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" -#: public/js/frappe/form/form.js:977 +#: frappe/public/js/frappe/form/form.js:958 msgid "Do you want to cancel all linked documents?" msgstr "Apakah Anda ingin membatalkan semua dokumen yang ditautkan?" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Event" -msgstr "Acara dok" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Events" -msgstr "Acara Dok" +msgstr "" -#. Label of a Select field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Doc Status" -msgstr "Status Doc" +msgstr "" #. Name of a DocType -#: core/doctype/docfield/docfield.json -msgid "DocField" -msgstr "DocField" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocField" -msgstr "DocField" +msgstr "" #. Name of a DocType -#: core/doctype/docperm/docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "DocPerm" +msgstr "" #. Name of a DocType -#: core/doctype/docshare/docshare.json +#: frappe/core/doctype/docshare/docshare.json msgid "DocShare" -msgstr "DocShare" +msgstr "" -#: workflow/doctype/workflow/workflow.js:264 -msgid "" -"DocStatus of the following states have changed:
    {0}
    \n" +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
    {0}
    \n" "\t\t\t\tDo you want to update the docstatus of existing documents in those states?
    \n" "\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" "\t\t\t\t" msgstr "" +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' #. Name of a DocType -#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 -#: website/doctype/website_slideshow/website_slideshow.js:18 -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Amended Document Naming Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "DocType" -msgid "DocType" -msgstr "DocType" - #. Group in Module Def's connections -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "DocType" -msgstr "DOCTYPE" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "DocType" -msgstr "DocType" - +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#. Label of a Link field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "DocType" -msgstr "DocType" - +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" -msgid "DocType" -msgstr "DocType" - +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "DocType" +msgstr "" -#: core/doctype/doctype/doctype.py:1528 +#: frappe/core/doctype/doctype/doctype.py:1577 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} yang disediakan untuk bidang {1} harus memiliki minimal satu bidang Tautan" #. Name of a DocType -#: core/doctype/doctype_action/doctype_action.json -msgid "DocType Action" -msgstr "Tindakan DocType" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Action" msgstr "Tindakan DocType" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "DocType Event" -msgstr "Acara DocType" +msgstr "" #. Name of a DocType -#: custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json msgid "DocType Layout" msgstr "" #. Name of a DocType -#: custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json msgid "DocType Layout Field" msgstr "" #. Name of a DocType -#: core/doctype/doctype_link/doctype_link.json -msgid "DocType Link" -msgstr "Tautan DocType" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Link" msgstr "Tautan DocType" -#: core/doctype/doctype/doctype_list.js:10 -msgid "DocType Name" -msgstr "" - #. Name of a DocType -#: core/doctype/doctype_state/doctype_state.json -msgid "DocType State" -msgstr "" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType State" msgstr "" -#. Label of a Select field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 msgid "DocType View" -msgstr "Tampilan DocType" +msgstr "" -#: core/doctype/doctype/doctype.py:646 +#: frappe/core/doctype/doctype/doctype.py:656 msgid "DocType can not be merged" msgstr "DocType tidak dapat digabungkan" -#: core/doctype/doctype/doctype.py:640 +#: frappe/core/doctype/doctype/doctype.py:650 msgid "DocType can only be renamed by Administrator" msgstr "DOCTYPE hanya dapat diganti oleh Administrator" -#: integrations/doctype/webhook/webhook.py:79 +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:79 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType harus Submittable untuk Doc Event yang dipilih" -#: client.py:421 +#: frappe/client.py:403 msgid "DocType must be a string" msgstr "" -#: public/js/form_builder/store.js:149 +#: frappe/public/js/form_builder/store.js:154 msgid "DocType must have atleast one field" msgstr "" -#: core/doctype/log_settings/log_settings.py:57 +#: frappe/core/doctype/log_settings/log_settings.py:57 msgid "DocType not supported by Log Settings." msgstr "" #. Description of the 'Document Type' (Link) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "DocType on which this Workflow is applicable." -msgstr "DocType yang menerapkan Alur Kerja ini." +msgstr "" -#: public/js/frappe/views/kanban/kanban_settings.js:4 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" msgstr "" -#: modules/utils.py:161 +#: frappe/modules/utils.py:175 msgid "DocType {0} does not exist." msgstr "" -#: modules/utils.py:224 +#: frappe/modules/utils.py:238 msgid "DocType {} not found" msgstr "" -#: core/doctype/doctype/doctype.py:1009 +#: frappe/core/doctype/doctype/doctype.py:1028 msgid "DocType's name should not start or end with whitespace" msgstr "Nama DocType tidak boleh dimulai atau diakhiri dengan spasi" -#: core/doctype/doctype/doctype.js:70 -msgid "DocTypes can not be modified, please use {0} instead" +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:645 +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 msgid "Doctype" msgstr "DOCTYPE" -#. Label of a Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "Doctype" -msgstr "DOCTYPE" - -#: core/doctype/doctype/doctype.py:1004 +#: frappe/core/doctype/doctype/doctype.py:1022 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" -#: public/js/frappe/list/bulk_operations.js:3 +#: frappe/public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" msgstr "Jenis dokumen diperlukan" -#: public/js/frappe/views/workspace/workspace.js:1303 -msgid "Doctype with same route already exist. Please choose different title." +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" msgstr "" -#. Label of a Dynamic Link field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Document" -msgstr "Dokumen" - -#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Link field in DocType 'Notification Subscribed Document' -#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json -msgctxt "Notification Subscribed Document" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Dynamic Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Actions" -msgstr "Tindakan Dokumen" +msgstr "" +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' #. Name of a DocType -#: email/doctype/document_follow/document_follow.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json msgid "Document Follow" msgstr "Ikuti Dokumen" -#. Label of a Section Break field in DocType 'User' -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Document Follow" -msgstr "Ikuti Dokumen" - -#: desk/form/document_follow.py:84 +#: frappe/desk/form/document_follow.py:94 msgid "Document Follow Notification" msgstr "Dokumen Ikuti Pemberitahuan" -#. Label of a Data field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Document Link" -msgstr "Tautan Dokumen" +msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Document Linking" msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Links" -msgstr "Tautan Dokumen" +msgstr "" -#: core/doctype/doctype/doctype.py:1162 +#: frappe/core/doctype/doctype/doctype.py:1211 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1182 +#: frappe/core/doctype/doctype/doctype.py:1231 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: core/doctype/doctype/doctype.py:1145 +#: frappe/core/doctype/doctype/doctype.py:1194 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: core/doctype/doctype/doctype.py:1151 +#: frappe/core/doctype/doctype/doctype.py:1200 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:36 -#: public/js/frappe/form/form_tour.js:58 +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the document_name (Data) field in DocType 'Transaction Log' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 msgid "Document Name" msgstr "Dokumen Nama" -#. Label of a Dynamic Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Data field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "Document Name" -msgstr "Dokumen Nama" - -#: client.py:424 +#: frappe/client.py:406 msgid "Document Name must be a string" msgstr "" #. Name of a DocType -#: core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" msgstr "Aturan Penamaan Dokumen" #. Name of a DocType -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" msgstr "Kondisi Aturan Penamaan Dokumen" #. Name of a DocType -#: core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" msgstr "" -#: model/document.py:1519 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "dokumen Antri" -#: core/doctype/deleted_document/deleted_document_list.js:38 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 msgid "Document Restoration Summary" msgstr "Ringkasan Restorasi Dokumen" -#: core/doctype/deleted_document/deleted_document.py:67 +#: frappe/core/doctype/deleted_document/deleted_document.py:68 msgid "Document Restored" msgstr "Dokumen dipulihkan" -#: public/js/frappe/widgets/onboarding_widget.js:359 -#: public/js/frappe/widgets/onboarding_widget.js:401 -#: public/js/frappe/widgets/onboarding_widget.js:420 -#: public/js/frappe/widgets/onboarding_widget.js:439 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Document Saved" msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Document Share" -msgstr "Berbagi Dokumen" +msgstr "" #. Name of a DocType -#: core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/document_share_key/document_share_key.json msgid "Document Share Key" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Document Share Key Expiry (in Days)" msgstr "" #. Name of a report #. Label of a Link in the Users Workspace -#: core/report/document_share_report/document_share_report.json -#: core/workspace/users/users.json +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json msgid "Document Share Report" msgstr "Dokumen Saham Laporkan" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "Document States" -msgstr "Dokumen Negara" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Document States" -msgstr "Dokumen Negara" - -#. Label of a Table field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "Document States" -msgstr "Dokumen Negara" - -#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199 -#: public/js/frappe/model/model.js:127 +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 msgid "Document Status" msgstr "Dokumen Status" -#. Label of a Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Tag" -msgstr "Tag dokumen" +msgstr "" -#. Label of a Data field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Title" -msgstr "Judul dokumen" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:26 -#: core/page/permission_manager/permission_manager.js:49 -#: core/page/permission_manager/permission_manager.js:211 -#: core/page/permission_manager/permission_manager.js:432 -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Global Search DocType' -#: desk/doctype/global_search_doctype/global_search_doctype.json -msgctxt "Global Search DocType" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' #. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Jenis Dokumen" -#. Label of a Data field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Session Default' -#: core/doctype/session_default/session_default.json -msgctxt "Session Default" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'User Select Document Type' -#: core/doctype/user_select_document_type/user_select_document_type.json -msgctxt "User Select Document Type" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#: desk/doctype/number_card/number_card.py:55 +#: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" msgstr "" -#: permissions.py:149 +#: frappe/permissions.py:149 msgid "Document Type is not importable" msgstr "Jenis Dokumen tidak dapat diimpor" -#: permissions.py:145 +#: frappe/permissions.py:145 msgid "Document Type is not submittable" msgstr "Jenis Dokumen tidak dapat dikirim" -#. Label of a Link field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Document Type to Track" -msgstr "Jenis Dokumen untuk Dilacak" +msgstr "" -#: desk/doctype/global_search_settings/global_search_settings.py:39 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." msgstr "Jenis Dokumen {0} telah diulang." -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types" -msgstr "Jenis Dokumen" +msgstr "" -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types (Select Permissions Only)" msgstr "" -#. Label of a Section Break field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types and Permissions" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:162 +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" -#: public/js/frappe/list/list_view.js:1054 +#: frappe/desk/form/document_follow.py:56 +msgid "Document follow is not enabled for this user." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1157 msgid "Document has been cancelled" msgstr "" -#: public/js/frappe/list/list_view.js:1053 +#: frappe/public/js/frappe/list/list_view.js:1156 msgid "Document has been submitted" msgstr "" -#: public/js/frappe/list/list_view.js:1052 +#: frappe/public/js/frappe/list/list_view.js:1155 msgid "Document is in draft state" msgstr "" -#: core/doctype/communication/communication.js:182 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:182 msgid "Document not Relinked" msgstr "" -#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145 +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 msgid "Document renamed from {0} to {1}" msgstr "Dokumen diubah namanya dari {0} ke {1}" -#: public/js/frappe/form/toolbar.js:154 +#: frappe/public/js/frappe/form/toolbar.js:164 msgid "Document renaming from {0} to {1} has been queued" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:397 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Document type is required to create a dashboard chart" msgstr "Jenis dokumen diperlukan untuk membuat bagan dasbor" -#: core/doctype/deleted_document/deleted_document.py:44 +#: frappe/core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" msgstr "Dokumen {0} Sudah Dipulihkan" -#: workflow/doctype/workflow_action/workflow_action.py:203 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 msgid "Document {0} has been set to state {1} by {2}" msgstr "Dokumen {0} telah diatur untuk menyatakan {1} oleh {2}" -#: client.py:443 +#: frappe/client.py:430 msgid "Document {0} {1} does not exist" msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" -msgstr "Tautan Dokumentasi" +msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Documentation URL" -msgstr "URL Dokumentasi" +msgstr "" -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Documentation URL" -msgstr "URL Dokumentasi" +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" -#: core/doctype/deleted_document/deleted_document_list.js:25 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" msgstr "Dokumen berhasil dipulihkan" -#: core/doctype/deleted_document/deleted_document_list.js:33 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 msgid "Documents that failed to restore" msgstr "Dokumen yang gagal dipulihkan" -#: core/doctype/deleted_document/deleted_document_list.js:29 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 msgid "Documents that were already restored" msgstr "Dokumen yang sudah dipulihkan" #. Name of a DocType -#: core/doctype/domain/domain.json +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json msgid "Domain" -msgstr "Domain" +msgstr "" -#. Label of a Data field in DocType 'Domain' -#: core/doctype/domain/domain.json -msgctxt "Domain" -msgid "Domain" -msgstr "Domain" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Domain" -msgstr "Domain" - -#. Label of a Link field in DocType 'Has Domain' -#: core/doctype/has_domain/has_domain.json -msgctxt "Has Domain" -msgid "Domain" -msgstr "Domain" - -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Domain Name" msgstr "" #. Name of a DocType -#: core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" msgstr "Pengaturan Domain" -#. Label of a HTML field in DocType 'Domain Settings' -#: core/doctype/domain_settings/domain_settings.json -msgctxt "Domain Settings" +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domains HTML" -msgstr "Domain HTML" +msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "Jangan tag HTML Encode HTML seperti <script> atau hanya karakter seperti <atau>, karena mereka dapat sengaja digunakan dalam bidang ini" +msgstr "" -#: public/js/frappe/data_import/import_preview.js:268 +#: frappe/public/js/frappe/data_import/import_preview.js:272 msgid "Don't Import" msgstr "Jangan Impor" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Don't Override Status" -msgstr "Jangan Override Status" +msgstr "" -#. Label of a Check field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Don't Override Status" -msgstr "Jangan Override Status" - -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Don't Send Emails" -msgstr "Jangan Kirim Email" - -#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize -#. Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" msgstr "" -#: www/login.html:119 www/login.html:135 www/update-password.html:34 +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" -#: public/js/frappe/ui/messages.js:233 -#: public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "Matang" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Donut" -msgstr "Donat" +msgstr "" -#: core/doctype/file/file.js:5 -#: email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Unduh" -#: public/js/frappe/views/reports/report_utils.js:229 +#: frappe/public/js/frappe/views/reports/report_utils.js:237 msgctxt "Export report" msgid "Download" msgstr "Unduh" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 msgid "Download Backups" msgstr "Unduh Cadangan" -#: templates/emails/download_data.html:6 +#: frappe/templates/emails/download_data.html:6 msgid "Download Data" msgstr "Unduh Data" -#: desk/page/backups/backups.js:12 +#: frappe/desk/page/backups/backups.js:14 msgid "Download Files Backup" msgstr "Unduh File Cadangan" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid "Download Link" msgstr "Unduh Tautan" -#: public/js/frappe/views/reports/query_report.js:764 +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "Unduh PDF" + +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Unduh Laporan" -#. Label of a Button field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Download Template" msgstr "Unduh Template" -#: website/doctype/personal_data_download_request/personal_data_download_request.py:60 -#: website/doctype/personal_data_download_request/personal_data_download_request.py:68 -#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" msgstr "Unduh Data Anda" -#: public/js/frappe/model/indicator.js:73 -#: public/js/frappe/ui/filters/filter.js:493 +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 msgid "Draft" msgstr "Draf" -#: public/js/frappe/views/workspace/blocks/header.js:46 -#: public/js/frappe/views/workspace/blocks/paragraph.js:136 -#: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:565 -#: public/js/frappe/widgets/base_widget.js:33 +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Dropbox Access Token" -msgstr "Token Akses Dropbox" - -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Dropbox Refresh Token" +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" msgstr "" -#. Name of a DocType -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgid "Dropbox Settings" -msgstr "Pengaturan dropbox" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" -#. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Dropbox Settings" -msgid "Dropbox Settings" -msgstr "Pengaturan dropbox" +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 -msgid "Dropbox Setup" -msgstr "dropbox Pengaturan" +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" -#. Label of a Section Break field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Dropdowns" -msgstr "Dropdown" +msgstr "" -#. Label of a Date field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Due Date" msgstr "Tanggal Jatuh Tempo" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Due Date Based On" -msgstr "Tanggal Jatuh Tempo Berdasarkan" +msgstr "" -#: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:808 -#: public/js/frappe/views/workspace/workspace.js:975 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Duplikat" -#: printing/doctype/print_format_field_template/print_format_field_template.py:52 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" msgstr "" -#: public/js/frappe/list/list_filter.js:137 +#: frappe/public/js/frappe/list/list_filter.js:144 msgid "Duplicate Filter Name" msgstr "Nama filter duplikat" -#: model/base_document.py:563 model/rename_doc.py:113 +#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Nama Duplikat" -#: public/js/frappe/views/workspace/workspace.js:547 -#: public/js/frappe/views/workspace/workspace.js:809 -msgid "Duplicate Workspace" +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" msgstr "" -#: public/js/frappe/form/form.js:208 +#: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:990 -msgid "Duplicate of {0} named as {1} is created successfully" +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Duration" -msgstr "Lamanya" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Duration" -msgstr "Lamanya" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Duration" -msgstr "Lamanya" - -#. Label of a Float field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Duration" -msgstr "Lamanya" - -#. Label of a Float field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Duration" -msgstr "Lamanya" - +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Duration" -msgstr "Lamanya" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" msgstr "Lamanya" -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Dynamic Filters" -msgstr "Filter Dinamis" - -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Dynamic Filters JSON" -msgstr "Filter Dinamis JSON" - -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Dynamic Filters JSON" -msgstr "Filter Dinamis JSON" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Dynamic Filters Section" -msgstr "Bagian Filter Dinamis" - -#. Name of a DocType -#: core/doctype/dynamic_link/dynamic_link.json -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Dynamic Report Filters" -msgstr "Filter Laporan Dinamis" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Dynamic Route" -msgstr "Rute Dinamis" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Dynamic Template" -msgstr "Template Dinamis" - -#. Description of the Onboarding Step 'Setup Naming Series' -#: custom/onboarding_step/naming_series/naming_series.json -msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n" +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" msgstr "" -#: core/page/dashboard_view/dashboard_view.js:169 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85 -#: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/form/footer/form_timeline.js:638 -#: public/js/frappe/form/toolbar.js:672 -#: public/js/frappe/views/reports/query_report.js:809 -#: public/js/frappe/views/reports/query_report.js:1617 -#: public/js/frappe/views/workspace/workspace.js:448 -#: public/js/frappe/views/workspace/workspace.js:802 -#: public/js/frappe/widgets/base_widget.js:64 -#: public/js/frappe/widgets/chart_widget.js:298 -#: public/js/frappe/widgets/number_card_widget.js:314 -#: templates/discussions/reply_card.html:29 -#: workflow/page/workflow_builder/workflow_builder.js:46 -#: workflow/page/workflow_builder/workflow_builder.js:84 -msgid "Edit" -msgstr "Edit" +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" -#: public/js/frappe/list/list_view.js:1943 -msgctxt "Button in list view actions menu" -msgid "Edit" -msgstr "Edit" +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:669 +#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/templates/address_list.html:13 +#: frappe/public/js/frappe/form/templates/contact_list.html:13 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "Edit" +msgstr "" -#: templates/emails/auto_email_report.html:63 +#: frappe/public/js/frappe/list/list_view.js:2111 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:345 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" msgstr "Edit Pengaturan Laporan Surel Otomatis" -#: printing/page/print_format_builder/print_format_builder.js:719 +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 msgid "Edit Custom HTML" msgstr "Mengedit Custom HTML" -#: public/js/frappe/form/toolbar.js:546 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "mengedit DocType" -#: public/js/frappe/list/list_view.js:1691 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "mengedit DocType" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42 -#: workflow/page/workflow_builder/workflow_builder.js:42 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" msgstr "" -#: printing/doctype/print_format/print_format.js:28 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:28 msgid "Edit Format" msgstr "Mengedit Format" -#: public/js/frappe/form/quick_entry.js:275 +#: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:602 +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 msgid "Edit Heading" msgstr "Mengedit Heading" -#: public/js/print_format_builder/print_format_builder.bundle.js:24 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" msgstr "" -#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27 +#: frappe/www/me.html:38 msgid "Edit Profile" -msgstr "Edit Profile" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:173 +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" -msgstr "Edit Properties" - -#: website/doctype/web_form/templates/web_form.html:20 -msgid "Edit Response" msgstr "" -#: public/js/frappe/utils/web_template.js:5 -msgid "Edit Values" -msgstr "Edit Nilai" - -#. Label of a Button field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" -msgid "Edit Values" -msgstr "Edit Nilai" - -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Edit Values" -msgstr "Edit Nilai" - -#: public/js/frappe/views/workspace/workspace.js:803 -msgid "Edit Workspace" +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" msgstr "" -#: desk/doctype/note/note.js:11 +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "Edit Nilai" + +#: frappe/desk/doctype/note/note.js:11 msgid "Edit mode" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:713 +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 msgid "Edit to add content" msgstr "Edit untuk menambahkan konten" -#: workflow/doctype/workflow/workflow.js:18 +#: frappe/public/js/frappe/web_form/web_form.js:446 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: public/js/frappe/views/reports/report_view.js:652 +#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "Edit {0}" +msgstr "" -#: core/doctype/doctype/doctype_list.js:41 +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "diedit Grid" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Editable Grid" -msgstr "diedit Grid" +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Editable Grid" -msgstr "diedit Grid" - -#: public/js/print_format_builder/print_format_builder.bundle.js:14 -#: public/js/workflow_builder/workflow_builder.bundle.js:20 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 msgid "Editing {0}" msgstr "" #. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "Misalnya. smsgateway.com / api / send_sms.cgi" +msgstr "" -#: rate_limiter.py:139 +#: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Element Selector" msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json -#: core/doctype/success_action/success_action.js:57 -#: email/doctype/newsletter/newsletter.js:156 -#: public/js/frappe/form/success_action.js:85 -#: public/js/frappe/form/toolbar.js:341 -#: templates/includes/comments/comments.html:25 templates/signup.html:9 -#: www/login.html:7 www/login.py:93 -msgid "Email" -msgstr "Surel" - #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email" -msgstr "Surel" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Email" -msgstr "Surel" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Email" -msgstr "Surel" - -#. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Email" -msgstr "Surel" - +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Surel" -#. Label of a Data field in DocType 'User' -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Email" -msgstr "Surel" - -#. Name of a DocType -#: core/doctype/communication/communication.js:199 -#: email/doctype/email_account/email_account.json -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email Account" -msgstr "Akun Email" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Account" +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Email Account" msgstr "Akun Email" -#. Linked DocType in Email Domain's connections -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Email Account" -msgstr "Akun Email" - -#: email/doctype/email_account/email_account.py:298 +#: frappe/email/doctype/email_account/email_account.py:343 msgid "Email Account Disabled." msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the email_account_name (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Email Account Name" -msgstr "Nama akun surel" +msgstr "" -#: core/doctype/user/user.py:697 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "Akun surel ditambahkan beberapa kali" -#: email/smtp.py:42 +#: frappe/email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11 -#: www/login.html:164 www/login.html:196 -msgid "Email Address" -msgstr "Alamat email" +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 msgid "Email Address" msgstr "Alamat email" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Email Address whose Google Contacts are to be synced." -msgstr "Alamat Email yang Kontak Google-nya harus disinkronkan." +msgstr "" -#: email/doctype/email_group/email_group.js:43 +#: frappe/email/doctype/email_group/email_group.js:43 msgid "Email Addresses" msgstr "Alamat Surel" -#. Description of the 'Send Notification to' (Small Text) field in DocType -#. 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Email Addresses" -msgstr "Alamat Surel" - -#. Name of a DocType -#: email/doctype/email_domain/email_domain.json -msgid "Email Domain" -msgstr "Domain Email" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Domain" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Email Domain" msgstr "Domain Email" #. Name of a DocType -#: email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" msgstr "Tanda Antrian Surel" -#. Label of a Small Text field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "Alamat Footer Surel" - -#. Name of a DocType -#: email/doctype/email_group/email_group.json -msgid "Email Group" -msgstr "Kelompok Surel" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Group" -msgid "Email Group" -msgstr "Kelompok Surel" - -#. Label of a Link field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Email Group" -msgstr "Kelompok Surel" - -#. Label of a Link field in DocType 'Newsletter Email Group' -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgctxt "Newsletter Email Group" +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group" msgstr "Kelompok Surel" #. Name of a DocType -#: email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group Member" msgstr "Anggota Kelompok Surel" -#. Linked DocType in Email Group's connections -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Email Group Member" -msgstr "Anggota Kelompok Surel" +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "" -#. Label of a Data field in DocType 'Contact Email' -#: contacts/doctype/contact_email/contact_email.json -msgctxt "Contact Email" +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json msgid "Email ID" -msgstr "ID Email" +msgstr "" -#. Label of a Data field in DocType 'Email Rule' -#: email/doctype/email_rule/email_rule.json -msgctxt "Email Rule" -msgid "Email ID" -msgstr "ID Email" - -#. Label of a Data field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Email ID" -msgstr "ID Email" - -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Email IDs" -msgstr "Email Id" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Id Email" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Email Inbox" -msgstr "Kotak Masuk Email" +msgstr "" #. Name of a DocType -#: email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue" msgstr "Antrian Surel" #. Name of a DocType -#: email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Email Queue Recipient" msgstr "Penerima Antrian Surel" -#: email/queue.py:163 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" -#. Label of a HTML field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Email Reply Help" -msgstr "Bantuan Balasan Email" +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_reply_help (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Email Reply Help" +msgstr "" + +#. Label of the email_retry_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Email Retry Limit" msgstr "" #. Name of a DocType -#: email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_rule/email_rule.json msgid "Email Rule" msgstr "Aturan Surel" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the email_sent (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" -msgstr "Email Terkirim" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Email Sent" -msgstr "Email Terkirim" - -#. Label of a Datetime field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Email Sent At" msgstr "" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email Settings" -msgstr "Pengaturan Email" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Section Break field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Email Signature" -msgstr "Email Signature" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Email Status" -msgstr "Status Surel" +msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the email_sync_option (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Email Sync Option" -msgstr "Opsi Sinkronisasi Surel" - -#. Name of a DocType -#: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:91 -msgid "Email Template" -msgstr "Template Email" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email Template" -msgstr "Template Email" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Template" +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "Template Email" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Email Threads on Assigned Document" msgstr "" -#. Label of a Small Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the email_to (Small Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email To" -msgstr "Surel Ke" +msgstr "" #. Name of a DocType -#: email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" msgstr "Email Berhenti berlangganan" -#: core/doctype/communication/communication.js:342 +#: frappe/core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" msgstr "Email telah ditandai sebagai spam" -#: core/doctype/communication/communication.js:355 +#: frappe/core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" msgstr "Email telah dipindahkan ke sampah" -#: public/js/frappe/views/communication.js:707 +#: frappe/core/doctype/user/user.js:272 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan)" -#: utils/oauth.py:163 +#: frappe/utils/oauth.py:163 msgid "Email not verified with {0}" msgstr "Email tidak diverifikasi dengan {0}" -#: email/queue.py:141 +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "" + +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "Surel diabaikan sementara" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Emails will be sent with next possible workflow actions" -msgstr "Email akan dikirim dengan tindakan alur kerja berikutnya" +msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Enable" -msgstr "Aktifkan" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Enable" -msgstr "Aktifkan" +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "" -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Enable" -msgstr "Aktifkan" - -#. Label of a Check field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "Enable" -msgstr "Aktifkan" - -#: automation/doctype/auto_repeat/auto_repeat.py:116 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Aktifkan Perbolehkan Ulangi Otomatis untuk doctype {0} di Customize Form" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the enable_auto_reply (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Enable Auto Reply" -msgstr "Aktifkan Auto Reply" +msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Enable Automatic Backup" -msgstr "Aktifkan Backup Otomatis" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the enable_automatic_linking (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Enable Automatic Linking in Documents" -msgstr "Aktifkan Penghubungan Otomatis di Dokumen" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Enable Comments" -msgstr "Aktifkan Komentar" +msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + +#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Enable Email Notifications" -msgstr "Aktifkan Pemberitahuan Email" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:89 -#: integrations/doctype/google_contacts/google_contacts.py:35 -#: website/doctype/website_settings/website_settings.py:129 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 msgid "Enable Google API in Google Settings." msgstr "Aktifkan Google API di Pengaturan Google." -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" msgstr "" -#: email/doctype/email_account/email_account.py:194 +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 msgid "Enable Incoming" msgstr "Aktifkan masuk" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Enable Incoming" -msgstr "Aktifkan masuk" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Onboarding" -msgstr "Aktifkan Onboarding" +msgstr "" -#: email/doctype/email_account/email_account.py:201 +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 msgid "Enable Outgoing" msgstr "Aktifkan Keluar" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Enable Outgoing" -msgstr "Aktifkan Keluar" - -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Enable Outgoing" -msgstr "Aktifkan Keluar" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Password Policy" -msgstr "Aktifkan Kebijakan Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Enable Prepared Report" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Print Server" -msgstr "Aktifkan Server Cetak" +msgstr "" -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Enable Rate Limit" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Raw Printing" -msgstr "Aktifkan Pencetakan Mentah" +msgstr "" -#: core/doctype/report/report.js:36 +#: frappe/core/doctype/report/report.js:39 msgid "Enable Report" msgstr "Aktifkan Laporan" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Scheduled Jobs" -msgstr "Aktifkan Jobs Terjadwal" +msgstr "" -#: core/doctype/rq_job/rq_job_list.js:23 +#: frappe/core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" msgstr "" -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Enable Security" -msgstr "Aktifkan Keamanan" +msgstr "" -#. Label of a Check field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Enable Social Login" -msgstr "Aktifkan Login Sosial" +msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Enable Social Sharing" -msgstr "Aktifkan Berbagi Sosial" +msgstr "" -#: website/doctype/website_settings/website_settings.js:139 +#: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Aktifkan Tampilan Halaman Pelacakan" -#: twofactor.py:456 +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:433 msgid "Enable Two Factor Auth" msgstr "Aktifkan Dua Faktor Auth" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Enable Two Factor Auth" -msgstr "Aktifkan Dua Faktor Auth" - -#. Title of an Onboarding Step -#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json -msgid "Enable Website Tracking" -msgstr "" - -#: printing/doctype/print_format_field_template/print_format_field_template.py:27 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" msgstr "" -#: website/doctype/web_template/web_template.py:33 +#: frappe/website/doctype/web_template/web_template.py:33 msgid "Enable developer mode to create a standard Web Template" msgstr "Aktifkan mode pengembang untuk membuat Template Web standar" #. Description of the 'Enable Email Notification' (Check) field in DocType #. 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "Enable email notification for any comment or likes received on your Blog Post." msgstr "" #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "" -"Enable if on click\n" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" "opens modal." msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the enable_view_tracking (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Enable in-app website tracking" msgstr "" -#: public/js/frappe/model/indicator.js:106 -#: public/js/frappe/model/indicator.js:117 +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Diaktifkan" -#. Label of a Check field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Enabled" -msgstr "Diaktifkan" - -#: core/doctype/rq_job/rq_job_list.js:29 +#: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" msgstr "" -#: email/doctype/email_account/email_account.py:896 +#: frappe/email/doctype/email_account/email_account.py:1010 msgid "Enabled email inbox for user {0}" msgstr "Kotak masuk email yang diaktifkan untuk pengguna {0}" -#: core/doctype/server_script/server_script.py:262 -msgid "Enabled scheduled execution for script {0}" -msgstr "Mengaktifkan eksekusi terjadwal untuk skrip {0}" - -#. Description of the 'Is Calendar and Gantt' (Check) field in DocType -#. 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Enables Calendar and Gantt views." -msgstr "" - #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enables Calendar and Gantt views." msgstr "" -#: email/doctype/email_account/email_account.js:232 +#: frappe/email/doctype/email_account/email_account.js:295 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" msgstr "" -#. Description of the 'Queue in Background (BETA)' (Check) field in DocType -#. 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Enabling this will submit documents in background" +#. Description of a DocType +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enabling this will submit documents in background" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Encrypt Backups" msgstr "" -#: utils/password.py:184 +#: frappe/utils/password.py:197 msgid "Encryption key is in invalid format!" msgstr "" -#: utils/password.py:198 +#: frappe/utils/password.py:212 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" -#: public/js/frappe/utils/common.js:416 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json msgid "End Date" msgstr "Tanggal Berakhir" -#. Label of a Date field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Datetime field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the end_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "End Date Field" -msgstr "Bidang tanggal akhir" +msgstr "" -#: website/doctype/web_page/web_page.py:207 +#: frappe/website/doctype/web_page/web_page.py:208 msgid "End Date cannot be before Start Date!" msgstr "Tanggal Akhir tidak boleh sebelum Tanggal Mulai!" -#. Label of a Datetime field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Ended At" msgstr "" -#. Label of a Datetime field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Ended At" -msgstr "" - -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Endpoint URL" -msgstr "URL titik akhir" - -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" msgstr "" -#. Label of a Datetime field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Ends on" -msgstr "Berakhir pada" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Energy Point" -msgstr "Titik Energi" +msgstr "" -#. Name of a DocType -#: social/doctype/energy_point_log/energy_point_log.json -msgid "Energy Point Log" -msgstr "Energy Point Log" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Energy Point Log" -msgstr "Energy Point Log" - -#. Name of a DocType -#: social/doctype/energy_point_rule/energy_point_rule.json -msgid "Energy Point Rule" -msgstr "Aturan Titik Energi" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Energy Point Rule" -msgstr "Aturan Titik Energi" - -#. Name of a DocType -#: social/doctype/energy_point_settings/energy_point_settings.json -msgid "Energy Point Settings" -msgstr "Pengaturan Titik Energi" - -#: desk/doctype/notification_log/notification_log.py:159 -msgid "Energy Point Update on {0}" -msgstr "Pembaruan Titik Energi pada {0}" - -#: templates/emails/energy_points_summary.html:39 -msgid "Energy Points" -msgstr "Poin Energi" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Energy Points" -msgstr "Poin Energi" - -#. Label of a Data field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Enqueued By" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:105 +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 msgid "Ensure the user and group search paths are correct." msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:92 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 msgid "Enter Client Id and Client Secret in Google Settings." msgstr "Masukkan Id Klien dan Rahasia Klien di Pengaturan Google." -#: public/js/frappe/views/communication.js:663 +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Masukkan Penerima Surel" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enter Form Type" -msgstr "Masukkan Form Type" +msgstr "" -#: public/js/frappe/ui/messages.js:94 +#: frappe/public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" msgid "Enter Value" msgstr "Masukkan Nilai" -#: public/js/frappe/form/form_tour.js:56 +#: frappe/public/js/frappe/form/form_tour.js:60 msgid "Enter a name for this {0}" msgstr "" #. Description of the 'User Defaults' (Table) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "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\"." -msgstr "Masukkan bidang nilai default (kunci) dan nilai-nilai. Jika Anda menambahkan beberapa nilai untuk field, yang pertama akan dijemput. Default ini juga digunakan untuk mengatur "pertandingan" aturan izin. Untuk melihat daftar bidang, pergi ke "Customize Form"." +msgstr "" -#: public/js/frappe/views/file/file_view.js:111 +#: frappe/public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" msgstr "Masukkan nama folder" #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "Entrikan parameter url statis di sini (Misalnya pengirim = ERPNext, username = ERPNext, password = 1234 dll)" +msgstr "" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "Entrikan parameter url untuk pesan" +msgstr "" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "Entrikan parameter url untuk penerima nos" +msgstr "" -#: public/js/frappe/ui/messages.js:334 +#: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" msgstr "Masukkan password Anda" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 msgid "Entity Name" msgstr "Nama kesatuan" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 msgid "Entity Type" msgstr "Jenis Entitas" -#: public/js/frappe/ui/filters/filter.js:16 +#: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "Equals" - -#: desk/page/backups/backups.js:35 model/base_document.py:703 -#: model/base_document.py:708 public/js/frappe/ui/messages.js:22 -msgid "Error" -msgstr "Kesalahan" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Error" -msgstr "Kesalahan" - #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Error" -msgstr "Kesalahan" - -#. Option for the 'Status' (Select) field in DocType 'Email Queue' -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Error" -msgstr "Kesalahan" - +#. Label of the error (Code) field in DocType 'Error Log' #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" msgstr "Kesalahan" -#: public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:240 msgctxt "Title of error message in web form" msgid "Error" msgstr "Kesalahan" -#. Label of a Text field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Error" -msgstr "Kesalahan" - -#: www/error.html:34 -msgid "Error Code: {0}" -msgstr "Kode Kesalahan: {0}" - #. Name of a DocType -#: core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log.json msgid "Error Log" msgstr "Catatan eror" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Error Log" +#: frappe/core/workspace/build/build.json msgid "Error Logs" msgstr "" -#. Label of a Text field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" -msgstr "Pesan eror" +msgstr "" -#: public/js/frappe/form/print_utils.js:126 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

    You need to have QZ Tray application installed and running, to use the Raw Print feature.

    Click here to Download and install QZ Tray.
    Click here to learn more about Raw Printing." msgstr "Kesalahan menyambung ke Aplikasi Baki QZ ...

    Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

    Klik di sini untuk Mengunduh dan menginstal Baki QZ .
    Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." -#: email/doctype/email_domain/email_domain.py:32 +#: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Error connecting via IMAP/POP3: {e}" msgstr "" -#: email/doctype/email_domain/email_domain.py:33 +#: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Error connecting via SMTP: {e}" msgstr "" -#: email/doctype/email_domain/email_domain.py:98 +#: frappe/email/doctype/email_domain/email_domain.py:101 msgid "Error has occurred in {0}" msgstr "Galat telah terjadi di {0}" -#: public/js/frappe/form/script_manager.js:187 +#: frappe/public/js/frappe/form/script_manager.js:199 msgid "Error in Client Script" msgstr "" -#: public/js/frappe/form/script_manager.js:241 +#: frappe/public/js/frappe/form/script_manager.js:256 msgid "Error in Client Script." msgstr "" -#: email/doctype/notification/notification.py:391 -#: email/doctype/notification/notification.py:507 -#: email/doctype/notification/notification.py:513 +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:598 +#: frappe/email/doctype/notification/notification.py:735 +#: frappe/email/doctype/notification/notification.py:741 msgid "Error in Notification" msgstr "Kesalahan dalam Notifikasi" -#: utils/pdf.py:48 +#: frappe/utils/pdf.py:59 msgid "Error in print format on line {0}: {1}" msgstr "" -#: email/doctype/email_account/email_account.py:586 +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Kesalahan saat menyambung ke akun email {0}" -#: email/doctype/notification/notification.py:504 +#: frappe/email/doctype/notification/notification.py:732 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda." -#: model/document.py:808 -msgid "Error: Document has been modified after you have opened it" -msgstr "Kesalahan: Dokumen telah dimodifikasi setelah Anda membukanya" +#: frappe/model/base_document.py:803 +msgid "Error: Data missing in table {0}" +msgstr "" -#: model/base_document.py:716 +#: frappe/model/base_document.py:813 msgid "Error: Value missing for {0}: {1}" msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}" -#. Name of a DocType -#: desk/doctype/event/event.json -msgid "Event" -msgstr "Acara" +#: frappe/model/base_document.py:807 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Event" -msgstr "Acara" - +#. Name of a DocType #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json msgid "Event" msgstr "Acara" -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Event Category" -msgstr "Kategori Peristiwa" +msgstr "" -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Event Frequency" msgstr "" +#. Label of the event_participants (Table) field in DocType 'Event' #. Name of a DocType -#: desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json msgid "Event Participants" msgstr "Peserta Acara" -#. Label of a Table field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Event Participants" -msgstr "Peserta Acara" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Event Reminders" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:455 -#: integrations/doctype/google_calendar/google_calendar.py:539 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 msgid "Event Synced with Google Calendar." msgstr "Acara Disinkronkan dengan Kalender Google." -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json msgid "Event Type" -msgstr "Event Type" +msgstr "" -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Event Type" -msgstr "Event Type" +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" -#: desk/doctype/event/event.py:263 +#: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" msgstr "Acara Dalam Kalender Hari ini" -#. Description of the Onboarding Step 'Create Custom Fields' -#: custom/onboarding_step/custom_field/custom_field.json -msgid "" -"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n" -"\n" -"Once custom fields are added, you can use them for reports and analytics charts as well.\n" -msgstr "" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 msgid "Everyone" -msgstr "Semua orang" +msgstr "" #. Description of the 'Custom Options' (Code) field in DocType 'Dashboard #. Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" -msgstr "Contoh: "colors": ["# d1d8dd", "# ff5858"]" +msgstr "" -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Exact Copies" msgstr "" -#. Label of a HTML field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Example" -msgstr "Contoh" +msgstr "" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Example: \"/desk\"" -msgstr "Contoh: "/ desk"" +msgstr "" #. Description of the 'Path' (Data) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Example: #Tree/Account" -msgstr "Contoh: # Pohon / Akun" +msgstr "" #. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Example: 00001" -msgstr "Contoh: 00001" +msgstr "" #. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." msgstr "" #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Example: {{ subject }}" -msgstr "Contoh: {{subjek}}" +msgstr "" #. Option for the 'File Type' (Select) field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#: frappe/core/doctype/data_export/data_export.json msgid "Excel" -msgstr "Unggul" +msgstr "" -#: public/js/frappe/form/controls/password.js:91 +#: frappe/public/js/frappe/form/controls/password.js:90 msgid "Excellent" msgstr "" -#. Label of a Text field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Exception" -msgstr "Pengecualian" +msgstr "" -#. Label of a Code field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Exception" -msgstr "Pengecualian" - -#. Label of a Long Text field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Exception" -msgstr "Pengecualian" - -#: desk/doctype/system_console/system_console.js:17 -#: desk/doctype/system_console/system_console.js:22 +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json msgid "Execute" msgstr "Menjalankan" -#. Label of a Section Break field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Execute" -msgstr "Menjalankan" - -#: desk/doctype/system_console/system_console.js:10 +#: frappe/desk/doctype/system_console/system_console.js:10 msgid "Execute Console script" msgstr "Jalankan skrip Konsol" -#: desk/doctype/system_console/system_console.js:18 +#: frappe/public/js/frappe/ui/dropdown_console.js:125 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." msgstr "" -#: public/js/frappe/views/reports/query_report.js:1961 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Waktu Eksekusi: {0} dtk" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Executive" msgstr "" -#: public/js/frappe/widgets/base_widget.js:157 +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" msgstr "Memperluas" -#: public/js/frappe/form/controls/code.js:147 +#: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" msgstr "Memperluas" -#: public/js/frappe/views/treeview.js:125 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Melebarkan semua" -#. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Expert" -msgstr "Ahli" - -#. Label of a Datetime field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Expiration time" -msgstr "waktu berakhirnya" - -#. Label of a Datetime field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Expiration time" -msgstr "waktu berakhirnya" - -#. Label of a Date field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Expire Notification On" -msgstr "Berakhir Pemberitahuan On" - -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Expired" -msgstr "Expired" - -#. Label of a Int field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Expires In" -msgstr "Kadaluarsa dalam" - -#. Label of a Int field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Expires In" -msgstr "Kadaluarsa dalam" - -#. Label of a Date field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Expires On" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Expiry time of QR Code Image Page" -msgstr "Waktu kadaluwarsa QR Code Image Page" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" -#: core/doctype/recorder/recorder_list.js:42 -#: public/js/frappe/data_import/data_exporter.js:88 -#: public/js/frappe/data_import/data_exporter.js:239 -#: public/js/frappe/views/reports/query_report.js:1652 -#: public/js/frappe/views/reports/report_view.js:1552 +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Expired" +msgstr "" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "" + +#. Label of the expires_on (Date) field in DocType 'Document Share Key' +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Expires On" +msgstr "Kadaluarsa pada" + +#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 +#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Ekspor" -#: public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Ekspor" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Export" -msgstr "Ekspor" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Export" -msgstr "Ekspor" - -#: public/js/frappe/data_import/data_exporter.js:241 +#: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" msgstr "Ekspor 1 catatan" -#: public/js/frappe/views/reports/report_view.js:1563 -msgid "Export All {0} rows?" -msgstr "Ekspor Semua {0} baris?" - -#: custom/doctype/customize_form/customize_form.js:220 +#: frappe/custom/doctype/customize_form/customize_form.js:262 msgid "Export Custom Permissions" msgstr "Izin khusus ekspor" -#: custom/doctype/customize_form/customize_form.js:200 +#: frappe/custom/doctype/customize_form/customize_form.js:242 msgid "Export Customizations" msgstr "Kustomisasi ekspor" -#: public/js/frappe/data_import/data_exporter.js:14 -msgid "Export Data" -msgstr "Ekspor Data" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Data Export" +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" msgstr "Ekspor Data" -#: core/doctype/data_import/data_import.js:86 -#: public/js/frappe/data_import/import_preview.js:195 +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 msgid "Export Errored Rows" msgstr "Ekspor Baris yang Salah" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Export From" -msgstr "Ekspor Dari" +msgstr "" -#: core/doctype/data_import/data_import.js:535 +#: frappe/core/doctype/data_import/data_import.js:518 msgid "Export Import Log" msgstr "" -#: public/js/frappe/views/reports/report_utils.js:227 +#: frappe/public/js/frappe/views/reports/report_utils.js:235 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Laporan Ekspor: {0}" -#: public/js/frappe/data_import/data_exporter.js:26 +#: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" msgstr "Jenis ekspor" -#: public/js/frappe/views/file/file_view.js:154 +#: frappe/public/js/frappe/views/reports/report_view.js:1638 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1648 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 msgid "Export as zip" msgstr "" -#: public/js/frappe/utils/tools.js:11 +#: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor." #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" msgstr "" -#. Label of a Check field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Export without main header" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/data_import/data_exporter.js:247 msgid "Export {0} records" msgstr "Ekspor {0} catatan" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "Paparan Penerima" +msgstr "" +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Expression" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Expression (old style)" -msgstr "" - -#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression (old style)" msgstr "" #. Description of the 'Condition' (Data) field in DocType 'Notification #. Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "Expression, Opsional" +msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Extra Parameters" msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Facebook" -msgstr "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Failed" -msgstr "Gagal" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Failed" -msgstr "Gagal" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Failed" -msgstr "Gagal" - #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" msgstr "Gagal" -#. Label of a Int field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Failed Job Count" msgstr "" -#: model/workflow.py:305 +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py:306 msgid "Failed Transactions" msgstr "Transaksi Gagal" -#: utils/synchronization.py:46 +#: frappe/utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:360 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 msgid "Failed to change password." msgstr "Gagal mengubah kata sandi." -#: desk/page/setup_wizard/setup_wizard.js:220 +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 msgid "Failed to complete setup" msgstr "Gagal menyelesaikan penyiapan" -#: integrations/doctype/webhook/webhook.py:148 +#: frappe/integrations/doctype/webhook/webhook.py:137 msgid "Failed to compute request body: {}" msgstr "" -#: printing/doctype/network_printer_settings/network_printer_settings.py:45 -#: printing/doctype/network_printer_settings/network_printer_settings.py:47 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 msgid "Failed to connect to server" msgstr "Gagal terhubung ke server" -#: auth.py:649 +#: frappe/auth.py:698 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid." -#: core/doctype/rq_job/rq_job_list.js:33 +#: frappe/utils/password.py:211 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:600 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 msgid "Failed to enable scheduler: {0}" msgstr "" -#: integrations/doctype/webhook/webhook.py:136 +#: frappe/email/doctype/notification/notification.py:99 +#: frappe/integrations/doctype/webhook/webhook.py:127 msgid "Failed to evaluate conditions: {}" msgstr "" -#: types/exporter.py:197 +#: frappe/types/exporter.py:205 msgid "Failed to export python type hints" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:252 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.js:75 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" msgstr "" -#: handler.py:76 +#: frappe/handler.py:75 msgid "Failed to get method for command {0} with {1}" msgstr "" -#: api/v2.py:48 +#: frappe/api/v2.py:46 msgid "Failed to get method {0} with {1}" msgstr "" -#: model/virtual_doctype.py:64 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: utils/image.py:75 +#: frappe/utils/image.py:75 msgid "Failed to optimize image: {0}" msgstr "" -#: email/doctype/email_queue/email_queue.py:278 +#: frappe/email/doctype/notification/notification.py:116 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:134 +msgid "Failed to render subject: {}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +msgid "Failed to request login to Frappe Cloud" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" msgstr "" -#: desk/doctype/notification_log/notification_log.py:41 +#: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:24 +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" msgstr "" -#: core/doctype/data_import/data_import.js:470 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" msgstr "Kegagalan" -#. Label of a Attach field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "FavIcon" -msgstr "FavIcon" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "Fax" +msgstr "" -#: website/doctype/blog_post/templates/blog_post_row.html:19 +#. Label of the featured (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 msgid "Featured" msgstr "Unggulan" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Featured" -msgstr "Unggulan" - -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Umpan balik" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Feedback Request" -msgstr "Masukan Permintaan" +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" -#. Label of a Small Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 msgid "Fetch From" -msgstr "Ambil Dari" +msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fetch From" -msgstr "Ambil Dari" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fetch From" -msgstr "Ambil Dari" - -#: website/doctype/website_slideshow/website_slideshow.js:15 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" msgstr "Ambil Gambar" -#: website/doctype/website_slideshow/website_slideshow.js:13 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" msgstr "Ambil gambar terlampir dari dokumen" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fetch on Save if Empty" -msgstr "" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fetch on Save if Empty" -msgstr "" - -#: desk/doctype/global_search_settings/global_search_settings.py:60 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." msgstr "Mengambil dokumen Penelusuran Global default." -#: desk/page/leaderboard/leaderboard.js:131 -#: public/js/frappe/list/bulk_operations.js:262 -#: public/js/frappe/views/reports/query_report.js:235 -#: public/js/frappe/views/reports/query_report.js:1706 +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Bidang" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Field" -msgstr "Bidang" - -#: core/doctype/doctype/doctype.py:419 +#: frappe/core/doctype/doctype/doctype.py:417 msgid "Field \"route\" is mandatory for Web Views" msgstr "Bidang "rute" adalah wajib untuk Tampilan Web" -#: core/doctype/doctype/doctype.py:1477 +#: frappe/core/doctype/doctype/doctype.py:1526 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" -#: desk/doctype/bulk_update/bulk_update.js:17 +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Kolom \"nilai\" adalah wajib. Silakan tentukan nilai untuk diperbarui" -#. Label of a Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Field Description" -msgstr "Bidang Deskripsi" +msgstr "" -#: core/doctype/doctype/doctype.py:1040 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Field Missing" msgstr "" -#. Label of a Select field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Field Name" -msgstr "Nama Field" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Field Name" -msgstr "Nama Field" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Field To Check" -msgstr "Field Untuk Memeriksa" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 msgid "Field Type" -msgstr "Field Type" +msgstr "" -#: desk/reportview.py:165 +#: frappe/desk/reportview.py:201 msgid "Field not permitted in query" msgstr "" #. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" -msgstr "Kolom yang mewakili Status Alur Kerja transaksi (jika kolom tidak tersedia, Kolom Kustom yang tersembunyi akan dibuat)" +msgstr "" -#. Label of a Select field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Field to Track" -msgstr "Field to Track" +msgstr "" -#: custom/doctype/property_setter/property_setter.py:50 +#: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" msgstr "Jenis lapangan tidak dapat diubah untuk {0}" -#: database/database.py:783 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" -#: desk/form/meta.py:203 +#: frappe/desk/form/meta.py:184 msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: public/js/frappe/form/form.js:1727 +#: frappe/public/js/frappe/form/form.js:1754 msgid "Field {0} not found." msgstr "Bidang {0} tidak ditemukan" -#: custom/doctype/custom_field/custom_field.js:119 -msgid "Fieldname" -msgstr "Fieldname" +#: frappe/email/doctype/notification/notification.py:503 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" -msgstr "Fieldname" +msgstr "" -#. Label of a Select field in DocType 'DocType Layout Field' -#: custom/doctype/doctype_layout_field/doctype_layout_field.json -msgctxt "DocType Layout Field" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Select field in DocType 'Webhook Data' -#: integrations/doctype/webhook_data/webhook_data.json -msgctxt "Webhook Data" -msgid "Fieldname" -msgstr "Fieldname" - -#: core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:270 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: core/doctype/doctype/doctype.py:1039 +#: frappe/core/doctype/doctype/doctype.py:1076 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: database/schema.py:125 database/schema.py:359 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Fieldname dibatasi 64 karakter ({0})" -#: custom/doctype/custom_field/custom_field.py:193 +#: frappe/custom/doctype/custom_field/custom_field.py:197 msgid "Fieldname not set for Custom Field" msgstr "Fieldname tidak ditetapkan untuk Bidang Kustom" -#: custom/doctype/custom_field/custom_field.js:107 +#: frappe/custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." msgstr "Fieldname yang akan menjadi DocType untuk bidang link ini." -#: public/js/form_builder/store.js:170 +#: frappe/public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" msgstr "" -#: database/schema.py:349 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}" -#: core/doctype/doctype/doctype.py:1850 +#: frappe/core/doctype/doctype/doctype.py:1907 msgid "Fieldname {0} conflicting with meta object" msgstr "Fieldname {0} bertentangan dengan objek meta" -#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 +#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Fieldname {0} dibatasi" -#. Label of a Section Break field in DocType 'Customize Form' -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json msgid "Fields" -msgstr "Bidang" +msgstr "" -#. Label of a Table field in DocType 'DocType' -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Table field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Code field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Fields" -msgstr "Bidang" - -#. Label of a HTML field in DocType 'List View Settings' -#. Label of a Code field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Small Text field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Table field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Fields" -msgstr "Bidang" - -#. Label of a HTML field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Fields Multicheck" -msgstr "Bidang Multicheck" +msgstr "" -#: core/doctype/file/file.py:406 +#: frappe/core/doctype/file/file.py:410 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" -msgstr "Fields dipisahkan dengan koma (,) akan dimasukkan dalam "Cari Dengan" daftar pencarian kotak dialog" +msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldtype" -msgstr "Fieldtype" +msgstr "" -#. Label of a Select field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Data field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Fieldtype" -msgstr "Fieldtype" - -#: custom/doctype/custom_field/custom_field.py:189 +#: frappe/custom/doctype/custom_field/custom_field.py:193 msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:586 +#: frappe/custom/doctype/customize_form/customize_form.py:588 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" -#. Name of a DocType -#: core/doctype/file/file.json -msgid "File" -msgstr "Mengajukan" - #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "File" -msgid "File" -msgstr "Mengajukan" - +#. Name of a DocType #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json msgid "File" msgstr "Mengajukan" -#: core/doctype/file/utils.py:126 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 msgid "File '{0}' not found" msgstr "File '{0}' tidak ditemukan" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "File Backup" -msgstr "Cadangan File" - -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "File Backup" -msgstr "Cadangan File" - -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json msgid "File Information" -msgstr "Informasi File" +msgstr "" -#: public/js/frappe/views/file/file_view.js:74 +#: frappe/public/js/frappe/views/file/file_view.js:74 msgid "File Manager" -msgstr "File Manager" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File Name" -msgstr "berkas nama" +msgstr "" -#. Label of a Int field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File Size" -msgstr "Ukuran File" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:19 +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 msgid "File Type" msgstr "Tipe file" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Select field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Code field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File URL" -msgstr "URL File" +msgstr "" -#: desk/page/backups/backups.py:109 +#: frappe/desk/page/backups/backups.py:107 msgid "File backup is ready" msgstr "File cadangan sudah siap" -#: core/doctype/file/file.py:577 +#: frappe/core/doctype/file/file.py:624 msgid "File name cannot have {0}" msgstr "Nama file tidak boleh memuat {0}" -#: utils/csvutils.py:26 +#: frappe/utils/csvutils.py:28 msgid "File not attached" msgstr "Berkas tidak terpasang" -#: core/doctype/file/file.py:682 public/js/frappe/request.js:197 -#: utils/file_manager.py:221 +#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB" -#: public/js/frappe/request.js:195 +#: frappe/public/js/frappe/request.js:198 msgid "File too big" msgstr "File terlalu besar" -#: core/doctype/file/file.py:373 +#: frappe/core/doctype/file/file.py:375 msgid "File type of {0} is not allowed" msgstr "" -#: core/doctype/file/file.py:360 core/doctype/file/file.py:422 +#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 msgid "File {0} does not exist" msgstr "Berkas {0} tidak ada" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "File" +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Files" -msgstr "arsip" +msgstr "" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Files" -msgstr "arsip" - -#: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/ui/filters/filter_list.js:132 +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "Filter" +msgstr "" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "" + +#. Label of the filter_data (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Data" -msgstr "Filter Data" +msgstr "" -#. Label of a HTML field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Filter List" -msgstr "Daftar Filter" +msgstr "" -#. Label of a Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the filter_meta (Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Meta" -msgstr "Filter Meta" +msgstr "" -#: public/js/frappe/list/list_filter.js:33 +#. Label of the filter_name (Data) field in DocType 'List Filter' +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/public/js/frappe/list/list_filter.js:33 msgid "Filter Name" msgstr "Nama filter" -#. Label of a Data field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Filter Name" -msgstr "Nama filter" - -#. Label of a HTML field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Filter Values" -msgstr "Filter Nilai" +msgstr "" -#: utils/data.py:2021 -msgid "Filter must be a tuple or list (in a list)" -msgstr "Filter harus berupa tupel atau daftar (dalam daftar)" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" -#: utils/data.py:2029 -msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" -msgstr "Filter harus memiliki 4 nilai (doctype, fieldname, operator, value): {0}" +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" -#. Label of a Data field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Filtered By" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:33 +#: frappe/public/js/frappe/data_import/data_exporter.js:33 msgid "Filtered Records" msgstr "Catatan yang Difilter" -#: website/doctype/blog_post/blog_post.py:262 -#: website/doctype/help_article/help_article.py:91 www/list.py:45 +#: frappe/website/doctype/blog_post/blog_post.py:268 +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Disaring oleh "{0}"" -#. Label of a Code field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json msgid "Filters" msgstr "Penyaring" -#. Label of a Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Code field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Long Text field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Prepared Report' -#. Label of a Small Text field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Report' -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Filters" -msgstr "Penyaring" - -#: public/js/frappe/ui/filters/filter_list.js:131 -msgid "Filters {0}" +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" msgstr "" -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Filters Configuration" -msgstr "Konfigurasi Filter" - -#. Label of a HTML field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filters Display" -msgstr "filter Tampilan" +msgstr "" -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Filters JSON" -msgstr "Filter JSON" +msgstr "" -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Filters JSON" -msgstr "Filter JSON" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Filters Section" -msgstr "Bagian Filter" +msgstr "" -#: public/js/frappe/form/controls/link.js:486 +#: frappe/public/js/frappe/form/controls/link.js:510 msgid "Filters applied for {0}" msgstr "Filter diterapkan untuk {0}" -#: public/js/frappe/views/kanban/kanban_view.js:186 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 msgid "Filters saved" msgstr "filter tersimpan" #. Description of the 'Script' (Code) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Filters will be accessible via filters.

    Send output as result = [result], or for old style data = [columns], [result]" -msgstr "Filter akan dapat diakses melalui filters .

    Kirim keluaran sebagai result = [result] , atau untuk data = [columns], [result] gaya lama data = [columns], [result]" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:556 +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1427 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 msgid "Find '{0}' in ..." msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:325 -#: public/js/frappe/ui/toolbar/awesome_bar.js:326 -#: public/js/frappe/ui/toolbar/search_utils.js:125 -#: public/js/frappe/ui/toolbar/search_utils.js:128 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 msgid "Find {0} in {1}" msgstr "Cari {0} pada {1}" #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Finished" -msgstr "Jadi" +msgstr "" -#. Label of a Datetime field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Finished At" msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "First Day of the Week" msgstr "" -#: www/complete_signup.html:15 +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Nama Depan" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "First Name" -msgstr "Nama Depan" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "First Name" -msgstr "Nama Depan" - -#. Label of a Data field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" +#. Label of the first_success_message (Data) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json msgid "First Success Message" -msgstr "Pesan Sukses Pertama" +msgstr "" -#: core/report/transaction_log_report/transaction_log_report.py:49 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 msgid "First Transaction" msgstr "Transaksi Pertama" -#: core/doctype/data_export/exporter.py:185 +#: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Data kolom pertama harus kosong." -#: website/doctype/website_slideshow/website_slideshow.js:7 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 msgid "First set the name and save the record." msgstr "Pertama-tama atur nama dan simpan catatannya." -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Flag" -msgstr "Bendera" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Float" -msgstr "Mengapung" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Float" -msgstr "Mengapung" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Float" -msgstr "Mengapung" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Float" -msgstr "Mengapung" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Float" -msgstr "Mengapung" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Float" -msgstr "Mengapung" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Float Precision" -msgstr "Mengapung Presisi" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Fold" -msgstr "Melipat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fold" -msgstr "Melipat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fold" -msgstr "Melipat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fold" -msgstr "Melipat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fold" -msgstr "Melipat" +msgstr "" -#: core/doctype/doctype/doctype.py:1401 +#: frappe/core/doctype/doctype/doctype.py:1450 msgid "Fold can not be at the end of the form" msgstr "Lipat tidak bisa di akhir formulir" -#: core/doctype/doctype/doctype.py:1399 +#: frappe/core/doctype/doctype/doctype.py:1448 msgid "Fold must come before a Section Break" msgstr "Lipat harus datang sebelum Bagian istirahat" -#. Label of a Link field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Folder" -msgstr "Map" +msgstr "" -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "Folder Name" msgstr "" -#: public/js/frappe/views/file/file_view.js:100 +#: frappe/public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)" -#: core/doctype/file/file.py:466 +#: frappe/core/doctype/file/file.py:472 msgid "Folder {0} is not empty" msgstr "Folder {0} tidak kosong" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Folio" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Mengikuti" -#: email/doctype/auto_email_report/auto_email_report.py:124 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" -#: website/doctype/web_form/web_form.py:107 +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:108 msgid "Following fields are missing:" msgstr "bidang berikut yang hilang:" -#: public/js/frappe/ui/field_group.js:133 +#: frappe/public/js/frappe/ui/field_group.js:139 msgid "Following fields have invalid values:" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:314 +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 msgid "Following fields have missing values" msgstr "" -#: public/js/frappe/ui/field_group.js:120 +#: frappe/public/js/frappe/ui/field_group.js:126 msgid "Following fields have missing values:" msgstr "bidang berikut memiliki nilai yang hilang:" -#: email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" msgstr "" -#. Label of a Select field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Font" -msgstr "Font" - -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Font Properties" -msgstr "Properti Font" +msgstr "" -#. Label of a Int field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json msgid "Font Size" -msgstr "Font Size" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Font Size" -msgstr "Font Size" - -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Font Size" -msgstr "Font Size" - -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Fonts" -msgstr "Font" - -#. Label of a Text Editor field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" -msgid "Footer" -msgstr "Footer" - -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Footer" -msgstr "Footer" - -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Footer" -msgstr "Footer" +msgstr "" +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer" -msgstr "Footer" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Footer" -msgstr "Footer" - -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_powered (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer \"Powered By\"" msgstr "" -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Based On" msgstr "" -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Footer Content" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_details_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Details" msgstr "" -#. Label of a HTML Editor field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" -msgstr "Footer HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:72 +#: frappe/printing/doctype/letter_head/letter_head.py:75 msgid "Footer HTML set from attachment {0}" msgstr "" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Image" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer (Section Break) field in DocType 'Website Settings' +#. Label of the footer_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Items" -msgstr "Footer Items" +msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Logo" -msgstr "Logo Footer" +msgstr "" -#. Label of a Link field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template" -msgstr "Template Footer" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template Values" -msgstr "Nilai Template Footer" +msgstr "" -#: printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:116 msgid "Footer might not be visible as {0} option is disabled
" msgstr "" #. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter #. Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer will display correctly only in PDF" -msgstr "Footer akan ditampilkan dengan benar hanya dalam PDF" +msgstr "" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "" #. Description of the 'Row Name' (Data) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "For DocType Link / DocType Action" -msgstr "Untuk Tautan DocType / Tindakan DocType" +msgstr "" -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "For Document Event" -msgstr "Untuk Acara Dokumen" +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:155 +#: frappe/core/doctype/user_permission/user_permission_list.js:155 msgid "For Document Type" msgstr "Untuk Jenis Dokumen" -#: public/js/frappe/widgets/widget_dialog.js:529 +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 msgid "For Example: {} Open" msgstr "Misalnya: {} Buka" +#. Description of the 'Options' (Small Text) field in DocType 'DocField' #. Description of the 'Options' (Small Text) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "" -"For Links, enter the DocType as range.\n" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." msgstr "" -#. Description of the 'Options' (Small Text) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "" -"For Links, enter the DocType as range.\n" -"For Select, enter list of Options, each on a new line." -msgstr "" - -#: core/doctype/user_permission/user_permission_list.js:10 -#: core/doctype/user_permission/user_permission_list.js:148 +#. Label of the for_user (Link) field in DocType 'List Filter' +#. Label of the for_user (Link) field in DocType 'Notification Log' +#. Label of the for_user (Data) field in DocType 'Workspace' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json msgid "For User" msgstr "untuk Pengguna" -#. Label of a Link field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Dynamic Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "For Value" -msgstr "Untuk nilai" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1958 -#: public/js/frappe/views/reports/report_view.js:96 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 +#: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." -#: printing/page/print_format_builder/print_format_builder.js:744 +#: frappe/core/page/permission_manager/permission_manager_help.html:19 +msgid "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." +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "For example:" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:752 msgid "For example: If you want to include the document ID, use {0}" msgstr "Sebagai contoh: Jika Anda ingin memasukkan ID dokumen, gunakan {0}" #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "For example: {} Open" -msgstr "Misalnya: {} Buka" +msgstr "" -#. Description of the 'Client Script' (Code) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Description of the 'Client script' (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "For help see Client Script API and Examples" -msgstr "Untuk bantuan, lihat API dan Contoh Skrip Klien" +msgstr "" #. Description of the 'Enable Automatic Linking in Documents' (Check) field in #. DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "For more information, click here." -msgstr "Untuk informasi lebih lanjut, klik di sini ." +msgstr "" -#: integrations/doctype/google_settings/google_settings.js:7 +#: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Untuk informasi lebih lanjut, {0}." #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" msgstr "" -#: core/doctype/data_export/exporter.py:199 +#: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." msgstr "Untuk memperbarui, Anda hanya dapat memperbarui kolom tertentu." -#: core/doctype/doctype/doctype.py:1692 +#: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}" +#. Label of the force (Check) field in DocType 'Package Import' #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Force" -msgstr "Memaksa" +msgstr "" -#. Label of a Check field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" -msgid "Force" -msgstr "Memaksa" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Force Re-route to Default View" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Force Re-route to Default View" -msgstr "" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Force Show" -msgstr "Angkatan Tampilkan" +msgstr "" -#: core/doctype/rq_job/rq_job.js:13 +#: frappe/core/doctype/rq_job/rq_job.js:13 msgid "Force Stop job" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Force User to Reset Password" -msgstr "Paksa Pengguna untuk Mengatur Ulang Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Force Web Capture Mode for Uploads" msgstr "" -#: www/login.html:35 +#: frappe/www/login.html:37 msgid "Forgot Password?" msgstr "Lupa kata sandi?" -#: printing/page/print/print.js:83 -msgid "Form" -msgstr "" - +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Form" -msgstr "" - -#. Label of a Tab Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Form" -msgstr "" - -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form" -msgstr "" - +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:83 +#: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Form" -msgstr "" - -#. Label of a HTML field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Form Builder" msgstr "" -#. Label of a HTML field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form Builder" -msgstr "" - -#. Label of a Code field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Form Dict" msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Name of a DocType -#: desk/doctype/form_tour/form_tour.json -msgid "Form Tour" msgstr "" -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Form Tour" msgstr "" #. Name of a DocType -#: desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Form Tour Step" msgstr "" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "Form URL-Encoded" -msgstr "Form URL-Encoded" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:528 +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 msgid "Format" -msgstr "Format" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Format" -msgstr "Format" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Format" -msgstr "Format" - -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Format Data" -msgstr "Format data" +msgstr "" -#: core/doctype/communication/communication.js:70 +#: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Meneruskan" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Forward To Email Address" -msgstr "Teruskan Ke Alamat Surel" +msgstr "" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Fraction" -msgstr "Pecahan" +msgstr "" -#. Label of a Int field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Fraction Units" -msgstr "Unit Fraksi" - -#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134 -msgid "Frappe" -msgstr "Frape" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 msgid "Frappe" msgstr "Frape" -#: public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" msgstr "Frappe Kerangka" -#: public/js/frappe/ui/theme_switcher.js:59 +#: frappe/public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" msgstr "" +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "" + #. Label of a standard help item -#. Type: Action -#: hooks.py +#. Type: Route +#: frappe/hooks.py msgid "Frappe Support" msgstr "" -#: public/js/frappe/utils/common.js:395 -msgid "Frequency" -msgstr "Frekuensi" +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Frequency" -msgstr "Frekuensi" +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" -#. Label of a Select field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 msgid "Frequency" msgstr "Frekuensi" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Friday" -msgstr "Jum'at" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Friday" -msgstr "Jum'at" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Friday" -msgstr "Jum'at" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Friday" -msgstr "Jum'at" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Friday" -msgstr "Jum'at" +msgstr "" -#: public/js/frappe/views/communication.js:170 -#: public/js/frappe/views/inbox/inbox_view.js:70 +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Dari" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" msgid "From" msgstr "Dari" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "From" -msgstr "Dari" - -#: website/report/website_analytics/website_analytics.js:8 +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 msgid "From Date" msgstr "Dari Tanggal" -#. Label of a Date field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "From Date" -msgstr "Dari Tanggal" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the from_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "From Date Field" -msgstr "Dari Kolom Tanggal" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1672 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Dari Jenis Dokumen" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "Dari Nama Lengkap" +msgstr "" -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "From User" -msgstr "Dari Pengguna" +msgstr "" -#: public/js/frappe/utils/diffview.js:30 +#: frappe/public/js/frappe/utils/diffview.js:31 msgid "From version" msgstr "" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Full" -msgstr "Penuh" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4 +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#. Label of the full_name (Data) field in DocType 'Blogger' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Nama Lengkap" -#. Label of a Data field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Full Name" -msgstr "Nama Lengkap" - -#: printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:67 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "Full Page" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Full Width" -msgstr "Lebar Penuh" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:245 -#: public/js/frappe/widgets/widget_dialog.js:666 +#. Label of the function (Select) field in DocType 'Number Card' +#. Label of the report_function (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Fungsi" -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Function" -msgstr "Fungsi" - -#: public/js/frappe/widgets/widget_dialog.js:673 +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 msgid "Function Based On" msgstr "Fungsi Berdasarkan" -#: __init__.py:835 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" -#: public/js/frappe/views/treeview.js:402 +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'" -#: core/doctype/communication/communication.js:291 +#: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" -msgstr "Fw: {0}" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "GET" msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "GMail" -msgstr "GMail" +msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "GNU Affero General Public License" msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "GNU General Public License" msgstr "" -#: public/js/frappe/views/gantt/gantt_view.js:10 -msgid "Gantt" -msgstr "Gantt" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 msgid "Gantt" -msgstr "Gantt" - -#. Name of a DocType -#: contacts/doctype/gender/gender.json -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Data field in DocType 'Gender' -#: contacts/doctype/gender/gender.json -msgctxt "Gender" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Title of an Onboarding Step -#: custom/onboarding_step/report_builder/report_builder.json -msgid "Generate Custom Reports" msgstr "" -#. Label of a Button field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Generate Keys" -msgstr "Hasilkan Kunci" +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:803 +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "Jenis Kelamin" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Hasilkan Laporan Baru" -#: public/js/frappe/ui/toolbar/awesome_bar.js:366 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 msgid "Generate Random Password" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:137 -#: public/js/frappe/utils/utils.js:1750 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Geolocation" -msgstr "Geolokasi" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Geolocation" -msgstr "Geolokasi" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Geolocation" -msgstr "Geolokasi" +msgstr "" -#: email/doctype/notification/notification.js:170 +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:219 msgid "Get Alerts for Today" msgstr "Dapatkan Pemberitahuan untuk Hari ini" -#: desk/page/backups/backups.js:19 +#: frappe/desk/page/backups/backups.js:21 msgid "Get Backup Encryption Key" msgstr "" -#. Label of a Button field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Get Contacts" -msgstr "Dapatkan Kontak" +msgstr "" -#: website/doctype/web_form/web_form.js:84 +#: frappe/website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "Dapatkan Fields" -#: public/js/frappe/form/multi_select_dialog.js:85 +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 msgid "Get Items" msgstr "Dapatkan Produk" -#: integrations/doctype/connected_app/connected_app.js:6 +#: frappe/integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" msgstr "" -#: www/printview.html:22 +#: frappe/www/printview.html:22 msgid "Get PDF" msgstr "" #. Description of the 'Try a Naming Series' (Data) field in DocType 'Document #. Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Get a preview of generated names with a series." msgstr "" +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "" + #. Description of the 'Email Threads on Assigned Document' (Check) field in #. DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Get notified when an email is received on any of the documents assigned to you." msgstr "" #. Description of the 'User Image' (Attach Image) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Get your globally recognized avatar from Gravatar.com" -msgstr "Dapatkan avatar Anda diakui secara global dari Gravatar.com" +msgstr "" -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json msgid "Git Branch" -msgstr "Cabang Git" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "GitHub" -msgstr "GitHub" +msgstr "" -#: social/doctype/energy_point_settings/energy_point_settings.js:7 -#: social/doctype/energy_point_settings/energy_point_settings.js:14 -msgid "Give Review Points" -msgstr "Berikan Poin Ulasan" +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" #. Name of a DocType -#: desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json msgid "Global Search DocType" msgstr "DocType Pencarian Global" -#: desk/doctype/global_search_settings/global_search_settings.js:24 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 msgid "Global Search Document Types Reset." msgstr "Reset Jenis Dokumen Pencarian Global." #. Name of a DocType -#: desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Global Search Settings" msgstr "Pengaturan Pencarian Global" -#: public/js/frappe/ui/keyboard.js:118 +#: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" msgstr "Pintasan Global" -#. Label of a Check field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Global Unsubscribe" -msgstr "Global yang Unsubscribe" +msgstr "" -#: desk/page/user_profile/user_profile_controller.js:68 -#: public/js/frappe/form/toolbar.js:767 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Pergi" -#: public/js/frappe/widgets/onboarding_widget.js:246 -#: public/js/frappe/widgets/onboarding_widget.js:326 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 msgid "Go Back" msgstr "Kembali" -#: desk/doctype/notification_settings/notification_settings.js:17 +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 msgid "Go to Notification Settings List" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Go to Page" -msgstr "Buka halaman" +msgstr "" -#: public/js/workflow_builder/workflow_builder.bundle.js:41 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 msgid "Go to Workflow" msgstr "" -#: desk/doctype/workspace/workspace.js:18 +#: frappe/desk/doctype/workspace/workspace.js:18 msgid "Go to Workspace" msgstr "" -#: public/js/frappe/form/form.js:144 +#: frappe/public/js/frappe/form/form.js:144 msgid "Go to next record" msgstr "Pergi ke catatan berikutnya" -#: public/js/frappe/form/form.js:154 +#: frappe/public/js/frappe/form/form.js:154 msgid "Go to previous record" msgstr "Pergi ke catatan sebelumnya" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 msgid "Go to the document" msgstr "Pergi ke dokumen" #. Description of the 'Success URL' (Data) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json msgid "Go to this URL after completing the form" msgstr "" -#: core/doctype/doctype/doctype.js:54 -#: custom/doctype/client_script/client_script.js:10 +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:10 msgid "Go to {0}" msgstr "Pergi ke {0}" -#: core/doctype/data_import/data_import.js:92 -#: core/doctype/doctype/doctype.js:58 -#: custom/doctype/customize_form/customize_form.js:104 -#: custom/doctype/doctype_layout/doctype_layout.js:42 -#: workflow/doctype/workflow/workflow.js:44 +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 msgid "Go to {0} List" msgstr "Buka Daftar {0}" -#: core/doctype/page/page.js:11 +#: frappe/core/doctype/page/page.js:11 msgid "Go to {0} Page" msgstr "Buka Halaman {0}" -#: utils/goal.py:115 utils/goal.py:122 +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 msgid "Goal" msgstr "Sasaran" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Google" -msgstr "Google" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics ID" -msgstr "Google Analytics ID" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics anonymise IP" msgstr "" +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' #. Name of a DocType -#: integrations/doctype/google_calendar/google_calendar.json -msgid "Google Calendar" -msgstr "Kalender Google" - -#. Label of a Section Break field in DocType 'Event' -#. Label of a Link field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Google Calendar" -msgstr "Kalender Google" - -#. Label of a Section Break field in DocType 'Google Calendar' +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' #. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Calendar" +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Calendar" msgstr "Kalender Google" -#: integrations/doctype/google_calendar/google_calendar.py:781 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:251 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:575 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." msgstr "Kalender Google - Tidak dapat menghapus Acara {0} dari Kalender Google, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:288 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." msgstr "Kalender Google - Tidak dapat mengambil acara dari Kalender Google, kode kesalahan {0}." -#: integrations/doctype/google_contacts/google_contacts.py:229 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." msgstr "Kalender Google - Tidak dapat memasukkan kontak ke dalam Kontak Google {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:458 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." msgstr "Kalender Google - Tidak dapat menyisipkan acara di Kalender Google {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:542 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." msgstr "Kalender Google - Tidak dapat memperbarui Acara {0} di Kalender Google, kode kesalahan {1}." -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Google Calendar Event ID" -msgstr "ID Peristiwa Kalender Google" +msgstr "" -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Google Calendar ID" -msgstr "ID Kalender Google" +msgstr "" -#. Label of a Data field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "Google Calendar ID" -msgstr "ID Kalender Google" - -#: integrations/doctype/google_calendar/google_calendar.py:166 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 msgid "Google Calendar has been configured." msgstr "Kalender Google telah dikonfigurasi." +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' #. Name of a DocType -#: integrations/doctype/google_contacts/google_contacts.json -msgid "Google Contacts" -msgstr "Kontak Google" - -#. Label of a Section Break field in DocType 'Contact' -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Google Contacts" -msgstr "Kontak Google" - -#. Label of a Section Break field in DocType 'Google Contacts' +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' #. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_contacts/google_contacts.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Contacts" +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" msgstr "Kontak Google" -#: integrations/doctype/google_contacts/google_contacts.py:136 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." msgstr "Google Kontak - Tidak dapat menyinkronkan kontak dari Google Kontak {0}, kode kesalahan {1}." -#: integrations/doctype/google_contacts/google_contacts.py:291 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." msgstr "Google Kontak - Tidak dapat memperbarui kontak di Google Kontak {0}, kode kesalahan {1}." -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Google Contacts Id" -msgstr "Google Kontak Id" +msgstr "" -#. Name of a DocType -#: integrations/doctype/google_drive/google_drive.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" -msgstr "Google Drive" +msgstr "" -#. Label of a Section Break field in DocType 'Google Drive' -#. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_drive/google_drive.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Drive" -msgid "Google Drive" -msgstr "Google Drive" - -#: integrations/doctype/google_drive/google_drive.py:118 -msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Tidak dapat membuat folder di Google Drive - Kode Kesalahan {0}" - -#: integrations/doctype/google_drive/google_drive.py:134 -msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Tidak dapat menemukan folder di Google Drive - Kode Kesalahan {0}" - -#: integrations/doctype/google_drive/google_drive.py:196 -msgid "Google Drive - Could not locate - {0}" -msgstr "Google Drive - Tidak dapat menemukan - {0}" - -#: integrations/doctype/google_drive/google_drive.py:207 -msgid "Google Drive Backup Successful." -msgstr "Cadangan Google Drive Berhasil." - -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker" msgstr "" -#. Label of a Check field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker Enabled" msgstr "" -#. Label of a Data field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json msgid "Google Font" -msgstr "Google Font" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Google Font" -msgstr "Google Font" - -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Google Meet Link" msgstr "" #. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Services" msgstr "Layanan Google" #. Name of a DocType -#: integrations/doctype/google_settings/google_settings.json -msgid "Google Settings" -msgstr "Pengaturan Google" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Settings" +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" msgstr "Pengaturan Google" -#: utils/csvutils.py:199 +#: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." msgstr "URL Google Spreadsheet tidak valid atau tidak dapat diakses publik." -#: utils/csvutils.py:204 +#: frappe/utils/csvutils.py:231 msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Spreadsheet harus diakhiri dengan "gid = {number}". Salin dan tempel URL dari bilah alamat browser dan coba lagi." -#. Label of a HTML field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the google_preview (HTML) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Google Snippet Preview" -msgstr "Pratinjau Google Snippet" +msgstr "" -#. Label of a Select field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" -msgstr "Jenis Donasi" +msgstr "" -#: public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 msgid "Graph" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" msgstr "" -#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Gray" +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Green" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Green" +msgstr "Hijau" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" msgstr "" -#: public/js/frappe/ui/keyboard.js:123 +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" msgstr "" -#. Label of a Data field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Group" msgstr "Grup" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Group" -msgstr "Grup" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Group" -msgstr "Grup" - -#: website/report/website_analytics/website_analytics.js:32 -msgid "Group By" -msgstr "Dikelompokkan oleh" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" msgstr "Dikelompokkan oleh" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Based On" -msgstr "Kelompok Berdasarkan Berdasarkan" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Type" -msgstr "Kelompokkan menurut Jenis" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:408 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 msgid "Group By field is required to create a dashboard chart" msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor" -#: public/js/frappe/views/treeview.js:401 +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Node Grup" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:415 +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}
" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "HEAD" msgstr "" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm" -msgstr "HH: mm" +msgstr "" +#. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm:ss" -msgstr "HH: mm: dd" - -#: printing/doctype/print_format/print_format.py:93 -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "HTML" -msgstr "HTML" - -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "HTML" -msgstr "HTML" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "HTML" -msgstr "HTML" - -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "HTML" -msgstr "HTML" - +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "HTML" -msgstr "HTML" - #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "HTML" -msgstr "HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "HTML Editor" -msgstr "Editor HTML" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "HTML Editor" -msgstr "Editor HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "HTML Editor" -msgstr "Editor HTML" +msgstr "" -#. Label of a HTML Editor field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "HTML Page" -msgstr "Halaman HTML" +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "HTML for header section. Optional" -msgstr "HTML untuk bagian header. Pilihan" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Half" -msgstr "Setengah" +msgstr "" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Half Yearly" -msgstr "Setengah Tahunan" - -#: public/js/frappe/utils/common.js:402 -msgid "Half-yearly" -msgstr "Setengah tahun" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 msgid "Half-yearly" msgstr "Setengah tahun" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Has Attachment" -msgstr "memiliki Lampiran" +msgstr "" #. Name of a DocType -#: core/doctype/has_domain/has_domain.json +#: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" msgstr "Memiliki Domain" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Has Next Condition" msgstr "" #. Name of a DocType -#: core/doctype/has_role/has_role.json +#: frappe/core/doctype/has_role/has_role.json msgid "Has Role" msgstr "memiliki Peran" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Has Web View" -msgstr "Memiliki Web View" +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" -#: templates/signup.html:19 +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 msgid "Have an account? Login" msgstr "Punya akun? Masuk" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "Header" +msgstr "" -#. Label of a Check field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" -msgstr "Header HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:60 +#: frappe/printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" msgstr "Set HTML header dari lampiran {0}" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Header and Breadcrumbs" -msgstr "Header dan Breadcrumbs" +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Header, Robots" msgstr "" -#. Label of a Table field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Headers" -msgstr "Judul" +msgstr "" -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Headers" -msgstr "Judul" - -#: printing/page/print_format_builder/print_format_builder.js:602 -msgid "Heading" -msgstr "Kepala" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Heading" -msgstr "Kepala" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Heading" -msgstr "Kepala" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Heading" -msgstr "Kepala" +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Heading" -msgstr "Kepala" - -#. Label of a Data field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Heading" msgstr "Kepala" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Heatmap" -msgstr "Peta panas" +msgstr "" -#: templates/emails/new_user.html:2 +#: frappe/templates/emails/new_user.html:2 msgid "Hello" msgstr "" -#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27 -msgid "Help" -msgstr "Bantuan" - -#. Label of a HTML field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Help" -msgstr "Bantuan" - -#. Label of a Section Break field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 msgid "Help" msgstr "Bantuan" #. Name of a DocType -#: website/doctype/help_article/help_article.json -msgid "Help Article" -msgstr "Bantuan Pasal" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json msgid "Help Article" msgstr "Bantuan Pasal" -#. Label of a Int field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Help Articles" msgstr "Bantuan Artikel" #. Name of a DocType -#: website/doctype/help_category/help_category.json -msgid "Help Category" -msgstr "Bantuan Kategori" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Help Category" +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json msgid "Help Category" msgstr "Bantuan Kategori" -#. Label of a Table field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" -msgstr "Bantuan Dropdown" +msgstr "" -#. Label of a HTML field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "Bantuan HTML" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:149 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" msgstr "Bantuan Pencarian" #. Description of the 'Content' (Text Editor) field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#: frappe/desk/doctype/note/note.json msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" msgstr "" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Helpful" msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "Helvetica" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" msgstr "" -#: public/js/frappe/utils/utils.js:1747 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" -#: www/qrcode.html:9 +#: frappe/www/qrcode.html:9 msgid "Hi {0}" msgstr "Hai {0}" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Hidden" -msgstr "Tersembunyi" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Section Break field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 -msgid "Hide" -msgstr "Menyembunyikan" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Menyembunyikan" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Hide Block" -msgstr "Sembunyikan Blokir" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Buttons" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the hide_cta (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Hide CTA" -msgstr "Sembunyikan CTA" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Hide Copy" -msgstr "Sembunyikan Duplikat" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Hide Copy" -msgstr "Sembunyikan Duplikat" - -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "Sembunyikan DocTypes dan Laporan Kustom" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Days" -msgstr "Sembunyikan Hari" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Days" -msgstr "Sembunyikan Hari" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Days" -msgstr "Sembunyikan Hari" - -#: core/doctype/user_permission/user_permission_list.js:96 +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" msgstr "" -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Hide Descendants" +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" msgstr "" -#: www/error.html:41 www/error.html:56 +#: frappe/www/error.html:62 msgid "Hide Error" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Hide Login" -msgstr "Sembunyikan Login" +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" -#: public/js/form_builder/form_builder.bundle.js:43 -#: public/js/print_format_builder/print_format_builder.bundle.js:54 +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" msgstr "" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Previous, Next and Close button on highlight dialog." msgstr "" -#: public/js/frappe/list/list_filter.js:87 +#: frappe/public/js/frappe/list/list_filter.js:94 msgid "Hide Saved" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Seconds" -msgstr "Sembunyikan Detik" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Seconds" -msgstr "Sembunyikan Detik" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Seconds" -msgstr "Sembunyikan Detik" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" msgstr "" -#. Label of a Check field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" -msgstr "Sembunyikan Menu Standar" +msgstr "" -#: public/js/frappe/list/list_view.js:1566 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:184 +#: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Hide Weekends" msgstr "Sembunyikan Akhir Pekan" -#: public/js/frappe/views/workspace/workspace.js:815 -msgid "Hide Workspace" -msgstr "" - #. Description of the 'Hide Descendants' (Check) field in DocType 'User #. Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#: frappe/core/doctype/user_permission/user_permission.json msgid "Hide descendant records of For Value." msgstr "" -#: public/js/frappe/form/layout.js:260 +#: frappe/public/js/frappe/form/layout.js:286 msgid "Hide details" msgstr "Sembunyikan detail" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Hide footer in auto email reports" -msgstr "Sembunyikan footer di laporan email otomatis" +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Hide footer signup" msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:198 -msgid "High" -msgstr "Tinggi" +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 msgid "High" msgstr "Tinggi" #. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Higher priority rule will be applied first" -msgstr "Aturan prioritas yang lebih tinggi akan diterapkan terlebih dahulu" +msgstr "" -#. Label of a Text field in DocType 'Company History' -#: website/doctype/company_history/company_history.json -msgctxt "Company History" +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json msgid "Highlight" -msgstr "Menyoroti" +msgstr "" -#: www/update-password.html:271 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Petunjuk: Sertakan simbol, angka dan huruf kapital di dalam kata sandi" -#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67 -#: public/js/frappe/views/file/file_view.js:88 -#: public/js/frappe/views/pageview.js:149 templates/doc.html:19 -#: templates/includes/navbar/navbar.html:9 -#: website/doctype/blog_post/blog_post.py:153 -#: website/doctype/blog_post/blog_post.py:265 -#: website/doctype/blog_post/blog_post.py:267 -#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22 -#: www/error.html:30 www/login.html:150 www/message.html:34 +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/templates/includes/navbar/navbar.html:9 +#: frappe/website/doctype/blog_post/blog_post.py:159 +#: frappe/website/doctype/blog_post/blog_post.py:271 +#: frappe/website/doctype/blog_post/blog_post.py:273 +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/web_template/primary_navbar/primary_navbar.html:9 +#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 msgid "Home" msgstr "Rumah" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Home" -msgstr "Rumah" - -#. Label of a Data field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Home Page" -msgstr "Home Page" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Home Page" -msgstr "Home Page" - -#. Label of a Code field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Home Settings" -msgstr "Pengaturan Beranda" +msgstr "" -#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301 -#: core/doctype/file/test_file.py:365 +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 msgid "Home/Test Folder 1" msgstr "Rumah / Test Folder 1" -#: core/doctype/file/test_file.py:354 +#: frappe/core/doctype/file/test_file.py:376 msgid "Home/Test Folder 1/Test Folder 3" msgstr "Rumah / Test Folder 1 / Test Folder 3" -#: core/doctype/file/test_file.py:310 +#: frappe/core/doctype/file/test_file.py:332 msgid "Home/Test Folder 2" msgstr "Rumah / Test Folder 2" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Hourly" -msgstr "Per jam" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Hourly" -msgstr "Per jam" - #. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json msgid "Hourly" -msgstr "Per jam" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Hourly Long" -msgstr "Per Jam Panjang" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Hourly Long" -msgstr "Per Jam Panjang" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Hourly rate limit for generating password reset links" -msgstr "Batas tarif per jam untuk membuat tautan pengaturan ulang kata sandi" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Jam" #. Description of the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "Bagaimana seharusnya mata uang ini akan diformat? Jika tidak diatur, akan menggunakan default sistem" +msgstr "" -#: core/doctype/data_import/importer.py:1120 -#: core/doctype/data_import/importer.py:1126 -#: core/doctype/data_import/importer.py:1192 -#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36 -#: model/__init__.py:137 model/meta.py:45 -#: public/js/frappe/data_import/data_exporter.js:326 -#: public/js/frappe/data_import/data_exporter.js:341 -#: public/js/frappe/list/list_view.js:355 -#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197 -#: public/js/frappe/model/model.js:112 +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:337 +#: frappe/public/js/frappe/list/list_view.js:383 +#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "ID" +msgstr "" -#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920 +#: frappe/desk/reportview.py:491 +#: frappe/public/js/frappe/views/reports/report_view.js:984 msgctxt "Label of name column in report" msgid "ID" -msgstr "ID" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "ID (nama) dari entitas yang properti harus ditetapkan" +msgstr "" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "IMAP Details" msgstr "" +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' #. Name of a DocType -#: email/doctype/imap_folder/imap_folder.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" msgstr "" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "IMAP Folder" -msgstr "" - -#. Label of a Table field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "IMAP Folder" -msgstr "" - -#. Label of a Data field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json msgid "IP Address" -msgstr "Alamat IP" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "IP Address" -msgstr "Alamat IP" - -#: public/js/frappe/views/workspace/workspace.js:632 -#: public/js/frappe/views/workspace/workspace.js:960 -#: public/js/frappe/views/workspace/workspace.js:1205 -msgid "Icon" -msgstr "Ikon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Icon" -msgstr "Ikon" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Icon" -msgstr "Ikon" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Select field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Icon field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon" msgstr "Ikon" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon will appear on the button" -msgstr "Icon akan muncul pada tombol" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Identity Details" -msgstr "Rincian identitas" +msgstr "" -#. Label of a Int field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "idx" +msgstr "" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "Jika Menerapkan Izin Pengguna yang Ketik dicentang dan Izin Pengguna ditetapkan untuk DocType untuk Pengguna, maka semua dokumen yang nilai linknya kosong, tidak akan ditampilkan ke User tersebut." +msgstr "" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "If Checked workflow status will not override status in list view" -msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar" - #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "If Checked workflow status will not override status in list view" -msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar" +msgstr "" -#: core/doctype/doctype/doctype.py:1706 +#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" msgstr "Jika Owner" +#: frappe/core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + #. Description of the 'Is Active' (Check) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "If checked, all other workflows become inactive." -msgstr "Jika dicentang, semua alur kerja lain menjadi tidak aktif." +msgstr "" #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" msgstr "" #. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth #. Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "If checked, users will not see the Confirm Access dialog." -msgstr "Jika dicentang, pengguna tidak akan melihat dialog Confirm Access." +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna." +msgstr "" #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "Jika diaktifkan, pengguna dapat masuk dari Alamat IP apa pun menggunakan Two Factor Auth, ini juga dapat diatur untuk semua pengguna di Pengaturan Sistem" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "Jika diaktifkan, semua pengguna dapat masuk dari Alamat IP apa pun menggunakan Autentikasi Dua Faktor. Ini juga dapat diatur hanya untuk pengguna tertentu di Halaman Pengguna" +msgstr "" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "Jika diaktifkan, perubahan pada dokumen dilacak dan ditampilkan dalam timeline" +msgstr "" #. Description of the 'Track Views' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "Jika diaktifkan, tampilan dokumen dilacak, ini dapat terjadi beberapa kali" +msgstr "" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "Jika diaktifkan, dokumen ditandai sebagai terlihat, pertama kali pengguna membukanya" +msgstr "" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "Jika diaktifkan, notifikasi akan muncul di drop-down notifikasi di sudut kanan atas bilah navigasi." +msgstr "" #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong." -msgstr "Jika diaktifkan, kekuatan kata sandi akan diberlakukan berdasarkan nilai Skor Minimum Kata Sandi. Nilai 2 menjadi medium kuat dan 4 sangat kuat." +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" #. Description of the 'Bypass Two Factor Auth for users who login from #. restricted IP Address' (Check) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "Jika diaktifkan, pengguna yang masuk dari Alamat IP Terbatas, tidak akan diminta untuk Autentikasi Dua Faktor" +msgstr "" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#: frappe/desk/doctype/note/note.json msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "Jika diaktifkan, pengguna akan diberitahu setiap kali mereka login. Jika tidak diaktifkan, pengguna hanya akan diberitahu satu kali." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_domain/email_domain.json msgid "If non standard port (e.g. 587)" -msgstr "Jika port non standar (misalnya 587)" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "Jika port non standar (misalnya 587). Jika di Google Cloud, coba port 2525." +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)" - #. Description of the 'Port' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)" +msgstr "" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If not set, the currency precision will depend on number format" -msgstr "Jika tidak diset, presisi mata uang akan tergantung pada format angka" +msgstr "" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n" -msgstr "" - #. Description of the 'User Type' (Link) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" -msgstr "Jika pengguna memiliki peran apapun diperiksa, maka pengguna menjadi "Sistem Pengguna". "Sistem Pengguna" memiliki akses ke desktop" - -#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom -#. Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "If unchecked, the value will always be re-fetched on save." msgstr "" -#. Description of the 'Fetch on Save if Empty' (Check) field in DocType -#. 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "If unchecked, the value will always be re-fetched on save." +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "If unchecked, the value will always be re-fetched on save." msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "If user is the owner" -msgstr "Jika pengguna adalah pemilik" +msgstr "" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "If user is the owner" -msgstr "Jika pengguna adalah pemilik" - -#: core/doctype/data_export/exporter.py:206 +#: frappe/core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." msgstr "Jika Anda memperbarui, silahkan pilih \"Overwrite\" baris lain yang ada tidak akan dihapus." -#: core/doctype/data_export/exporter.py:190 +#: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." msgstr "Jika Anda mengunggah data baru, \"Seri Penamaan\" menjadi wajib, jika ada." -#: core/doctype/data_export/exporter.py:187 +#: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Jika Anda mengunggah catatan baru, biarkan kolom \"nama\" (ID) kosong." -#: utils/password.py:200 -msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key." -msgstr "" - -#: core/doctype/doctype/doctype.js:80 -msgid "If you just want to customize for your site, use {0} instead." +#: frappe/utils/password.py:214 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "Jika Anda mengatur ini, item ini akan datang dalam drop-down di bawah induk yang dipilih." +msgstr "" -#: templates/emails/administrator_logged_in.html:3 +#: frappe/templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." msgstr "Jika Anda pikir ini adalah tidak sah, silakan mengubah password Administrator." +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + #. Description of the 'Source Text' (Code) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/translation/translation.json msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "Jika data Anda di HTML, silahkan copy paste kode HTML yang tepat dengan tag." +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" +msgstr "" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Ignore attachments over this size" -msgstr "Abaikan lampiran atas ukuran ini" - #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Ignore attachments over this size" -msgstr "Abaikan lampiran atas ukuran ini" +msgstr "" -#. Label of a Table field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Ignored Apps" -msgstr "Aplikasi yang Diabaikan" +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:349 -msgid "Illegal Access Token. Please try again" -msgstr "Ilegal Access Token. Silakan coba lagi" - -#: model/workflow.py:143 +#: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" msgstr "Status Dokumen Ilegal untuk {0}" -#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128 +#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 +#: frappe/model/db_query.py:1129 msgid "Illegal SQL Query" msgstr "Query SQL Ilegal" -#: utils/jinja.py:95 +#: frappe/utils/jinja.py:127 msgid "Illegal template" msgstr "" -#. Label of a Attach Image field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Image" -msgstr "Gambar" - +#. Label of the image (Attach Image) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Image" -msgstr "Gambar" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Image" -msgstr "Gambar" - +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' -#. Label of a Attach Image field in DocType 'Letter Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Image" -msgstr "Gambar" +msgstr "" -#. Label of a Attach Image field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Image" -msgstr "Gambar" - -#. Label of a Attach field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Image" -msgstr "Gambar" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Image Field" -msgstr "Bidang gambar" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Image Field" -msgstr "Bidang gambar" - -#. Label of a Float field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Height" msgstr "" -#. Label of a Attach field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "Image Link" -msgstr "Image Link" +msgstr "" -#. Label of a Float field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Width" msgstr "" -#: core/doctype/doctype/doctype.py:1457 +#: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" msgstr "bidang gambar harus fieldname valid" -#: core/doctype/doctype/doctype.py:1459 +#: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" msgstr "bidang gambar harus dari jenis Lampirkan gambar" -#: core/doctype/file/utils.py:134 +#: frappe/core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" msgstr "" -#: core/doctype/file/file.js:91 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" -#: public/js/frappe/views/image/image_view.js:13 +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 msgid "Images" msgstr "Gambar" -#: core/doctype/log_settings/log_settings.py:56 +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:378 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:405 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 msgid "Implement `clear_old_logs` method to enable auto error clearing." msgstr "" #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Implicit" -msgstr "Implisit" +msgstr "" -#: core/doctype/recorder/recorder_list.js:21 -#: email/doctype/email_group/email_group.js:31 +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 msgid "Import" msgstr "Impor" -#: public/js/frappe/list/list_view.js:1628 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Impor" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Import" -msgstr "Impor" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Import" -msgstr "Impor" - #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Data Import" +#: frappe/automation/workspace/tools/tools.json msgid "Import Data" -msgstr "Impor Data" +msgstr "" -#: email/doctype/email_group/email_group.js:14 +#: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" msgstr "Impor Email Dari" -#. Label of a Attach field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import File" -msgstr "Impor File" +msgstr "" -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import File Errors and Warnings" -msgstr "Kesalahan dan Peringatan Impor File" +msgstr "" -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Log" -msgstr "Impor Log" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Log Preview" -msgstr "Impor Pratinjau Log" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Preview" -msgstr "Pratinjau Impor" +msgstr "" -#: core/doctype/data_import/data_import.js:41 +#: frappe/core/doctype/data_import/data_import.js:41 msgid "Import Progress" msgstr "Kemajuan Impor" -#: email/doctype/email_group/email_group.js:8 -#: email/doctype/email_group/email_group.js:30 +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 msgid "Import Subscribers" msgstr "Impor Pengikut" -#. Label of a Select field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Type" -msgstr "Jenis Impor" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Warnings" -msgstr "Peringatan Impor" +msgstr "" -#: public/js/frappe/views/file/file_view.js:117 +#: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" msgstr "Impor Zip" -#. Label of a Data field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import from Google Sheets" -msgstr "Impor dari Google Sheets" +msgstr "" -#: core/doctype/data_import/importer.py:598 +#: frappe/core/doctype/data_import/importer.py:612 msgid "Import template should be of type .csv, .xlsx or .xls" msgstr "Templat impor harus bertipe .csv, .xlsx atau .xls" -#: core/doctype/data_import/importer.py:467 +#: frappe/core/doctype/data_import/importer.py:482 msgid "Import template should contain a Header and atleast one row." msgstr "Impor template harus berisi Header dan minimal satu baris." -#: core/doctype/data_import/data_import.js:170 +#: frappe/core/doctype/data_import/data_import.js:165 msgid "Import timed out, please re-try." msgstr "" -#: core/doctype/data_import/data_import.py:61 +#: frappe/core/doctype/data_import/data_import.py:68 msgid "Importing {0} is not allowed." msgstr "" -#: integrations/doctype/google_contacts/google_contacts.js:19 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" msgstr "Mengimpor {0} dari {1}" -#: core/doctype/data_import/data_import.js:35 +#: frappe/core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" msgstr "Mengimpor {0} dari {1}, {2}" -#: public/js/frappe/ui/filters/filter.js:20 +#: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" msgstr "... Dalam" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "In Days" -msgstr "Dalam berhari-hari" - -#. Description of the Onboarding Step 'Setup Limited Access for a User' -#: custom/onboarding_step/role_permissions/role_permissions.json -msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions." msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Filter" -msgstr "Dalam Filter" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Filter" -msgstr "Dalam Filter" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "Di Global Search" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Global Search" -msgstr "Di Global Search" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Global Search" -msgstr "Di Global Search" - -#: core/doctype/doctype/doctype.js:95 +#: frappe/core/doctype/doctype/doctype.js:88 msgid "In Grid View" msgstr "Di Grid View" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "In List Filter" msgstr "" -#: core/doctype/doctype/doctype.js:96 +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In List View" msgstr "Dalam Daftar View" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "In List View" -msgstr "Dalam Daftar View" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In List View" -msgstr "Dalam Daftar View" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In List View" -msgstr "Dalam Daftar View" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Preview" -msgstr "Dalam Pratinjau" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Preview" -msgstr "Dalam Pratinjau" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Preview" -msgstr "Dalam Pratinjau" - -#: core/doctype/data_import/data_import.js:42 +#: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" msgstr "Sedang berlangsung" -#: database/database.py:233 +#: frappe/database/database.py:287 msgid "In Read Only Mode" msgstr "" -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "In Reply Untuk" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Standard Filter" -msgstr "Di Standard Filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Standard Filter" -msgstr "Di Standard Filter" - -#. Description of the Onboarding Step 'Generate Custom Reports' -#: custom/onboarding_step/report_builder/report_builder.json -msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n" msgstr "" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "Dalam poin. Default-nya adalah 9." +msgstr "" #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "In seconds" -msgstr "Dalam hitungan detik" +msgstr "" -#: core/doctype/recorder/recorder_list.js:107 +#: frappe/core/doctype/recorder/recorder_list.js:209 msgid "Inactive" msgstr "Tidak aktif" -#: public/js/frappe/ui/field_group.js:131 -msgid "Inavlid Values" -msgstr "" - -#: email/doctype/email_account/email_account_list.js:19 -msgid "Inbox" -msgstr "Kotak masuk" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 msgid "Inbox" msgstr "Kotak masuk" #. Name of a role -#: core/doctype/communication/communication.json -#: email/doctype/email_account/email_account.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json msgid "Inbox User" msgstr "Pengguna Inbox" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Include Name Field" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Include Search in Top Bar" -msgstr "Sertakan Cari di Top Bar" +msgstr "" -#: website/doctype/website_theme/website_theme.js:61 +#: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" msgstr "Sertakan Tema dari Aplikasi" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Include Web View Link in Email" -msgstr "Kirim dokumen Web View link di email" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1488 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1480 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Termasuk lekukan" -#: public/js/frappe/form/controls/password.js:107 +#: frappe/public/js/frappe/form/controls/password.js:106 msgid "Include symbols, numbers and capital letters in the password" msgstr "Sertakan simbol, angka dan huruf kapital di password" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Incoming (POP/IMAP) Settings" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Server" msgstr "" -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Incoming Server" -msgstr "" - -#. Label of a Section Break field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Settings" msgstr "" -#: email/doctype/email_domain/email_domain.py:32 +#: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" msgstr "Akun email masuk tidak benar" -#: model/virtual_doctype.py:81 model/virtual_doctype.py:94 +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: auth.py:236 +#: frappe/auth.py:255 msgid "Incomplete login details" msgstr "Rincian login tidak lengkap" -#: email/smtp.py:103 +#: frappe/email/smtp.py:104 msgid "Incorrect Configuration" msgstr "Konfigurasi Salah" -#: utils/csvutils.py:207 +#: frappe/utils/csvutils.py:234 msgid "Incorrect URL" msgstr "URL salah" -#: utils/password.py:90 +#: frappe/utils/password.py:101 msgid "Incorrect User or Password" msgstr "Pengguna atau Kata Sandi salah" -#: twofactor.py:177 twofactor.py:189 +#: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" msgstr "Kode Verifikasi salah" -#: model/document.py:1352 -msgid "Incorrect value in row {0}: {1} must be {2} {3}" -msgstr "Nilai yang salah dalam baris {0}: {1} harus {2} {3}" +#: frappe/model/document.py:1551 +msgid "Incorrect value in row {0}:" +msgstr "" -#: model/document.py:1356 -msgid "Incorrect value: {0} must be {1} {2}" -msgstr "Nilai yang tidak benar: {0} harus {1} {2}" +#: frappe/model/document.py:1553 +msgid "Incorrect value:" +msgstr "" -#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200 -#: public/js/frappe/model/model.js:114 -#: public/js/frappe/views/reports/report_view.js:941 +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1005 msgid "Index" msgstr "Indeks" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Index" -msgstr "Indeks" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Index" -msgstr "Indeks" - -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Index" -msgstr "Indeks" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Index Web Pages for Search" -msgstr "Indeks Halaman Web untuk Pencarian" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing authorization code" msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing refresh token" msgstr "" -#. Label of a Select field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Indicator" -msgstr "Indikator" +msgstr "" -#. Label of a Select field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:639 -#: public/js/frappe/views/workspace/workspace.js:967 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: frappe/public/js/frappe/views/workspace/workspace.js:463 msgid "Indicator color" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Info" -msgstr "Info" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Info" -msgstr "Info" - #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Info" -msgstr "Info" +msgstr "" -#: core/doctype/data_export/exporter.py:144 +#: frappe/core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "Info:" +msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Initial Sync Count" -msgstr "Awal Hitungan Sync" +msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "InnoDB" -msgstr "InnoDB" +msgstr "" -#: core/doctype/data_import/data_import_list.js:39 +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 msgid "Insert" -msgstr "Insert" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1712 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Masukkan Setelah" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Insert After" -msgstr "Masukkan Setelah" - -#: custom/doctype/custom_field/custom_field.py:249 +#: frappe/custom/doctype/custom_field/custom_field.py:251 msgid "Insert After cannot be set as {0}" msgstr "Masukkan Setelah tidak dapat ditetapkan sebagai {0}" -#: custom/doctype/custom_field/custom_field.py:242 +#: frappe/custom/doctype/custom_field/custom_field.py:244 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" msgstr "Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field '{1}', dengan label '{2}', tidak ada" -#: public/js/frappe/views/reports/report_view.js:364 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:390 msgid "Insert Column Before {0}" msgstr "Masukkan Kolom Sebelum {0}" -#: public/js/frappe/form/controls/markdown_editor.js:81 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" msgstr "" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Insert New Records" -msgstr "Masukkan catatan baru" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Insert Style" -msgstr "Masukkan Style" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:646 -#: public/js/frappe/ui/toolbar/search_utils.js:647 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 msgid "Install {0} from Marketplace" msgstr "" #. Name of a DocType -#: core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/installed_application/installed_application.json msgid "Installed Application" msgstr "Aplikasi Terinstal" #. Name of a DocType -#: core/doctype/installed_applications/installed_applications.json +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json msgid "Installed Applications" msgstr "Aplikasi Terinstal" -#. Label of a Table field in DocType 'Installed Applications' -#: core/doctype/installed_applications/installed_applications.json -msgctxt "Installed Applications" -msgid "Installed Applications" -msgstr "Aplikasi Terinstal" - -#: core/doctype/installed_applications/installed_applications.js:18 +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" msgstr "" -#: permissions.py:826 +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: database/query.py:371 desk/form/load.py:40 model/document.py:234 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Izin tidak cukup untuk {0}" -#: desk/reportview.py:322 +#: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:293 +#: frappe/desk/reportview.py:331 msgid "Insufficient Permissions for editing Report" msgstr "" -#: core/doctype/doctype/doctype.py:447 +#: frappe/core/doctype/doctype/doctype.py:445 msgid "Insufficient attachment limit" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Int" -msgstr "Int" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Int" -msgstr "Int" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Int" -msgstr "Int" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Int" -msgstr "Int" +msgstr "" #. Name of a DocType -#: integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" msgstr "integrasi Permintaan" -#. Name of a Workspace -#: integrations/workspace/integrations/integrations.json -msgid "Integrations" -msgstr "Integrasi" - #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Integrations" -msgstr "Integrasi" - -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" msgstr "Integrasi" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "Integrasi dapat menggunakan kolom ini untuk menetapkan status pengiriman surel" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Inter" msgstr "" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "minat" +msgstr "" #. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json msgid "Intermediate" -msgstr "Menengah" +msgstr "" -#: public/js/frappe/request.js:232 +#: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" msgstr "Kesalahan server dari dalam" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Intro Video URL" msgstr "" #. Description of the 'Company Introduction' (Text Editor) field in DocType #. 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Introduce your company to the website visitor." -msgstr "Memperkenalkan perusahaan Anda kepada pengunjung situs." +msgstr "" -#. Label of a Section Break field in DocType 'Contact Us Settings' -#. Label of a Text Editor field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json msgid "Introduction" -msgstr "Pendahuluan" - -#. Label of a Text Editor field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Introduction" -msgstr "Pendahuluan" - -#. Title of an Onboarding Step -#: website/onboarding_step/introduction_to_website/introduction_to_website.json -msgid "Introduction to Website" msgstr "" #. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us #. Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Introductory information for the Contact Us Page" -msgstr "Informasi pengantar untuk Hubungi Kami Halaman" +msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Introspection URI" msgstr "" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Invalid" -msgstr "cacat" +msgstr "" -#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748 -#: public/js/frappe/form/layout.js:774 +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:833 +#: frappe/public/js/frappe/form/layout.js:811 +#: frappe/public/js/frappe/views/reports/report_view.js:716 msgid "Invalid \"depends_on\" expression" msgstr "Ekspresi "depend_on" tidak valid" -#: public/js/frappe/views/reports/query_report.js:510 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}" -#: public/js/frappe/form/save.js:206 +#: frappe/public/js/frappe/form/save.js:159 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" -#: utils/nestedset.py:181 +#: frappe/utils/nestedset.py:178 msgid "Invalid Action" msgstr "" -#: utils/csvutils.py:35 +#: frappe/utils/csvutils.py:37 msgid "Invalid CSV Format" msgstr "CSV Format valid" -#: integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: frappe/email/smtp.py:135 msgid "Invalid Credentials" msgstr "Kredensial tidak valid" -#: utils/data.py:124 utils/data.py:285 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Tanggal tidak berlaku" -#: www/list.py:85 +#: frappe/www/list.py:85 msgid "Invalid DocType" msgstr "" -#: database/query.py:95 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1223 +#: frappe/core/doctype/doctype/doctype.py:1272 msgid "Invalid Fieldname" msgstr "" -#: core/doctype/file/file.py:206 +#: frappe/core/doctype/file/file.py:209 msgid "Invalid File URL" msgstr "" -#: public/js/form_builder/store.js:216 +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" -#: utils/dashboard.py:61 +#: frappe/utils/dashboard.py:61 msgid "Invalid Filter Value" msgstr "Nilai Filter Tidak Valid" -#: website/doctype/website_settings/website_settings.py:83 +#: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" msgstr "Valid Halaman" -#: utils/verified_command.py:48 www/update-password.html:151 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Tautan tidak valid" -#: www/login.py:112 +#: frappe/www/login.py:128 msgid "Invalid Login Token" msgstr "Valid Login Token" -#: email/receive.py:105 email/receive.py:142 +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 msgid "Invalid Mail Server. Please rectify and try again." msgstr "Mail Server tidak valid. Harap memperbaiki dan coba lagi." -#: model/naming.py:91 +#: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 msgid "Invalid Operation" msgstr "" -#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591 +#: frappe/core/doctype/doctype/doctype.py:1641 +#: frappe/core/doctype/doctype/doctype.py:1650 msgid "Invalid Option" msgstr "Opsi Tidak Valid" -#: email/smtp.py:102 +#: frappe/email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:182 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Output Format valid" -#: integrations/doctype/connected_app/connected_app.py:166 +#: frappe/model/base_document.py:116 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:195 msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1195 www/update-password.html:121 -#: www/update-password.html:142 www/update-password.html:144 -#: www/update-password.html:246 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "kata sandi salah" -#: utils/__init__.py:109 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" -#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112 +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Permintaan tidak valid" -#: desk/search.py:26 +#: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" msgstr "Bidang Penelusuran Tidak Valid {0}" -#: core/doctype/doctype/doctype.py:1165 +#: frappe/core/doctype/doctype/doctype.py:1214 msgid "Invalid Table Fieldname" msgstr "" -#: public/js/workflow_builder/store.js:182 +#: frappe/public/js/workflow_builder/store.js:192 msgid "Invalid Transition" msgstr "" -#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565 -#: utils/csvutils.py:199 utils/csvutils.py:220 +#: frappe/core/doctype/file/file.py:220 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" msgstr "URL tidak valid" -#: email/receive.py:150 +#: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." msgstr "Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba lagi." -#: integrations/doctype/webhook/webhook.py:116 +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:116 msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:150 +#: frappe/desk/reportview.py:186 msgid "Invalid aggregate function" msgstr "" -#: public/js/frappe/views/reports/report_view.js:373 +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Kolom tidak valid" -#: model/document.py:841 model/document.py:855 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" -#: public/js/frappe/utils/dashboard_utils.js:229 +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" msgstr "Persamaan tidak valid disetel dalam filter {0}" -#: public/js/frappe/utils/dashboard_utils.js:219 +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 msgid "Invalid expression set in filter {0} ({1})" msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})" -#: utils/data.py:2128 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nama bidang tidak valid {0}" -#: core/doctype/doctype/doctype.py:1048 +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "fieldname tidak valid '{0}' di autoname" -#: client.py:344 +#: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" msgstr "Path file tidak valid: {0}" -#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Filter tidak valid: {0}" -#: model/utils/__init__.py:69 -msgid "Invalid include path" -msgstr "Jalur sertakan tidak valid" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" -#: desk/doctype/dashboard/dashboard.py:68 -#: desk/doctype/dashboard_chart/dashboard_chart.py:424 +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Json yang tidak valid ditambahkan dalam opsi ubahsuaian: {0}" -#: model/naming.py:445 +#: frappe/model/naming.py:490 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:52 +#: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" msgstr "" -#: core/doctype/data_import/importer.py:438 +#: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Konten tidak valid atau rusak untuk diimpor" -#: website/doctype/website_settings/website_settings.py:139 +#: frappe/website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: app.py:301 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" -#: integrations/doctype/connected_app/connected_app.py:172 -msgid "Invalid state." +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" msgstr "" -#: core/doctype/data_import/importer.py:415 +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "File template tidak valid untuk impor" -#: integrations/doctype/ldap_settings/ldap_settings.py:162 -#: integrations/doctype/ldap_settings/ldap_settings.py:335 +#: frappe/integrations/doctype/connected_app/connected_app.py:201 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 msgid "Invalid username or password" msgstr "username dan password salah" -#: public/js/frappe/web_form/web_form.js:229 +#: frappe/model/naming.py:168 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: core/doctype/doctype/doctype.py:1515 +#: frappe/printing/page/print/print.js:614 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1564 msgid "Invalid {0} condition" msgstr "Kondisi {0} tidak valid" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Inverse" -msgstr "Terbalik" +msgstr "" -#: contacts/doctype/contact/contact.js:25 +#: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Undang sebagai Pengguna" -#: public/js/frappe/ui/filters/filter.js:22 +#: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Aku S" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Is Active" msgstr "Aktif" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Attachments Folder" -msgstr "Apakah Lampiran Folder" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Calendar and Gantt" +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "Apakah Anak Table" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" msgstr "" -#: core/doctype/doctype/doctype_list.js:34 -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Is Complete" -msgstr "Selesai" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Is Complete" -msgstr "Selesai" - -#. Label of a Check field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Is Completed" -msgstr "Apakah selesai" +msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" msgstr "" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Is Custom" -msgstr "" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Custom Field" -msgstr "Apakah Custom Field" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:69 +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Is Default" msgstr "Apakah default" -#. Label of a Check field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Is Dynamic URL?" msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Folder" -msgstr "Apakah Folder" +msgstr "" -#: public/js/frappe/list/list_filter.js:43 +#: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" msgstr "Apakah global" -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "Apakah Home Folder" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "Apakah Lapangan Wajib" +msgstr "" -#. Label of a Check field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Is Optional State" -msgstr "Apakah Status Opsional" +msgstr "" -#. Label of a Check field in DocType 'Contact Email' -#: contacts/doctype/contact_email/contact_email.json -msgctxt "Contact Email" +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json msgid "Is Primary" -msgstr "Apakah Pratama" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Is Primary Contact" -msgstr "Apakah Kontak Utama" +msgstr "" -#. Label of a Check field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "Apakah Ponsel Primer" +msgstr "" -#. Label of a Check field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "Apakah Telepon Utama" +msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Private" -msgstr "Apakah Swasta" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "Apakah Publik" +msgstr "" -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Public" -msgstr "Apakah Publik" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Is Published Field" -msgstr "Apakah Diterbitkan Lapangan" +msgstr "" -#: core/doctype/doctype/doctype.py:1466 +#: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" msgstr "Apakah Diterbitkan lapangan harus fieldname valid" -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 msgid "Is Query Report" msgstr "" -#. Label of a Check field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Is Remote Request?" msgstr "" -#: core/doctype/doctype/doctype_list.js:48 +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tunggal" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Single" -msgstr "Tunggal" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Is Single" -msgstr "Tunggal" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Skipped" -msgstr "Apakah Dilewati" +msgstr "" -#. Label of a Check field in DocType 'Email Rule' -#: email/doctype/email_rule/email_rule.json -msgctxt "Email Rule" +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "Apakah Spam" +msgstr "" -#. Label of a Check field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json msgid "Is Standard" -msgstr "Adalah Standard" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Select field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Is Standard" -msgstr "Adalah Standard" - -#: core/doctype/doctype/doctype_list.js:25 +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" msgstr "Apakah Submittable" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Submittable" -msgstr "Apakah Submittable" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Is System Generated" -msgstr "" - -#. Label of a Check field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Is System Generated" -msgstr "" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Table" -msgstr "Apakah Tabel" +msgstr "" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Is Table Field" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Is Tree" -msgstr "Apakah Pohon" +msgstr "" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Is Unique" -msgstr "Unik" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Virtual" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Is Virtual" +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Virtual" -msgstr "" - -#: core/doctype/file/utils.py:155 utils/file_manager.py:315 +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." msgstr "Hal ini berisiko untuk menghapus file ini: {0}. Silahkan hubungi System Manager Anda." -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Label" -msgstr "Label Item" +msgstr "" -#. Label of a Select field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Type" -msgstr "Tipe barang" +msgstr "" -#: utils/nestedset.py:234 +#: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" msgstr "Item tidak dapat ditambahkan ke keturunan sendiri" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "JS" -msgstr "JS" +msgstr "" -#. Label of a HTML field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "JS Message" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "JSON" -msgstr "JSON" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "JSON" -msgstr "JSON" - -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "JSON" -msgstr "JSON" - +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "JSON" -msgstr "JSON" +msgstr "" -#. Label of a Code field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "JSON Request Body" -msgstr "Badan Permintaan JSON" +msgstr "" -#: templates/signup.html:5 +#: frappe/templates/signup.html:5 msgid "Jane Doe" msgstr "" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "JavaScript" +msgstr "" #. Description of the 'Javascript' (Code) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}" +msgstr "" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json msgid "Javascript" -msgstr "Javascript" +msgstr "" -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Javascript" -msgstr "Javascript" - -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Javascript" -msgstr "Javascript" - -#. Label of a Code field in DocType 'Website Script' -#: website/doctype/website_script/website_script.json -msgctxt "Website Script" -msgid "Javascript" -msgstr "Javascript" - -#: www/login.html:71 +#: frappe/www/login.html:74 msgid "Javascript is disabled on your browser" msgstr "Javascript dinonaktifkan di browser Anda" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "Jinja" -msgstr "Jinja" +msgstr "" -#. Label of a Link field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job ID" msgstr "" -#. Label of a Data field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Job ID" -msgstr "" - -#. Label of a Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Job Id" msgstr "" -#. Label of a Section Break field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Info" msgstr "" -#. Label of a Data field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Name" msgstr "" -#. Label of a Section Break field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Status" msgstr "" -#: core/doctype/rq_job/rq_job.js:24 +#: frappe/core/doctype/rq_job/rq_job.js:24 msgid "Job Stopped Successfully" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." msgstr "" -#: desk/doctype/event/event.js:51 +#: frappe/desk/doctype/event/event.js:55 msgid "Join video conference with {0}" msgstr "" -#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Lompat ke bidang" -#: public/js/frappe/utils/number_systems.js:17 -#: public/js/frappe/utils/number_systems.js:31 -#: public/js/frappe/utils/number_systems.js:53 +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 msgctxt "Number system" msgid "K" msgstr "" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Kanban" -msgstr "kanban" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "kanban" +msgstr "" #. Name of a DocType -#: desk/doctype/kanban_board/kanban_board.json -msgid "Kanban Board" -msgstr "Papan kanban" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Kanban Board" -msgstr "Papan kanban" - -#. Label of a Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 msgid "Kanban Board" msgstr "Papan kanban" #. Name of a DocType -#: desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" msgstr "Kolom papan Kanban" -#: public/js/frappe/views/kanban/kanban_view.js:385 +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Nama papan kanban" -#. Label of a Data field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Kanban Board Name" -msgstr "Nama papan kanban" - -#: public/js/frappe/views/kanban/kanban_view.js:262 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" -#. Label of a Data field in DocType 'DefaultValue' -#: core/doctype/defaultvalue/defaultvalue.json -msgctxt "DefaultValue" -msgid "Key" -msgstr "Kunci" +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" -#. Label of a Data field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Key" -msgstr "Kunci" +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" -#. Label of a Data field in DocType 'Query Parameters' -#: integrations/doctype/query_parameters/query_parameters.json -msgctxt "Query Parameters" -msgid "Key" -msgstr "Kunci" +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" -#. Label of a Data field in DocType 'Webhook Data' -#: integrations/doctype/webhook_data/webhook_data.json -msgctxt "Webhook Data" +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Key" -msgstr "Kunci" - -#. Label of a Small Text field in DocType 'Webhook Header' -#: integrations/doctype/webhook_header/webhook_header.json -msgctxt "Webhook Header" -msgid "Key" -msgstr "Kunci" - -#. Label of a Data field in DocType 'Website Meta Tag' -#: website/doctype/website_meta_tag/website_meta_tag.json -msgctxt "Website Meta Tag" -msgid "Key" -msgstr "Kunci" +msgstr "" #. Label of a standard help item #. Type: Action -#: hooks.py public/js/frappe/ui/keyboard.js:126 +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" msgstr "Pintasan keyboard" -#: public/js/frappe/utils/number_systems.js:37 +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 msgctxt "Number system" msgid "Kh" msgstr "" #. Label of a Card Break in the Website Workspace -#: website/doctype/help_article/help_article.py:80 -#: website/workspace/website/website.json +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json msgid "Knowledge Base" msgstr "Dasar pengetahuan" #. Name of a role -#: website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Contributor" msgstr "Knowledge Base Kontributor" #. Name of a role -#: website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Editor" -msgstr "Knowledge Base Editor" +msgstr "" -#: public/js/frappe/utils/number_systems.js:27 -#: public/js/frappe/utils/number_systems.js:49 +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 msgctxt "Number system" msgid "L" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "Kolom Surel LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP First Name Field" -msgstr "LDAP Nama Field Pertama" +msgstr "" -#. Label of a Data field in DocType 'LDAP Group Mapping' -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json -msgctxt "LDAP Group Mapping" +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group" -msgstr "Grup LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Field" -msgstr "Bidang Grup LDAP" +msgstr "" #. Name of a DocType -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group Mapping" msgstr "Pemetaan Grup LDAP" -#. Label of a Section Break field in DocType 'LDAP Settings' -#. Label of a Table field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Mappings" -msgstr "Pemetaan Grup LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Member attribute" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Last Name Field" -msgstr "Bidang Nama Belakang LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Middle Name Field" -msgstr "Bidang Nama Tengah LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Mobile Field" -msgstr "Bidang Seluler LDAP" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:160 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" msgstr "LDAP Tidak Terinstal" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Phone Field" -msgstr "Bidang Telepon LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search String" -msgstr "LDAP Cari String" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:127 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search and Paths" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Security" -msgstr "Keamanan LDAP" +msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Settings" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Url" -msgstr "LDAP Server Url" +msgstr "" #. Name of a DocType -#: integrations/doctype/ldap_settings/ldap_settings.json -msgid "LDAP Settings" -msgstr "Pengaturan LDAP" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "LDAP Settings" msgstr "Pengaturan LDAP" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP User Creation and Mapping" -msgstr "Pembuatan dan Pemetaan Pengguna LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Username Field" -msgstr "LDAP pengguna Lapangan" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:308 -#: integrations/doctype/ldap_settings/ldap_settings.py:427 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 msgid "LDAP is not enabled." msgstr "LDAP tidak diaktifkan." -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Groups" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Users" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:99 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 msgid "LDAP settings incorrect. validation response was: {0}" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:474 -#: public/js/frappe/widgets/widget_dialog.js:606 -#: public/js/frappe/widgets/widget_dialog.js:639 -msgid "Label" -msgstr "Label" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Label" -msgstr "Label" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Layout Field' -#: custom/doctype/doctype_layout_field/doctype_layout_field.json -msgctxt "DocType Layout Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Chart' -#: desk/doctype/workspace_chart/workspace_chart.json -msgctxt "Workspace Chart" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Custom Block' -#: desk/doctype/workspace_custom_block/workspace_custom_block.json -msgctxt "Workspace Custom Block" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Number Card' -#: desk/doctype/workspace_number_card/workspace_number_card.json -msgctxt "Workspace Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Label" -msgstr "Label" - -#. Label of a HTML field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "Label Bantuan" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "Label dan Jenis" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:141 +#: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" msgstr "Label adalah wajib" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Landing Page" -msgstr "Halaman Arahan" +msgstr "" -#: public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Pemandangan" #. Name of a DocType -#: core/doctype/language/language.json printing/page/print/print.js:104 +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Bahasa" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Link field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Language Code" -msgstr "Kode bahasa" +msgstr "" -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Language Name" -msgstr "Nama bahasa" +msgstr "" -#. Label of a Datetime field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "Terakhir Aktif" +msgstr "" -#. Label of a Datetime field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Last Backup On" -msgstr "Cadangan Terakhir Aktif" - -#. Label of a Datetime field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Last Execution" -msgstr "Eksekusi Terakhir" +msgstr "" -#. Label of a Datetime field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" msgstr "" -#. Label of a Read Only field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "IP Terakhir" +msgstr "" -#. Label of a Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Known Versions" -msgstr "Terakhir Versi Dikenal" +msgstr "" -#. Label of a Read Only field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Login" -msgstr "Terakhir Login" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:242 -#: public/js/frappe/views/dashboard/dashboard_view.js:479 +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 msgid "Last Modified On" msgstr "Terakhir Diubah Pada" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "Bulan lalu" +msgstr "" -#: www/complete_signup.html:19 +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nama Belakang" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Last Name" -msgstr "Nama Belakang" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Last Name" -msgstr "Nama Belakang" - -#. Label of a Date field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Password Reset Date" -msgstr "Tanggal Reset Kata Sandi Terakhir" - -#. Label of a Date field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Last Point Allocation Date" -msgstr "Tanggal Alokasi Poin Terakhir" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 msgid "Last Quarter" -msgstr "Kuartal Terakhir" +msgstr "" -#. Label of a Datetime field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Reset Password Key Generated On" msgstr "" -#. Label of a Datetime field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Last Sync On" -msgstr "Sinkron Terakhir Aktif" +msgstr "" -#. Label of a Datetime field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Synced At" +msgstr "" + +#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "Terakhir Disinkronkan" +msgstr "" -#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202 -#: public/js/frappe/model/model.js:120 +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 msgid "Last Updated By" msgstr "Terakhir Diperbarui Oleh" -#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201 -#: public/js/frappe/model/model.js:116 +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" msgstr "Terakhir Diperbarui Pada" -#. Label of a Link field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Last User" -msgstr "Pengguna Terakhir" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 msgid "Last Week" -msgstr "Minggu lalu" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 msgid "Last Year" -msgstr "Tahun lalu" +msgstr "" -#: public/js/frappe/widgets/chart_widget.js:698 +#: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" msgstr "Terakhir disinkronkan {0}" -#: custom/doctype/customize_form/customize_form.js:186 +#: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" msgstr "" -#: custom/doctype/customize_form/customize_form.js:178 +#: frappe/custom/doctype/customize_form/customize_form.js:186 msgid "Layout will be reset to standard layout, are you sure you want to do this?" msgstr "" -#: desk/page/leaderboard/leaderboard.js:15 -msgid "Leaderboard" -msgstr "LeaderBoard" - -#. Label of an action in the Onboarding Step 'Customize Print Formats' -#: custom/onboarding_step/print_format/print_format.json -msgid "Learn about Standard and Custom Print Formats" -msgstr "" - -#. Title of an Onboarding Step -#: website/onboarding_step/web_page_tour/web_page_tour.json -msgid "Learn about Web Pages" -msgstr "" - -#. Label of an action in the Onboarding Step 'Create Custom Fields' -#: custom/onboarding_step/custom_field/custom_field.json -msgid "Learn how to add Custom Fields" -msgstr "" - -#: website/web_template/section_with_features/section_with_features.html:26 +#: frappe/website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" msgstr "" -#. Label of an action in the Onboarding Step 'Generate Custom Reports' -#: custom/onboarding_step/report_builder/report_builder.json -msgid "Learn more about Report Builders" -msgstr "" - -#. Label of an action in the Onboarding Step 'Custom Document Types' -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "Learn more about creating new DocTypes" -msgstr "" - #. Description of the 'Repeat Till' (Date) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/desk/doctype/event/event.json msgid "Leave blank to repeat always" -msgstr "Biarkan kosong untuk mengulang selalu" +msgstr "" -#: core/doctype/communication/mixins.py:206 -#: email/doctype/email_account/email_account.py:624 +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" msgstr "Tinggalkan percakapan ini" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "" +msgstr "buku besar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Left" -msgstr "Waktu tersisa" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Left" -msgstr "Waktu tersisa" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Left" msgstr "Waktu tersisa" -#: printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 msgctxt "alignment" msgid "Left" msgstr "Waktu tersisa" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Bottom" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Center" msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:59 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" msgstr "Meninggalkan percakapan ini" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Legal" +msgstr "Hukum" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" msgstr "" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Length" -msgstr "Panjangnya" - -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Length" -msgstr "Panjangnya" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Length" -msgstr "Panjangnya" - -#: public/js/frappe/ui/chart.js:11 +#: frappe/public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: database/schema.py:133 +#: frappe/database/schema.py:134 msgid "Length of {0} should be between 1 and 1000" msgstr "Panjang {0} harus antara 1 dan 1000" -#: public/js/frappe/widgets/onboarding_widget.js:439 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Let us continue with the onboarding" msgstr "" -#: public/js/frappe/views/workspace/blocks/onboarding.js:94 -#: public/js/frappe/widgets/onboarding_widget.js:602 +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 msgid "Let's Get Started" msgstr "Mari Memulai" -#. Title of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Let's Set Up Your Website." -msgstr "" - -#: utils/password_strength.py:113 +#: frappe/utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" msgstr "Mari kita hindari kata-kata berulang dan karakter" -#: desk/page/setup_wizard/setup_wizard.js:459 +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 msgid "Let's set up your account" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:268 -#: public/js/frappe/widgets/onboarding_widget.js:309 -#: public/js/frappe/widgets/onboarding_widget.js:380 -#: public/js/frappe/widgets/onboarding_widget.js:419 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 msgid "Let's take you back to onboarding" msgstr "Mari membawa Anda kembali ke orientasi" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Letter" -msgstr "Surat" +msgstr "" +#. Label of the letter_head (Link) field in DocType 'Report' #. Name of a DocType -#: printing/doctype/letter_head/letter_head.json -#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18 -#: public/js/frappe/list/bulk_operations.js:43 +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:127 +#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/public/js/frappe/form/templates/print_layout.html:16 +#: frappe/public/js/frappe/list/bulk_operations.js:52 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 msgid "Letter Head" msgstr "Surat Kepala" -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Letter Head" -msgstr "Surat Kepala" - -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Based On" -msgstr "Kepala Surat Berdasarkan" +msgstr "" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Image" -msgstr "Gambar Kepala Surat" +msgstr "" -#. Label of a Data field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 msgid "Letter Head Name" -msgstr "Nama Surat Kepala" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:45 +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:48 msgid "Letter Head cannot be both disabled and default" msgstr "" #. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter #. Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head in HTML" -msgstr "Surat Kepala di HTML" +msgstr "" -#: core/page/permission_manager/permission_manager.js:213 +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/website/doctype/help_article/help_article.json msgid "Level" -msgstr "Level" +msgstr "" -#. Label of a Int field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Level" -msgstr "Level" - -#. Label of a Int field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Level" -msgstr "Level" - -#. Label of a Select field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Level" -msgstr "Level" - -#: core/page/permission_manager/permission_manager.js:450 +#: frappe/core/page/permission_manager/permission_manager.js:467 msgid "Level 0 is for document level permissions, higher levels for field level permissions." msgstr "Level 0 untuk izin tingkat dokumen, tingkat yang lebih tinggi untuk izin tingkat bidang." -#. Label of a Data field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Level Name" -msgstr "Nama Level" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 msgid "License" -msgstr "Lisensi" +msgstr "" -#. Label of a Select field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "License Type" msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Light" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Light Blue" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Light Blue" msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Light Color" -msgstr "Warna Terang" +msgstr "" -#: public/js/frappe/ui/theme_switcher.js:60 +#: frappe/public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" msgstr "" -#: public/js/frappe/ui/filters/filter.js:18 -msgid "Like" -msgstr "Suka" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" msgstr "Suka" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Like" -msgstr "Suka" - -#. Label of a Int field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the like_limit (Int) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit" msgstr "" #. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit per hour" msgstr "" -#: templates/includes/likes/likes.py:30 +#: frappe/templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" msgstr "" -#: desk/like.py:91 +#: frappe/desk/like.py:92 msgid "Liked" msgstr "Menyukai" -#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205 -#: public/js/frappe/model/model.js:124 +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 msgid "Liked By" msgstr "Dengan menyukai" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Likes" msgstr "Suka" -#. Label of a Int field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Limit" -msgstr "Membatasi" +msgstr "" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Limit Number of DB Backups" -msgstr "Batasi Jumlah Cadangan DB" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "Baris" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Link" -msgstr "Tautan" - -#. Label of a Small Text field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Link" -msgstr "Tautan" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link" -msgstr "Tautan" - -#. Label of a Data field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Link" -msgstr "Tautan" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Link" -msgstr "Tautan" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Link" -msgstr "Tautan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Link" -msgstr "Tautan" +msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Link Cards" -msgstr "Tautkan Kartu" +msgstr "" -#. Label of a Int field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Count" msgstr "" -#. Label of a Section Break field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "Link DocType" +msgstr "" -#. Label of a Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "Tautkan Jenis Dokumen" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 -#: workflow/doctype/workflow_action/workflow_action.py:202 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 msgid "Link Expired" msgstr "Tautan Kedaluwarsa" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link Fieldname" -msgstr "Tautan Fieldname" +msgstr "" -#. Label of a JSON field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" msgstr "" -#. Label of a JSON field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link Filters" -msgstr "" - -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "Link Nama" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link Name" -msgstr "Link Nama" - -#. Label of a Dynamic Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Name" -msgstr "Link Nama" - -#. Label of a Read Only field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "Link Title" +msgstr "" -#. Label of a Read Only field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Title" -msgstr "Link Title" - -#. Label of a Dynamic Link field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "Tautan ke" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Link To" -msgstr "Tautan ke" +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" -#. Label of a Select field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" msgstr "" -#: website/doctype/about_us_settings/about_us_settings.js:6 +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" msgstr "" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "Link ke halaman yang ingin Anda buka. Kosongkan jika Anda ingin membuatnya kelompok orang tua." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Linked" -msgstr "Terkait" - #. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json msgid "Linked" -msgstr "Terkait" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Linked Documents" -msgstr "Dokumen Tertaut" - -#: public/js/frappe/form/linked_with.js:23 +#: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" msgstr "Terhubung Dengan" -#: contacts/doctype/address/address.js:39 -#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366 +#. Label of the links (Table) field in DocType 'Address' +#. Label of the links (Table) field in DocType 'Contact' +#. Label of the links_section (Tab Break) field in DocType 'DocType' +#. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Links" -msgstr "Links" +msgstr "" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "List" -msgstr "Daftar" - #. Option for the 'View' (Select) field in DocType 'Form Tour' #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "List" -msgstr "Daftar" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" -msgstr "Daftar" +msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "List / Search Settings" msgstr "" -#. Label of a Table field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "List Columns" msgstr "" #. Name of a DocType -#: desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/list_filter/list_filter.json msgid "List Filter" msgstr "Daftar filter" -#. Label of a HTML field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Setting Message" -msgstr "" +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "Pengaturan Daftar" -#: public/js/frappe/list/list_view.js:1708 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Pengaturan Daftar" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "List Settings" -msgstr "Pengaturan Daftar" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "List Settings" -msgstr "Pengaturan Daftar" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Settings" -msgstr "Pengaturan Daftar" +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" #. Name of a DocType -#: desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "List View Settings" msgstr "Pengaturan Tampilan Daftar" -#: public/js/frappe/ui/toolbar/awesome_bar.js:161 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 msgid "List a document type" msgstr "Daftar jenis dokumen" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]" - #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:526 +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Load Balancing" -msgstr "Penyeimbang beban" +msgstr "" -#: website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Muat lebih banyak" -#: public/js/frappe/form/footer/form_timeline.js:214 +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" msgid "Load More Communications" msgstr "" -#: core/page/permission_manager/permission_manager.js:165 -#: public/js/frappe/list/base_list.js:465 +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:511 +#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Memuat" -#: core/doctype/data_import/data_import.js:262 +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." msgstr "Memuat file impor ..." -#: desk/page/user_profile/user_profile_controller.js:20 -msgid "Loading user profile" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Loading versions..." msgstr "" -#: public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Memuat..." -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Location" msgstr "Lokasi" -#. Label of a Code field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Log" -msgstr "Log" +msgstr "" -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Log Data" -msgstr "Log Data" +msgstr "" -#. Label of a Link field in DocType 'Logs To Clear' -#: core/doctype/logs_to_clear/logs_to_clear.json -msgctxt "Logs To Clear" +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" msgstr "" -#: templates/emails/login_with_email_link.html:28 +#: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" msgstr "" -#. Label of a Int field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Log Index" msgstr "" #. Name of a DocType -#: core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json msgid "Log Setting User" msgstr "Pengguna Pengaturan Log" #. Name of a DocType -#: core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 msgid "Log Settings" msgstr "Pengaturan Log" -#: www/app.py:21 +#: frappe/www/app.py:23 msgid "Log in to access this page." msgstr "Masuk untuk mengakses halaman ini." #. Label of a standard navbar item #. Type: Action -#: hooks.py website/doctype/website_settings/website_settings.py:182 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" msgstr "" -#: handler.py:123 +#: frappe/handler.py:118 msgid "Logged Out" msgstr "Keluar" -#: public/js/frappe/web_form/webform_script.js:16 -#: templates/discussions/discussions_section.html:60 -#: templates/discussions/reply_section.html:43 -#: templates/includes/navbar/dropdown_login.html:15 -#: templates/includes/navbar/navbar_login.html:24 -#: website/page_renderers/not_permitted_page.py:22 www/login.html:42 -msgid "Login" -msgstr "Masuk" - #. Option for the 'Operation' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 msgid "Login" msgstr "Masuk" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Login" -msgstr "Masuk" - -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "Login Setelah" +msgstr "" -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "Login Sebelum" +msgstr "" -#: public/js/frappe/desk.js:235 +#: frappe/public/js/frappe/desk.js:256 msgid "Login Failed please try again" msgstr "" -#: email/doctype/email_account/email_account.py:134 +#: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" msgstr "Id Login diperlukan" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login Methods" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Login Required" -msgstr "Login Diperlukan" - -#: www/login.py:137 +#: frappe/www/login.py:156 msgid "Login To {0}" msgstr "" -#: twofactor.py:265 +#: frappe/twofactor.py:260 msgid "Login Verification Code from {}" msgstr "Kode Verifikasi Masuk dari {}" -#: www/login.html:97 -msgid "Login With {0}" -msgstr "" - -#: templates/emails/new_message.html:4 +#: frappe/templates/emails/new_message.html:4 msgid "Login and view in Browser" msgstr "Login dan lihat di Browser" -#: website/doctype/web_form/web_form.js:358 +#: frappe/website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" -#: auth.py:322 auth.py:325 +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:339 frappe/auth.py:342 msgid "Login not allowed at this time" msgstr "Login tidak diizinkan untuk saat ini" -#: twofactor.py:165 +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 msgid "Login session expired, refresh page to retry" msgstr "Sesi login kadaluarsa, refresh halaman untuk mencoba lagi" -#: templates/includes/comments/comments.html:110 +#: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" msgstr "Masuk untuk berkomentar" -#: templates/includes/comments/comments.html:6 +#: frappe/templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" msgstr "" -#: www/login.html:61 +#: frappe/www/login.html:64 msgid "Login to {0}" msgstr "" -#: www/login.html:106 +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" msgstr "" -#: www/login.html:46 +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 msgid "Login with LDAP" msgstr "Masuk dengan LDAP" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link expiry (in minutes)" msgstr "" -#: auth.py:131 +#: frappe/auth.py:144 msgid "Login with username and password is not allowed." msgstr "" -#. Label of a Int field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" -msgid "Logo Width" -msgstr "Lebar Logo" +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 msgid "Logout" -msgstr "Keluar" +msgstr "" -#: core/doctype/user/user.js:179 +#: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" msgstr "Keluar dari Semua Sesi" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Logout All Sessions on Password Reset" -msgstr "Keluar dari Semua Sesi saat Reset Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Logout From All Devices After Changing Password" -msgstr "Keluar Dari Semua Perangkat Setelah Mengubah Kata Sandi" - -#. Label of a Card Break in the Users Workspace -#: core/workspace/users/users.json -msgid "Logs" -msgstr "Log" +msgstr "" #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Logs" msgstr "Log" #. Name of a DocType -#: core/doctype/logs_to_clear/logs_to_clear.json +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Logs To Clear" msgstr "" -#. Label of a Table field in DocType 'Log Settings' -#: core/doctype/log_settings/log_settings.json -msgctxt "Log Settings" +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json msgid "Logs to Clear" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Long Text" -msgstr "Panjang Teks" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Long Text" -msgstr "Panjang Teks" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Long Text" -msgstr "Panjang Teks" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:322 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 msgid "Looks like you didn't change the value" msgstr "Sepertinya Anda tidak mengubah nilainya" -#: www/third_party_apps.html:57 +#: frappe/www/third_party_apps.html:59 msgid "Looks like you haven’t added any third party apps." msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:190 -msgid "Low" -msgstr "Rendah" +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 msgid "Low" msgstr "Rendah" -#: public/js/frappe/utils/number_systems.js:13 +#: frappe/public/js/frappe/utils/number_systems.js:13 msgctxt "Number system" msgid "M" msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "MIT License" msgstr "" -#. Label of a Text Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section" -msgstr "Bagian Utama" +msgstr "" -#. Label of a HTML Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section (HTML)" -msgstr "Bagian Utama (HTML)" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section (Markdown)" -msgstr "Bagian Utama (Penurunan Harga)" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" msgstr "Manajer Pemeliharaan" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json msgid "Maintenance User" msgstr "Pengguna Pemeliharaan" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Major" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Make \"name\" searchable in Global Search" -msgstr "Membuat "nama" dicari di Search global" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Make Attachments Public by Default" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" msgstr "" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" msgstr "" -#: utils/password_strength.py:94 +#: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" msgstr "Memanfaatkan pola keyboard lagi" -#: public/js/frappe/form/multi_select_dialog.js:86 +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" msgstr "Buat {0}" -#: website/doctype/web_page/web_page.js:77 +#: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" msgstr "Menjadikan halaman publik" -#: www/me.html:50 -msgid "Manage third party apps" +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" msgstr "" -#: www/me.html:59 -msgid "Manage your apps" +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Mandatory" msgstr "Wajib" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" - -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" msgstr "" -#: website/doctype/web_form/web_form.py:412 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Informasi wajib hilang:" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" msgstr "bidang wajib: menetapkan peran untuk" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" msgstr "bidang wajib: {0}" -#: public/js/frappe/form/save.js:167 +#: frappe/public/js/frappe/form/save.js:120 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}" -#: public/js/frappe/form/save.js:172 +#: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" msgstr "Bidang wajib yang dibutuhkan dalam {0}" -#: public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" -#: core/doctype/data_export/exporter.py:142 +#: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" msgstr "Wajib:" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Map" msgstr "" -#: public/js/frappe/data_import/import_preview.js:190 -#: public/js/frappe/data_import/import_preview.js:302 +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 msgid "Map Columns" msgstr "Kolom Peta" -#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Map route parameters into form variables. Example /project/<name>" -msgstr "Petakan parameter rute ke dalam variabel formulir. Contoh /project/<name>" +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" -#: core/doctype/data_import/importer.py:877 +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 msgid "Mapping column {0} to field {1}" msgstr "Memetakan kolom {0} ke bidang {1}" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Left" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Right" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:44 +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 msgid "Mark all as read" msgstr "" -#: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:21 +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 msgid "Mark as Read" msgstr "Tandai sebagai membaca" -#: core/doctype/communication/communication.js:95 +#: frappe/core/doctype/communication/communication.js:95 msgid "Mark as Spam" msgstr "Tandai sebagai Spam" -#: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:24 +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 msgid "Mark as Unread" msgstr "Tandai sebagai Belum dibaca" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Markdown" -msgstr "Penurunan harga" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Markdown" -msgstr "Penurunan harga" - #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Markdown" -msgstr "Penurunan harga" - +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Markdown" -msgstr "Penurunan harga" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Marked As Spam" -msgstr "Ditandai Sebagai Spam" - -#. Name of a DocType -#: website/doctype/marketing_campaign/marketing_campaign.json -msgid "Marketing Campaign" msgstr "" +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "Nahkoda" + #. Description of the 'Limit' (Int) field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Max 500 records at a time" -msgstr "Max 500 catatan pada satu waktu" +msgstr "" -#. Label of a Int field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Max Attachment Size (in MB)" -msgstr "Max Ukuran Lampiran (dalam MB)" - -#. Label of a Int field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the max_attachments (Int) field in DocType 'DocType' +#. Label of the max_attachments (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Max Attachments" -msgstr "Max Lampiran" +msgstr "" -#. Label of a Int field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Max Attachments" -msgstr "Max Lampiran" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the max_file_size (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Max File Size (MB)" msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Max Height" msgstr "" -#. Label of a Int field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the max_length (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Length" -msgstr "Panjang maksimal" +msgstr "" -#. Label of a Int field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "" + +#. Label of the max_value (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Value" -msgstr "Max Nilai" +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Max auto email report per user" msgstr "" -#: core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1342 msgid "Max width for type Currency is 100px in row {0}" msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}" #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Maximum" -msgstr "Maksimum" +msgstr "" -#: core/doctype/file/file.py:317 +#: frappe/core/doctype/file/file.py:320 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of a Select field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the total_fields (Select) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Maximum Number of Fields" -msgstr "Jumlah Bidang Maksimum" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Maximum Points" -msgstr "Poin Maksimum" - -#: public/js/frappe/form/sidebar/attachments.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "" -"Maximum points allowed after multiplying points with the multiplier value\n" -"(Note: For no limit leave this field empty or set 0)" -msgstr "" - -#: model/rename_doc.py:675 +#: frappe/model/rename_doc.py:690 msgid "Maximum {0} rows allowed" msgstr "Maksimum {0} baris diperbolehkan" -#: public/js/frappe/list/list_sidebar_group_by.js:221 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" msgstr "Saya" -#: public/js/frappe/form/sidebar/assign_to.js:194 -#: public/js/frappe/utils/utils.js:1719 -#: website/report/website_analytics/website_analytics.js:40 -msgid "Medium" -msgstr "Sedang" +#: frappe/core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Medium" -msgstr "Sedang" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" msgstr "Sedang" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Meeting" -msgstr "Pertemuan" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json msgid "Meeting" -msgstr "Pertemuan" +msgstr "" -#. Label of a Data field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/email/doctype/notification/notification.js:196 +#: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" #. Group in Email Group's connections -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#: frappe/email/doctype/email_group/email_group.json msgid "Members" msgstr "" +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Mention" -msgstr "Menyebut" +msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Mentions" -msgstr "Penyebutan" +msgstr "" -#: public/js/frappe/ui/page.js:155 +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 msgid "Menu" -msgstr "Menu" +msgstr "" -#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719 +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 msgid "Merge with existing" msgstr "Merger dengan yang ada" -#: utils/nestedset.py:310 +#: frappe/utils/nestedset.py:307 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to-Leaf Node" -#: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:110 www/message.html:3 -#: www/message.html:25 +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 msgid "Message" msgstr "Pesan" -#. Label of a Text Editor field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Section Break field in DocType 'Auto Email Report' -#. Label of a Text Editor field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Message" -msgstr "Pesan" - -#: __init__.py:527 public/js/frappe/ui/messages.js:267 +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" msgstr "Pesan" -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message" -msgstr "Pesan" - -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Code field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Small Text field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Data field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Message" -msgstr "Pesan" - -#. Label of a HTML Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message (HTML)" -msgstr "Pesan (HTML)" - -#. Label of a Markdown Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message (Markdown)" -msgstr "Pesan (penurunan harga)" - -#. Label of a HTML field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Message Examples" -msgstr "Contoh pesan" +msgstr "" -#. Label of a Small Text field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the message_id (Small Text) field in DocType 'Communication' +#. Label of the message_id (Small Text) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Message ID" -msgstr "pesan ID" +msgstr "" -#. Label of a Small Text field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Message ID" -msgstr "pesan ID" - -#. Label of a Data field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "Parameter pesan" +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "Pesan terkirim" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:841 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Pesan terpotong" -#: email/doctype/email_account/email_account.py:299 +#: frappe/email/doctype/email_account/email_account.py:344 msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" -#: automation/doctype/auto_repeat/auto_repeat.js:102 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Message not setup" msgstr "Pesan tidak disetel" -#. Description of the 'Success Message' (Text) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Description of the 'Success message' (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Message to be displayed on successful completion" msgstr "" -#. Label of a Code field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Message-id" -msgstr "Pesan-id" +msgstr "" -#. Label of a Code field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the messages (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Meta" msgstr "" -#: website/doctype/web_page/web_page.js:124 +#. Label of the meta_description (Small Text) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Deskripsi meta" -#. Label of a Small Text field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Description" -msgstr "Deskripsi meta" - -#. Label of a Small Text field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Description" -msgstr "Deskripsi meta" - -#: website/doctype/web_page/web_page.js:131 +#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Gambar Meta" -#. Label of a Attach Image field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Image" -msgstr "Gambar Meta" - -#. Label of a Attach Image field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Image" -msgstr "Gambar Meta" - -#. Label of a Section Break field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "Tag Meta" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Meta Tags" -msgstr "Tag Meta" - -#. Label of a Table field in DocType 'Website Route Meta' -#: website/doctype/website_route_meta/website_route_meta.json -msgctxt "Website Route Meta" -msgid "Meta Tags" -msgstr "Tag Meta" - -#: website/doctype/web_page/web_page.js:117 +#. Label of the meta_title (Data) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Judul Meta" -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Title" -msgstr "Judul Meta" +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "" -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Title" -msgstr "Judul Meta" +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" -#: website/doctype/web_page/web_page.js:110 +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" msgstr "Judul meta untuk SEO" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Method" -msgstr "Metode" - -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Method" -msgstr "Metode" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json msgid "Method" -msgstr "Metode" +msgstr "" -#. Label of a Data field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Method" -msgstr "Metode" +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" -#. Label of a Select field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Method" -msgstr "Metode" - -#. Label of a Data field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Method" -msgstr "Metode" - -#: desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the middle_name (Data) field in DocType 'Contact' +#. Label of the middle_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json msgid "Middle Name" -msgstr "Nama tengah" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Middle Name" -msgstr "Nama tengah" +msgstr "" #. Name of a DocType -#: automation/doctype/milestone/milestone.json -msgid "Milestone" -msgstr "Batu" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Milestone" +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json msgid "Milestone" msgstr "Batu" +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' #. Name of a DocType -#: automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "Milestone Tracker" - -#. Label of a Link field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Milestone Tracker" -msgstr "Milestone Tracker" +msgstr "" #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Minimum" -msgstr "Minimum" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Minimum Password Score" -msgstr "Skor Kata Kunci Minimum" +msgstr "" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Minor" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:100 -#: integrations/doctype/ldap_settings/ldap_settings.py:105 -#: integrations/doctype/ldap_settings/ldap_settings.py:114 -#: integrations/doctype/ldap_settings/ldap_settings.py:122 -#: integrations/doctype/ldap_settings/ldap_settings.py:332 +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Misconfigured" msgstr "" -#: desk/form/meta.py:213 +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 msgid "Missing DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1477 +#: frappe/core/doctype/doctype/doctype.py:1526 msgid "Missing Field" msgstr "" -#: public/js/frappe/form/save.js:178 +#: frappe/public/js/frappe/form/save.js:131 msgid "Missing Fields" msgstr "hilang Fields" -#: email/doctype/auto_email_report/auto_email_report.py:123 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" -#: desk/form/assign_to.py:105 +#: frappe/desk/form/assign_to.py:110 msgid "Missing Permission" msgstr "" -#: www/update-password.html:107 www/update-password.html:114 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" -#: public/js/frappe/ui/field_group.js:118 -#: public/js/frappe/widgets/widget_dialog.js:330 -#: public/js/workflow_builder/store.js:97 -#: workflow/doctype/workflow/workflow.js:71 +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" msgstr "Hilang Nilai Diperlukan" -#: www/login.py:96 +#: frappe/www/login.py:107 msgid "Mobile" msgstr "" -#: tests/test_translate.py:86 tests/test_translate.py:89 -#: tests/test_translate.py:91 tests/test_translate.py:94 +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 msgid "Mobile No" -msgstr "Ponsel Tidak ada" +msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Mobile No" -msgstr "Ponsel Tidak ada" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Mobile No" -msgstr "Ponsel Tidak ada" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Models" -msgstr "" - -#: core/report/transaction_log_report/transaction_log_report.py:106 -#: social/doctype/energy_point_rule/energy_point_rule.js:43 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 msgid "Modified By" msgstr "dimodifikasi By" -#: core/doctype/doctype/doctype_list.js:17 +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Module" msgstr "Modul" -#. Label of a Data field in DocType 'Block Module' -#: core/doctype/block_module/block_module.json -msgctxt "Block Module" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'User Type Module' -#: core/doctype/user_type_module/user_type_module.json -msgctxt "User Type Module" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" msgstr "" #. Name of a DocType -#: core/doctype/module_def/module_def.json -msgid "Module Def" -msgstr "Modul Def" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Module Def" +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json msgid "Module Def" msgstr "Modul Def" -#. Linked DocType in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" -msgid "Module Def" -msgstr "Modul Def" - -#. Label of a HTML field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json msgid "Module HTML" msgstr "" -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Module Name" -msgstr "Nama Modul" - -#. Label of a Data field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Module Name" -msgstr "Nama Modul" - -#. Name of a DocType -#: desk/doctype/module_onboarding/module_onboarding.json -msgid "Module Onboarding" -msgstr "Modul Onboarding" +msgstr "" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Module Onboarding" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" msgstr "Modul Onboarding" #. Name of a DocType -#: core/doctype/module_profile/module_profile.json -msgid "Module Profile" -msgstr "" - +#. Label of the module_profile (Link) field in DocType 'User' #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Module Profile" +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" msgstr "" -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Module Profile" -msgstr "" - -#. Label of a Data field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json msgid "Module Profile Name" msgstr "" -#: desk/doctype/module_onboarding/module_onboarding.py:68 +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" msgstr "" -#: custom/doctype/customize_form/customize_form.js:208 +#: frappe/custom/doctype/customize_form/customize_form.js:250 msgid "Module to Export" msgstr "Modul untuk Ekspor" -#: modules/utils.py:261 +#: frappe/modules/utils.py:273 msgid "Module {} not found" msgstr "" -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Modules" -msgstr "Modul" - #. Group in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json msgid "Modules" msgstr "Modul" -#. Label of a HTML field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "Modul HTML" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Monday" -msgstr "Senin" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Monday" -msgstr "Senin" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Monday" -msgstr "Senin" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Monday" -msgstr "Senin" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Monday" -msgstr "Senin" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "Monospace" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:268 +#: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" msgstr "Bulan" -#: public/js/frappe/utils/common.js:400 -#: website/report/website_analytics/website_analytics.js:25 -msgid "Monthly" -msgstr "Bulanan" - +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 msgid "Monthly" msgstr "Bulanan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Monthly" -msgstr "Bulanan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Monthly Long" -msgstr "Panjang Bulanan" +msgstr "" -#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Monthly Long" -msgstr "Panjang Bulanan" - -#: public/js/frappe/form/link_selector.js:39 -#: public/js/frappe/form/multi_select_dialog.js:43 -#: public/js/frappe/form/multi_select_dialog.js:70 -#: templates/includes/list/list.html:23 -#: templates/includes/search_template.html:13 +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 msgid "More" msgstr "Lanjut" -#. Label of a Section Break field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "More Information" -msgstr "Informasi lebih" +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json msgid "More Information" -msgstr "Informasi lebih" +msgstr "" -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "More Information" -msgstr "Informasi lebih" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "More Information" -msgstr "Informasi lebih" - -#: website/doctype/help_article/templates/help_article.html:19 -#: website/doctype/help_article/templates/help_article.html:33 +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" msgstr "artikel lebih lanjut tentang {0}" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "More content for the bottom of the page." -msgstr "Konten lainnya untuk bagian bawah halaman." +msgstr "" -#: public/js/frappe/ui/sort_selector.js:193 +#: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" msgstr "sebagian Digunakan" -#: utils/password.py:65 +#: frappe/utils/password.py:76 msgid "Most probably your password is too long." msgstr "" -#: core/doctype/communication/communication.js:86 -#: core/doctype/communication/communication.js:194 -#: core/doctype/communication/communication.js:212 +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Move" msgstr "Bergerak" -#: public/js/frappe/form/grid_row.js:189 +#: frappe/public/js/frappe/form/grid_row.js:193 msgid "Move To" msgstr "Pindah ke" -#: core/doctype/communication/communication.js:104 +#: frappe/core/doctype/communication/communication.js:104 msgid "Move To Trash" msgstr "Pindah Untuk Sampah" -#: public/js/frappe/form/form.js:176 +#: frappe/public/js/form_builder/components/Section.vue:295 +msgid "Move current and all subsequent sections to a new tab" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:177 msgid "Move cursor to above row" msgstr "" -#: public/js/frappe/form/form.js:180 +#: frappe/public/js/frappe/form/form.js:181 msgid "Move cursor to below row" msgstr "" -#: public/js/frappe/form/form.js:184 +#: frappe/public/js/frappe/form/form.js:185 msgid "Move cursor to next column" msgstr "" -#: public/js/frappe/form/form.js:188 +#: frappe/public/js/frappe/form/form.js:189 msgid "Move cursor to previous column" msgstr "" -#: public/js/frappe/form/grid_row.js:165 +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:237 +msgid "Move the current field and the following fields to a new column" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:168 msgid "Move to Row Number" msgstr "Pindah ke Nomor Baris" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Move to next step when clicked inside highlighted area." msgstr "" #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" msgstr "" -#: utils/nestedset.py:334 +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "" + +#: frappe/utils/nestedset.py:331 msgid "Multiple root nodes not allowed." msgstr "Beberapa node akar tidak diperbolehkan." -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Multiplier Field" -msgstr "Bidang Pengganda" - #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Must be a publicly accessible Google Sheets URL" -msgstr "Harus berupa URL Google Spreadsheet yang dapat diakses publik" +msgstr "" #. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" msgstr "" -#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Must be of type \"Attach Image\"" -msgstr "Harus dari jenis "Lampirkan Gambar"" - #. Description of the 'Image Field' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Must be of type \"Attach Image\"" -msgstr "Harus dari jenis "Lampirkan Gambar"" +msgstr "" -#: desk/query_report.py:202 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Harus memiliki ijin laporan untuk mengakses laporan ini." -#: core/doctype/report/report.py:148 +#: frappe/core/doctype/report/report.py:151 msgid "Must specify a Query to run" msgstr "Harus menentukan Query untuk menjalankan" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Mute Sounds" -msgstr "Suara bisu" +msgstr "" -#: templates/includes/web_sidebar.html:41 -#: website/doctype/web_form/web_form.py:401 -#: website/doctype/website_settings/website_settings.py:181 www/list.py:21 -#: www/me.html:4 www/me.html:8 www/update_password.py:10 +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" msgstr "Akun Saya" -#. Label of a standard navbar item -#. Type: Route -#: hooks.py -msgid "My Profile" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" msgstr "" -#. Label of a standard navbar item -#. Type: Action -#: hooks.py -msgid "My Settings" +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "MyISAM" -msgstr "MyISAM" +msgstr "" -#: workflow/doctype/workflow/workflow.js:19 +#: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." msgstr "" #. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" msgstr "" -#: public/js/frappe/form/layout.js:75 -#: public/js/frappe/form/multi_select_dialog.js:239 -#: public/js/frappe/form/save.js:154 -#: public/js/frappe/views/file/file_view.js:97 -#: website/doctype/website_slideshow/website_slideshow.js:25 +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" msgstr "Nama" -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Name" -msgstr "Nama" +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Name" -msgstr "Nama" - -#. Label of a Data field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" -msgid "Name" -msgstr "Nama" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Name" -msgstr "Nama" - -#: desk/utils.py:22 +#: frappe/desk/utils.py:22 msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:460 +#: frappe/model/naming.py:504 msgid "Name cannot contain special characters like {0}" msgstr "Nama tidak boleh berisi karakter khusus seperti {0}" -#: custom/doctype/custom_field/custom_field.js:91 +#: frappe/custom/doctype/custom_field/custom_field.js:91 msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" msgstr "Nama Tipe Dokumen (DocType) Anda ingin bidang ini dapat dihubungkan dengan. misalnya Pelanggan" -#: printing/page/print_format_builder/print_format_builder.js:117 +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" msgstr "Nama Print Format baru" -#: model/naming.py:454 +#: frappe/model/naming.py:499 msgid "Name of {0} cannot be {1}" msgstr "Nama {0} tidak dapat {1}" -#: utils/password_strength.py:178 +#: frappe/utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." msgstr "Nama dan nama keluarga sendiri mudah ditebak." -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "Penamaan" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Naming" -msgstr "Penamaan" - -#. Label of a Section Break field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Naming" -msgstr "Penamaan" - -#. Description of the 'Auto Name' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "" -"Naming Options:\n" -"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" -"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "" -"Naming Options:\n" +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Naming Rule" -msgstr "" - -#. Label of a Tab Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "Series Penamaan" +msgstr "" -#: model/naming.py:243 +#: frappe/model/naming.py:260 msgid "Naming Series mandatory" msgstr "Penamaan Seri wajib" #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "Navbar" - -#. Label of a Section Break field in DocType 'Website Settings' -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Navbar" -msgstr "Navbar" +msgstr "" #. Name of a DocType -#: core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Navbar Item" msgstr "Item Navbar" #. Name of a DocType -#: core/doctype/navbar_settings/navbar_settings.json -msgid "Navbar Settings" -msgstr "Pengaturan Navbar" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Navbar Settings" +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json msgid "Navbar Settings" msgstr "Pengaturan Navbar" -#. Label of a Link field in DocType 'Website Settings' -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template" -msgstr "Template Navbar" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template Values" -msgstr "Nilai Template Navbar" +msgstr "" -#: public/js/frappe/ui/keyboard.js:211 -msgid "Navigate Home" -msgstr "Arahkan Beranda" - -#: public/js/frappe/list/list_view.js:1134 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigasikan daftar ke bawah" -#: public/js/frappe/list/list_view.js:1141 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigasikan daftar ke atas" -#: public/js/frappe/ui/page.js:168 +#: frappe/public/js/frappe/ui/page.js:175 msgid "Navigate to main content" msgstr "" -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json msgid "Navigation Settings" msgstr "" -#: desk/doctype/workspace/workspace.py:297 +#: frappe/desk/doctype/workspace/workspace.py:319 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: desk/doctype/workspace/workspace.py:343 -msgid "Need Workspace Manager role to hide/unhide public workspaces" -msgstr "" - -#: model/document.py:607 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Nilai Negatif" -#: utils/nestedset.py:95 +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator." #. Name of a DocType -#: printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Network Printer Settings" msgstr "" -#: core/doctype/success_action/success_action.js:55 -#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46 -#: public/js/frappe/form/success_action.js:77 -#: public/js/frappe/views/treeview.js:454 -#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19 -msgid "New" -msgstr "Baru" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "New" -msgstr "Baru" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "New" -msgstr "Baru" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 msgid "New" msgstr "Baru" -#: public/js/frappe/views/interaction.js:15 +#: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" msgstr "Aktivitas Baru" -#: templates/includes/comments/comments.py:64 +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" msgstr "Komentar Baru pada {0}: {1}" -#: printing/page/print/print.js:288 printing/page/print/print.js:335 -msgid "New Custom Print Format" -msgstr "New Custom Print Format" +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:295 +#: frappe/printing/page/print/print.js:342 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "New Document Form" msgstr "" -#: desk/doctype/notification_log/notification_log.py:158 +#: frappe/desk/doctype/notification_log/notification_log.py:154 msgid "New Document Shared {0}" msgstr "Dokumen Baru Dibagikan {0}" -#: public/js/frappe/form/footer/form_timeline.js:26 -#: public/js/frappe/views/communication.js:23 +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 msgid "New Email" msgstr "Surel Baru" -#: public/js/frappe/list/list_view_select.js:98 -#: public/js/frappe/views/inbox/inbox_view.js:177 +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" msgstr "Akun Email Baru" -#: public/js/frappe/form/footer/form_timeline.js:45 +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" msgstr "Acara baru" -#: public/js/frappe/views/file/file_view.js:94 +#: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" msgstr "Folder baru" -#: public/js/frappe/views/kanban/kanban_view.js:341 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Papan Kanban baru" -#: desk/doctype/notification_log/notification_log.py:156 +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 msgid "New Mention on {0}" msgstr "Sebutan Baru di {0}" -#: www/contact.py:51 +#: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" msgstr "Pesan dari Kontak Situs Web Halaman" -#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727 +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 msgid "New Name" msgstr "Nama baru" -#. Label of a Read Only field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" -msgid "New Name" -msgstr "Nama baru" - -#: email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Newsletter Baru" - -#: desk/doctype/notification_log/notification_log.py:155 +#: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Pemberitahuan Baru" -#: core/doctype/user/user.js:167 www/update-password.html:19 +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Kata sandi Baru" -#: printing/page/print/print.js:260 printing/page/print/print.js:314 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +#: frappe/printing/page/print/print.js:267 +#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Nama Format Cetak Baru" -#: public/js/frappe/views/reports/report_view.js:1310 +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1384 msgid "New Report name" msgstr "New nama Laporan" -#: workflow/page/workflow_builder/workflow_builder.js:61 +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1172 +#: frappe/public/js/frappe/views/workspace/workspace.js:390 msgid "New Workspace" msgstr "" -#: www/update-password.html:77 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" -#: utils/change_log.py:306 +#: frappe/utils/change_log.py:389 msgid "New updates are available" msgstr "Pembaruan baru tersedia" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." msgstr "" #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "New value to be set" -msgstr "Nilai baru yang akan ditetapkan" +msgstr "" -#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36 -#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209 -#: public/js/frappe/form/toolbar.js:490 -#: public/js/frappe/ui/toolbar/search_utils.js:151 -#: public/js/frappe/ui/toolbar/search_utils.js:152 -#: public/js/frappe/ui/toolbar/search_utils.js:201 -#: public/js/frappe/ui/toolbar/search_utils.js:202 -#: public/js/frappe/views/treeview.js:350 -#: website/doctype/web_form/web_form.py:310 +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/views/treeview.js:366 +#: frappe/public/js/frappe/widgets/widget_dialog.js:72 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" -msgstr "New {0}" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Baru {0} Dibuat" -#: public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Baru {0} {1} ditambahkan ke Dasbor {2}" -#: public/js/frappe/form/quick_entry.js:167 -#: public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "{0} {1} baru dibuat" -#: automation/doctype/auto_repeat/auto_repeat.py:373 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 msgid "New {0}: {1}" msgstr "Baru {0}: {1}" -#: utils/change_log.py:298 +#: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" msgstr "Rilis {} baru untuk aplikasi berikut tersedia" -#: core/doctype/user/user.py:764 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Name of a DocType -#: automation/workspace/tools/tools.json -#: email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Laporan berkala" - -#. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Newsletter" -msgid "Newsletter" -msgstr "Laporan berkala" - -#. Name of a DocType -#: email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Surel surat edaran kelompok" - #. Name of a role -#: email/doctype/email_group/email_group.json -#: email/doctype/email_group_member/email_group_member.json -#: email/doctype/newsletter/newsletter.json -#: website/doctype/marketing_campaign/marketing_campaign.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Surat edaran Manajer" -#: email/doctype/newsletter/newsletter.py:130 -msgid "Newsletter has already been sent" -msgstr "Surat edaran telah terkirim" - -#: email/doctype/newsletter/newsletter.py:149 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: email/doctype/newsletter/newsletter.py:137 -msgid "Newsletter should have atleast one recipient" -msgstr "Newsletter harus memiliki minimal satu penerima" - -#: email/doctype/newsletter/newsletter.py:392 -msgid "Newsletters" -msgstr "Surat edaran" - -#: public/js/frappe/form/form_tour.js:316 -#: public/js/onboarding_tours/onboarding_tours.js:15 -#: public/js/onboarding_tours/onboarding_tours.js:240 -#: templates/includes/slideshow.html:38 website/utils.py:247 -#: website/web_template/slideshow/slideshow.html:44 +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" msgstr "Lanjut" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Next Action Email Template" -msgstr "Template Email Aksi Berikutnya" +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "Lanjut" -#. Label of a HTML field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Next Actions HTML" -msgstr "HTML Tindakan Berikutnya" - -#: public/js/frappe/form/toolbar.js:297 -msgid "Next Document" +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" msgstr "" -#. Label of a Datetime field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Next Execution" msgstr "" -#. Label of a Link field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Form Tour" msgstr "" -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Next Schedule Date" -msgstr "Jadwal Jadwal Berikutnya" +msgstr "" -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Next State" -msgstr "Negara berikutnya" +msgstr "" -#. Label of a Code field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Step Condition" msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Next Sync Token" -msgstr "Token Sinkronisasi Berikutnya" +msgstr "" -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Next Sync Token" -msgstr "Token Sinkronisasi Berikutnya" +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next on Click" msgstr "" -#: integrations/doctype/webhook/webhook.py:137 -#: public/js/form_builder/utils.js:341 -#: public/js/frappe/form/controls/link.js:471 -#: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 -#: website/doctype/help_article/templates/help_article.html:26 -msgid "No" -msgstr "No" - -#: public/js/frappe/ui/filters/filter.js:501 -msgctxt "Checkbox is not checked" -msgid "No" -msgstr "No" - -#: public/js/frappe/ui/messages.js:37 -msgctxt "Dismiss confirmation dialog" -msgid "No" -msgstr "No" - +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' #. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "No" -msgstr "No" - -#. Option for the 'Standard' (Select) field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "No" -msgstr "No" - #. Option for the 'Standard' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:96 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:341 +#: frappe/public/js/frappe/form/controls/link.js:494 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "No" +msgstr "" -#. Option for the 'Is Standard' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" msgid "No" -msgstr "No" +msgstr "" -#: www/third_party_apps.html:54 +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" msgstr "Tidak ada sesi aktif" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "No Copy" -msgstr "Tidak ada Copy" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "No Copy" -msgstr "Tidak ada Copy" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "No Copy" -msgstr "Tidak ada Copy" - -#: core/doctype/data_export/exporter.py:162 -#: email/doctype/auto_email_report/auto_email_report.py:263 -#: public/js/frappe/data_import/import_preview.js:142 -#: public/js/frappe/form/multi_select_dialog.js:223 -#: public/js/frappe/utils/datatable.js:10 +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 msgid "No Data" msgstr "Tidak ada data" -#: public/js/frappe/views/inbox/inbox_view.js:176 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" msgstr "Tidak ada Akun Surel" -#: public/js/frappe/views/inbox/inbox_view.js:183 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Tidak ada Email" -#: integrations/doctype/ldap_settings/ldap_settings.py:362 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 msgid "No Entry for the User {0} found within LDAP!" msgstr "Tidak ada Entri untuk Pengguna {0} yang ditemukan dalam LDAP!" -#: public/js/frappe/widgets/chart_widget.js:366 +#: frappe/public/js/frappe/widgets/chart_widget.js:407 msgid "No Filters Set" msgstr "Tidak Ada Filter Ditetapkan" -#: integrations/doctype/google_calendar/google_calendar.py:356 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 msgid "No Google Calendar Event to sync." msgstr "Tidak ada Acara Kalender Google untuk disinkronkan." -#: public/js/frappe/ui/capture.js:254 +#: frappe/public/js/frappe/ui/capture.js:262 msgid "No Images" msgstr "" -#: desk/page/leaderboard/leaderboard.js:282 -msgid "No Items Found" -msgstr "" - -#: integrations/doctype/ldap_settings/ldap_settings.py:364 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 msgid "No LDAP User found for email: {0}" msgstr "Tidak ada Pengguna LDAP yang ditemukan untuk email: {0}" -#: printing/page/print/print.js:675 printing/page/print/print.js:757 -#: public/js/frappe/list/bulk_operations.js:82 -#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54 +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js:703 +#: frappe/printing/page/print/print.js:784 +#: frappe/public/js/frappe/list/bulk_operations.js:98 +#: frappe/public/js/frappe/list/bulk_operations.js:170 +#: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: model/naming.py:436 +#: frappe/model/naming.py:481 msgid "No Name Specified for {0}" msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}" -#: core/doctype/doctype/doctype.py:1684 +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1743 msgid "No Permissions Specified" msgstr "Tidak ada izin yang ditentukan" -#: core/page/permission_manager/permission_manager.js:192 +#: frappe/core/page/permission_manager/permission_manager.js:199 msgid "No Permissions set for this criteria." msgstr "Tidak ada Izin ditetapkan untuk kriteria ini." -#: core/page/dashboard_view/dashboard_view.js:93 +#: frappe/core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" msgstr "Tidak Ada Grafik yang Diizinkan" -#: core/page/dashboard_view/dashboard_view.js:92 +#: frappe/core/page/dashboard_view/dashboard_view.js:92 msgid "No Permitted Charts on this Dashboard" msgstr "Tidak Ada Diagram yang Diizinkan di Dasbor ini" -#: printing/page/print/print.js:835 +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:707 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:862 msgid "No Printer is Available." msgstr "Tidak Ada Printer." -#: public/js/frappe/form/link_selector.js:135 -msgid "No Results" -msgstr "No Results" +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" -#: public/js/frappe/ui/toolbar/search.js:51 +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:765 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: public/js/frappe/views/kanban/kanban_view.js:341 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:565 +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:672 msgid "No Tags" msgstr "Tidak ada Tags" -#: email/doctype/notification/notification.js:180 +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:229 msgid "No alerts for today" msgstr "Tidak ada pemberitahuan untuk hari ini" -#: email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." msgstr "" -#: public/js/frappe/form/save.js:38 +#: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Tidak ada perubahan dalam dokumen" -#: model/rename_doc.py:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1477 -msgid "No changes made on the page" -msgstr "" - -#: custom/doctype/doctype_layout/doctype_layout.js:59 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 msgid "No changes to sync" msgstr "" -#: core/doctype/data_import/importer.py:286 +#: frappe/core/doctype/data_import/importer.py:298 msgid "No changes to update" msgstr "" -#: website/doctype/blog_post/blog_post.py:376 +#: frappe/website/doctype/blog_post/blog_post.py:378 msgid "No comments yet" msgstr "Belum ada komentar" -#: templates/includes/comments/comments.html:4 +#: frappe/templates/includes/comments/comments.html:4 msgid "No comments yet. " msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:426 +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 msgid "No contacts linked to document" msgstr "Tidak ada kontak yang tertaut ke dokumen" -#: desk/query_report.py:335 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Tidak ada data untuk diekspor" -#: contacts/doctype/address/address.py:251 +#: frappe/contacts/doctype/address/address.py:246 msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." msgstr "Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template." -#: public/js/frappe/ui/toolbar/search.js:71 +#: frappe/public/js/frappe/ui/toolbar/search.js:71 msgid "No documents found tagged with {0}" msgstr "Tidak ditemukan dokumen yang ditandai dengan {0}" -#: public/js/frappe/views/inbox/inbox_view.js:21 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email." -#: utils/file_manager.py:143 +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 msgid "No file attached" msgstr "Tidak ada file terlampir" -#: desk/form/utils.py:102 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 msgid "No further records" msgstr "Tidak ada catatan lebih lanjut" -#: templates/includes/search_template.html:49 +#: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru" -#: public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" msgstr "Tidak ada lagi item untuk ditampilkan" -#: utils/password_strength.py:45 +#: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." msgstr "Tidak perlu untuk simbol, angka, atau huruf besar." -#: integrations/doctype/google_contacts/google_contacts.py:192 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." msgstr "Tidak ada Kontak Google baru yang disinkronkan." -#: printing/page/print_format_builder/print_format_builder.js:415 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" msgstr "Tidak ada dari Kolom" -#. Label of a Int field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "No of Requested SMS" msgstr "" -#. Label of a Int field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "No of Rows (Max 500)" -msgstr "Tidak ada dari Rows (Max 500)" +msgstr "" -#. Label of a Int field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "No of Sent SMS" msgstr "" -#: __init__.py:1027 client.py:109 client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Tidak ada izin untuk {0}" -#: public/js/frappe/form/form.js:1115 +#: frappe/public/js/frappe/form/form.js:1142 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Tidak ada izin untuk '{0}' {1}" -#: model/db_query.py:943 +#: frappe/model/db_query.py:950 msgid "No permission to read {0}" msgstr "Tidak ada izin untuk membaca {0}" -#: share.py:224 +#: frappe/share.py:220 msgid "No permission to {0} {1} {2}" msgstr "Tidak ada izin untuk {0} {1} {2}" -#: core/doctype/user_permission/user_permission_list.js:175 +#: frappe/core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" msgstr "Tidak ada catatan yang dihapus" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" msgstr "Tidak ada catatan di {0}" -#: public/js/frappe/data_import/data_exporter.js:221 +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" msgstr "Tidak ada catatan yang akan diekspor" -#: www/printview.py:426 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:129 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 msgid "No template found at path: {0}" msgstr "Tidak ada template yang ditemukan di jalan: {0}" -#: website/web_template/discussions/discussions.html:2 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 msgid "No {0}" msgstr "" -#: public/js/frappe/list/list_view.js:466 +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:233 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:494 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" -#: public/js/frappe/views/inbox/inbox_view.js:171 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" msgstr "Tidak ada {0} email" -#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251 +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:256 +msgctxt "Title of the 'row number' column" msgid "No." msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Non Negative" -msgstr "Non Negatif" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Non Negative" -msgstr "Non Negatif" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Non Negative" -msgstr "Non Negatif" +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "None" -msgstr "Tidak ada" +msgstr "" -#: public/js/frappe/form/workflow.js:36 +#: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Tidak ada: Akhir Alur Kerja" -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Copies" msgstr "" -#. Label of a Data field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:972 utils/oauth.py:272 +#: frappe/core/doctype/user/user.py:1022 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Tidak Diizinkan" -#: public/js/frappe/ui/filters/filter.js:36 +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" msgstr "Bukan Leluhur" -#: public/js/frappe/ui/filters/filter.js:34 +#: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" msgstr "Bukan Descendants Of" -#: public/js/frappe/ui/filters/filter.js:17 +#: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" msgstr "Tidak sama dengan" -#: app.py:363 www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Tidak ditemukan" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Not Helpful" msgstr "" -#: public/js/frappe/ui/filters/filter.js:21 +#: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" msgstr "Tidak Masuk" -#: public/js/frappe/ui/filters/filter.js:19 +#: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" msgstr "Tidak suka" -#: public/js/frappe/form/linked_with.js:45 +#: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" msgstr "Tidak terkait dengan catatan apapun" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Not Nullable" msgstr "" -#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97 -#: public/js/frappe/web_form/webform_script.js:15 -#: website/doctype/web_form/web_form.py:603 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:177 -#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/page_renderers/not_permitted_page.py:22 +#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 +#: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Tidak Diijinkan" -#: desk/query_report.py:513 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" -#: website/doctype/blog_post/blog_post_list.js:7 -#: website/doctype/web_form/web_form_list.js:7 -#: website/doctype/web_page/web_page_list.js:7 +#: frappe/website/doctype/blog_post/blog_post_list.js:7 +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" msgstr "Tidak Diterbitkan" -#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740 -#: public/js/frappe/model/indicator.js:28 -#: public/js/frappe/views/kanban/kanban_view.js:167 -#: public/js/frappe/views/reports/report_view.js:173 -#: public/js/print_format_builder/print_format_builder.bundle.js:39 -#: website/doctype/web_form/templates/web_form.html:75 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 +#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" msgstr "Tidak Disimpan" -#: core/doctype/error_log/error_log_list.js:7 +#: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" msgstr "Tidak Terlihat" -#: email/doctype/newsletter/newsletter_list.js:9 -msgid "Not Sent" -msgstr "Tidak terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Not Sent" -msgstr "Tidak terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Not Sent" msgstr "Tidak terkirim" -#: public/js/frappe/list/list_sidebar_group_by.js:219 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" msgstr "Tidak Diatur" -#: public/js/frappe/ui/filters/filter.js:563 +#: frappe/public/js/frappe/ui/filters/filter.js:608 msgctxt "Field value is not set" msgid "Not Set" msgstr "Tidak Diatur" -#: utils/csvutils.py:77 +#: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Bukan Nilai Comma Separated valid (CSV file)" -#: core/doctype/user/user.py:197 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Bukan Gambar Pengguna yang valid." -#: model/workflow.py:118 +#: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" msgstr "Bukan Aksi Alur Kerja yang valid" -#: workflow/doctype/workflow/workflow_list.js:7 +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" msgstr "Tidak aktif" -#: permissions.py:367 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Tidak diizinkan untuk {0}: {1}" -#: email/doctype/notification/notification.py:388 +#: frappe/email/doctype/notification/notification.py:595 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Tidak diizinkan melampirkan dokumen {0}, harap aktifkan Izinkan Pencetakan Untuk {0} di Setelan Cetak" -#: core/doctype/doctype/doctype.py:338 +#: frappe/core/doctype/doctype/doctype.py:335 msgid "Not allowed to create custom Virtual DocType." msgstr "" -#: www/printview.py:141 +#: frappe/www/printview.py:165 msgid "Not allowed to print cancelled documents" msgstr "Tidak diizinkan untuk mencetak dokumen dibatalkan" -#: www/printview.py:138 +#: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" msgstr "Tidak diizinkan untuk mencetak dokumen draft" -#: permissions.py:213 +#: frappe/permissions.py:213 msgid "Not allowed via controller permission check" msgstr "" -#: public/js/frappe/request.js:145 website/js/website.js:94 +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 msgid "Not found" msgstr "Tidak ditemukan" -#: core/doctype/page/page.py:62 +#: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" msgstr "Tidak dalam Mode Developer" -#: core/doctype/doctype/doctype.py:332 +#: frappe/core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'." -#: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:199 handler.py:109 -#: public/js/frappe/request.js:157 public/js/frappe/request.js:167 -#: public/js/frappe/request.js:172 -#: public/js/frappe/views/kanban/kanban_board.bundle.js:68 -#: website/doctype/web_form/web_form.py:616 website/js/website.js:97 +#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Tidak diperbolehkan" -#: public/js/frappe/list/list_view.js:45 +#: frappe/public/js/frappe/list/list_view.js:50 msgid "Not permitted to view {0}" msgstr "Tidak diizinkan untuk melihat {0}" -#. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.py:395 -#: desk/doctype/note/note.json -msgid "Note" -msgstr "Catatan" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Note" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json msgid "Note" msgstr "Catatan" #. Name of a DocType -#: desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" msgstr "Catatan Dilihat Oleh" -#: www/confirm_workflow_action.html:8 +#: frappe/www/confirm_workflow_action.html:8 msgid "Note:" msgstr "catatan:" -#. Description of the 'Send Email for Successful Backup' (Check) field in -#. DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Note: By default emails for failed backups are sent." -msgstr "Catatan: Secara default email untuk cadangan gagal dikirim." - -#. Description of the 'Send Email for Successful backup' (Check) field in -#. DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Note: By default emails for failed backups are sent." -msgstr "Catatan: Secara default email untuk cadangan gagal dikirim." - -#: public/js/frappe/utils/utils.js:775 +#: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Catatan: Mengubah Nama Halaman akan mematahkan URL sebelumnya ke halaman ini." -#: core/doctype/user/user.js:25 +#: frappe/core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" #. Description of the 'sb0' (Section Break) field in DocType 'Website #. Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "Catatan: Untuk hasil terbaik, gambar harus memiliki ukuran dan lebar yang sama harus lebih besar dari tinggi." +msgstr "" #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "Catatan: Beberapa sesi akan diizinkan dalam kasus perangkat mobile" +msgstr "" -#: website/web_form/request_to_delete_data/request_to_delete_data.js:8 +#: frappe/core/doctype/user/user.js:393 +msgid "Note: This will be shared with user." +msgstr "" + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." msgstr "" -#: core/doctype/data_export/exporter.py:183 +#: frappe/core/doctype/data_export/exporter.py:183 msgid "Notes:" msgstr "Catatan:" -#: public/js/frappe/form/undo_manager.js:43 +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" msgstr "" -#: public/js/frappe/form/undo_manager.js:33 +#: frappe/public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" msgstr "" -#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7 -#: website/doctype/blog_post/templates/blog_post_list.html:41 +#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Tidak ada yang menunjukkan" -#: core/doctype/user_permission/user_permission_list.js:129 +#: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" msgstr "Tidak ada yang diperbarui" -#. Name of a DocType -#: core/doctype/communication/mixins.py:142 -#: email/doctype/notification/notification.json -msgid "Notification" -msgstr "Pemberitahuan" - -#. Label of a Section Break field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Notification" -msgstr "Pemberitahuan" - +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Notification" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json msgid "Notification" msgstr "Pemberitahuan" #. Name of a DocType -#: desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Notification Log" msgstr "Log Pemberitahuan" #. Name of a DocType -#: email/doctype/notification_recipient/notification_recipient.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" msgstr "Penerima Pemberitahuan" -#. Name of a DocType -#: desk/doctype/notification_settings/notification_settings.json -#: public/js/frappe/ui/notifications/notifications.js:36 -msgid "Notification Settings" -msgstr "Pengaturan pemberitahuan" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Notification Settings" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 msgid "Notification Settings" msgstr "Pengaturan pemberitahuan" #. Name of a DocType -#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgid "Notification Subscribed Document" msgstr "Pemberitahuan Dokumen Berlangganan" -#: public/js/frappe/ui/notifications/notifications.js:49 -#: public/js/frappe/ui/notifications/notifications.js:180 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:500 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:486 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:495 +msgid "Notification: user {0} has no Mobile number set" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" msgstr "Pemberitahuan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Notifications" -msgstr "Pemberitahuan" +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" #. Description of the 'Default Outgoing' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "Pemberitahuan dan kiriman bulk akan dikirim dari server keluar ini." +msgstr "" -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Notify Users On Every Login" -msgstr "Beritahu Pengguna Pada Setiap Login" +msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "Beri tahu melalui Email" +msgstr "" -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json msgid "Notify by email" -msgstr "Beritahu melalui Surel" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "Beritahu jika unreplied" +msgstr "" -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "Beritahu jika unreplied untuk (dalam menit)" +msgstr "" -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" -msgstr "Memberitahu pengguna dengan popup ketika mereka login" +msgstr "" -#: public/js/frappe/form/controls/datetime.js:25 -#: public/js/frappe/form/controls/time.js:37 +#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sekarang" -#. Label of a Data field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Number" -msgstr "Jumlah" +msgstr "" #. Name of a DocType -#: desk/doctype/number_card/number_card.json -#: public/js/frappe/widgets/widget_dialog.js:591 +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" msgstr "Kartu Nomor" #. Name of a DocType -#: desk/doctype/number_card_link/number_card_link.json +#: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" msgstr "Tautan Kartu Nomor" -#. Label of a Link field in DocType 'Workspace Number Card' -#: desk/doctype/workspace_number_card/workspace_number_card.json -msgctxt "Workspace Number Card" +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:621 +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 msgid "Number Cards" msgstr "Kartu Nomor" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Number Cards" -msgstr "Kartu Nomor" - -#. Label of a Select field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json msgid "Number Format" -msgstr "Nomor Format" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Number Format" -msgstr "Nomor Format" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Number of Backups" -msgstr "Jumlah Cadangan" +msgstr "" -#. Label of a Int field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Number of DB Backups" -msgstr "Jumlah Pencadangan DB" - -#: integrations/doctype/dropbox_settings/dropbox_settings.py:53 -msgid "Number of DB backups cannot be less than 1" -msgstr "Jumlah cadangan DB tidak boleh kurang dari 1" - -#. Label of a Int field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Number of Groups" -msgstr "Jumlah Grup" +msgstr "" -#. Label of a Int field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" msgstr "" -#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59 +#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:170 msgid "Number of backups must be greater than zero." msgstr "" #. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "Jumlah kolom untuk lapangan di Grid (Jumlah Kolom dalam kotak harus kurang dari 11)" - -#. Description of the 'Columns' (Int) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)" +msgstr "" #. Description of the 'Columns' (Int) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)" +msgstr "" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" msgstr "" +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + #. Option for the 'Method' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "OAuth" msgstr "" #. Name of a DocType -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "OAuth Authorization Code" msgstr "Kode Otorisasi OAuth" #. Name of a DocType -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" msgstr "OAuth Pembawa Token" #. Name of a DocType -#: integrations/doctype/oauth_client/oauth_client.json -msgid "OAuth Client" -msgstr "OAuth Klien" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Client" msgstr "OAuth Klien" -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "OAuth Client ID" -msgstr "ID Klien OAuth" +msgstr "" -#: email/oauth.py:31 +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 msgid "OAuth Error" msgstr "" #. Name of a DocType -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgid "OAuth Provider Settings" -msgstr "Pengaturan OAuth Provider" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "OAuth Provider Settings" +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Provider Settings" msgstr "Pengaturan OAuth Provider" #. Name of a DocType -#: integrations/doctype/oauth_scope/oauth_scope.json +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "OAuth Scope" msgstr "" -#: email/doctype/email_account/email_account.js:187 +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" -#: templates/includes/oauth_confirmation.html:39 -msgid "OK" +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" msgstr "" -#. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "OPTIONS" +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" msgstr "" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "OTP App" -msgstr "Apl OTP" +msgstr "" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "OTP Issuer Name" -msgstr "Nama Emiten OTP" +msgstr "" -#: twofactor.py:468 +#: frappe/twofactor.py:445 msgid "OTP Secret Reset - {0}" msgstr "" -#: twofactor.py:487 +#: frappe/twofactor.py:464 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret telah di-reset. Registrasi ulang akan diminta pada login berikutnya." +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "Mati" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Office" -msgstr "Kantor" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Office 365" -msgstr "Kantor 365" +msgstr "" -#. Label of a Int field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset X" msgstr "" -#. Label of a Int field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset Y" msgstr "" -#: www/update-password.html:15 +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + +#: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Password Lama" -#: custom/doctype/custom_field/custom_field.py:362 +#: frappe/custom/doctype/custom_field/custom_field.py:412 msgid "Old and new fieldnames are same." msgstr "" #. Description of the 'Number of Backups' (Int) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Older backups will be automatically deleted" -msgstr "Cadangan yang lebih tua akan dihapus secara otomatis" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "On Hold" -msgstr "" +msgstr "Tertahan" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "On Payment Authorization" msgstr "" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + #. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:963 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 msgid "Onboard" msgstr "" +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + #. Name of a DocType -#: desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json msgid "Onboarding Permission" msgstr "Izin Orientasi" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Onboarding Status" msgstr "" #. Name of a DocType -#: desk/doctype/onboarding_step/onboarding_step.json -msgid "Onboarding Step" -msgstr "Langkah Orientasi" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Onboarding Step" msgstr "Langkah Orientasi" #. Name of a DocType -#: desk/doctype/onboarding_step_map/onboarding_step_map.json +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Onboarding Step Map" msgstr "Peta Langkah Orientasi" -#: public/js/frappe/widgets/onboarding_widget.js:269 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 msgid "Onboarding complete" msgstr "" -#: core/doctype/doctype/doctype_list.js:28 -msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah." - #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah." -#: www/complete_signup.html:7 +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 msgid "One Last Step" msgstr "Satu Langkah terakhir" -#: twofactor.py:283 +#: frappe/twofactor.py:278 msgid "One Time Password (OTP) Registration Code from {}" msgstr "Kode Pendaftaran One Time Password (OTP) dari {}" -#: core/doctype/data_export/exporter.py:331 +#: frappe/core/doctype/data_export/exporter.py:331 msgid "One of" msgstr "Satu dari" -#: public/js/frappe/views/workspace/workspace.js:1312 -msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" -msgstr "" - -#: client.py:213 +#: frappe/client.py:213 msgid "Only 200 inserts allowed in one request" msgstr "Hanya 200 sisipan diperbolehkan dalam satu permintaan" -#: email/doctype/email_queue/email_queue.py:80 +#: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" msgstr "Hanya Administrator dapat menghapus Antrian Surel" -#: core/doctype/page/page.py:66 +#: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" msgstr "Hanya Administrator dapat mengedit" -#: core/doctype/report/report.py:71 +#: frappe/core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Hanya Administrator dapat menyimpan laporan standar. Silahkan mengubah nama dan simpan." -#: recorder.py:234 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Hanya Administrator yang diizinkan menggunakan Perekam" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Only Allow Edit For" -msgstr "Hanya Izinkan Sunting Untuk" +msgstr "" -#: core/doctype/doctype/doctype.py:1561 +#: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" msgstr "Hanya Opsi yang diperbolehkan untuk bidang Data adalah:" -#. Label of a Int field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Only Send Records Updated in Last X Hours" -msgstr "Hanya Kirim Data yang Diperbarui pada X Jam Terakhir" +msgstr "" -#: desk/doctype/workspace/workspace.js:36 +#: frappe/desk/doctype/workspace/workspace.js:32 msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:536 -msgid "Only Workspace Manager can sort or edit this page" -msgstr "" - -#: modules/utils.py:66 +#: frappe/modules/utils.py:65 msgid "Only allowed to export customizations in developer mode" msgstr "" -#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Only change this if you want to use other S3 compatible object storage backends." +#: frappe/model/document.py:1235 +msgid "Only draft documents can be discarded" msgstr "" -#. Label of a Link field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" msgstr "" -#: core/doctype/data_export/exporter.py:194 +#: frappe/core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." msgstr "Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan." -#: contacts/doctype/contact/contact.py:129 -#: contacts/doctype/contact/contact.py:153 +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 msgid "Only one {0} can be set as primary." msgstr "Hanya satu {0} yang dapat ditetapkan sebagai utama." -#: desk/reportview.py:319 +#: frappe/desk/reportview.py:357 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:290 +#: frappe/desk/reportview.py:328 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: custom/doctype/customize_form/customize_form.py:124 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi." -#: desk/form/assign_to.py:181 +#: frappe/model/delete_doc.py:241 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 msgid "Only the assignee can complete this to-do." msgstr "" -#: public/js/frappe/form/sidebar/review.js:54 -msgid "Only users involved in the document are listed" -msgstr "Hanya pengguna yang terlibat dalam dokumen yang terdaftar" - -#: email/doctype/auto_email_report/auto_email_report.py:100 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" -#: core/doctype/deleted_document/deleted_document.js:7 +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Open" msgstr "Buka" -#: desk/doctype/todo/todo_list.js:20 +#: frappe/desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Buka" -#. Option for the 'Status' (Select) field in DocType 'Communication' -#. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Open" -msgstr "Buka" - -#: public/js/frappe/ui/keyboard.js:202 +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 msgid "Open Awesomebar" msgstr "Buka Awesomebar" -#: templates/emails/new_notification.html:10 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 msgid "Open Document" msgstr "Buka Dokumen" -#. Label of a Table MultiSelect field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Open Documents" -msgstr "Buka Dokumen" +msgstr "" -#: public/js/frappe/ui/keyboard.js:237 +#: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" msgstr "Buka Bantuan" -#. Label of a Button field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Open Reference Document" -msgstr "Buka Dokumen Referensi" +msgstr "" -#: public/js/frappe/ui/keyboard.js:220 +#: frappe/public/js/frappe/ui/keyboard.js:226 msgid "Open Settings" msgstr "Buka Pengaturan" -#. Label of a Check field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Open URL in a New Tab" -msgstr "Buka URL di Tab Baru" +msgstr "" #. Description of the 'Quick Entry' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Open a dialog with mandatory fields to create a new record quickly" -msgstr "Buka dialog dengan bidang wajib untuk membuat catatan baru dengan cepat" +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:176 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 msgid "Open a module or tool" msgstr "Buka modul atau alat" -#: public/js/frappe/list/list_view.js:1187 +#: frappe/public/js/frappe/ui/keyboard.js:366 +msgid "Open console" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Buka item daftar" -#: www/qrcode.html:13 +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 msgid "Open your authentication app on your mobile phone." msgstr "Buka aplikasi autentikasi Anda di ponsel Anda." -#: desk/doctype/todo/todo_list.js:23 -#: public/js/frappe/ui/toolbar/search_utils.js:261 -#: public/js/frappe/ui/toolbar/search_utils.js:262 -#: public/js/frappe/ui/toolbar/search_utils.js:273 -#: public/js/frappe/ui/toolbar/search_utils.js:283 -#: public/js/frappe/ui/toolbar/search_utils.js:292 -#: public/js/frappe/ui/toolbar/search_utils.js:310 -#: public/js/frappe/ui/toolbar/search_utils.js:311 -#: social/doctype/energy_point_log/energy_point_log_list.js:23 +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 msgid "Open {0}" msgstr "Terbuka {0}" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "OpenID Configuration" msgstr "" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Opened" -msgstr "Dibuka" +msgstr "" -#. Label of a Select field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Operation" msgstr "Operasi" -#: utils/data.py:2063 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Operator harus menjadi salah satu dari {0}" -#: core/doctype/file/file.js:24 +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 msgid "Optimize" msgstr "" -#: core/doctype/file/file.js:89 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" -#: custom/doctype/custom_field/custom_field.js:100 +#: frappe/custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" msgstr "Pilihan 1" -#: custom/doctype/custom_field/custom_field.js:102 +#: frappe/custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" msgstr "Opsi 2" -#: custom/doctype/custom_field/custom_field.js:104 +#: frappe/custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" msgstr "Opsi 3" -#: core/doctype/doctype/doctype.py:1579 +#: frappe/core/doctype/doctype/doctype.py:1638 msgid "Option {0} for field {1} is not a child table" msgstr "Opsi {0} untuk bidang {1} bukan tabel anak" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "Opsi: Selalu kirim ke ID ini. Setiap Alamat Email pada baris baru" +msgstr "" #. Description of the 'Condition' (Code) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Optional: The alert will be sent if this expression is true" -msgstr "Opsional: pemberitahuan akan dikirim jika persamaan ini benar" +msgstr "" -#. Label of a Small Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" -msgstr "Pilihan" +msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Text field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Options" -msgstr "Pilihan" - -#: core/doctype/doctype/doctype.py:1317 +#: frappe/core/doctype/doctype/doctype.py:1366 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain dengan pilihan sebagai 'DocType'" -#. Label of a HTML field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Options Help" -msgstr "Pilihan Bantuan" +msgstr "" -#: core/doctype/doctype/doctype.py:1601 +#: frappe/core/doctype/doctype/doctype.py:1660 msgid "Options for Rating field can range from 3 to 10" msgstr "" -#: custom/doctype/custom_field/custom_field.js:96 +#: frappe/custom/doctype/custom_field/custom_field.js:96 msgid "Options for select. Each option on a new line." msgstr "Pilihan untuk pilih. Setiap opsi pada baris baru." -#: core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1383 msgid "Options for {0} must be set before setting the default value." msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan." -#: public/js/form_builder/store.js:177 +#: frappe/public/js/form_builder/store.js:182 msgid "Options is required for field {0} of type {1}" msgstr "" -#: model/base_document.py:767 +#: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" msgstr "Pilihan tidak diatur untuk bidang tautan {0}" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Orange" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Orange" msgstr "" -#. Label of a Code field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" -msgstr "Memesan" +msgstr "" -#. Label of a Section Break field in DocType 'About Us Settings' -#. Label of a Table field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History" -msgstr "Org Sejarah" +msgstr "" -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History Heading" -msgstr "Org Sejarah Pos" +msgstr "" -#: public/js/frappe/form/print_utils.js:26 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orientasi" +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:75 +msgid "Original Value" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 msgid "Other" -msgstr "Lain-lain" +msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "Keluaran" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" msgstr "" -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Outgoing Server" -msgstr "" - -#. Label of a Section Break field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Settings" msgstr "" -#: email/doctype/email_domain/email_domain.py:33 +#: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" msgstr "Akun email keluar tidak benar" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Outlook.com" -msgstr "Outlook.com" +msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Output" -msgstr "Keluaran" +msgstr "" -#. Label of a Code field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "Output" -msgstr "Keluaran" +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" -#. Label of a Code field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Output" -msgstr "Keluaran" - -#: core/report/transaction_log_report/transaction_log_report.py:100 -#: social/doctype/energy_point_rule/energy_point_rule.js:42 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" msgstr "Pemilik" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "PATCH" msgstr "" -#: printing/page/print/print.js:71 -#: public/js/frappe/views/reports/query_report.js:1637 +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:71 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" -msgstr "PDF" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Height (in mm)" msgstr "" -#. Label of a Select field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Size" -msgstr "PDF Page Size" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Width (in mm)" msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Settings" -msgstr "Pengaturan PDF" +msgstr "" -#: utils/print_format.py:177 +#: frappe/utils/print_format.py:289 msgid "PDF generation failed" msgstr "Generasi PDF gagal" -#: utils/pdf.py:95 +#: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" msgstr "Generasi PDF gagal karena link gambar rusak" -#: printing/page/print/print.js:524 +#: frappe/printing/page/print/print.js:616 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:534 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "PID" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "POST" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "POST" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "PUT" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "PUT" msgstr "" +#. Label of the package (Link) field in DocType 'Module Def' #. Name of a DocType -#: core/doctype/package/package.json -msgid "Package" -msgstr "" - -#. Label of a Link field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Package" -msgstr "" - +#. Label of the package (Link) field in DocType 'Package Release' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Package" -msgid "Package" -msgstr "" - -#. Label of a Link field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" msgstr "" #. Name of a DocType -#: core/doctype/package_import/package_import.json -msgid "Package Import" -msgstr "" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Package Import" +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json msgid "Package Import" msgstr "" -#. Label of a Data field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "Package Name" msgstr "" #. Name of a DocType -#: core/doctype/package_release/package_release.json -msgid "Package Release" -msgstr "" - -#. Linked DocType in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package_release/package_release.json msgid "Package Release" msgstr "" #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "Packages" msgstr "" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' #. Name of a DocType -#: core/doctype/page/page.json -msgid "Page" -msgstr "Halaman" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Page" -msgstr "Halaman" - -#. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Page" -msgstr "Halaman" - #. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for #. Page and Report' -#. Label of a Link field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Page" -msgstr "Halaman" - +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Page" -msgstr "Halaman" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Page" msgstr "Halaman" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Page Break" msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Page Builder" -msgstr "Pembuat Halaman" +msgstr "" -#. Label of a Table field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Page Building Blocks" -msgstr "Blok Penyusun Halaman" +msgstr "" -#. Label of a Section Break field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "Halaman HTML" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:64 +#: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" msgstr "" -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Page Name" -msgstr "Nama Halaman" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" msgstr "" -#. Label of a Small Text field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1499 -msgid "Page Saved Successfully" +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Page Settings" -msgstr "Pengaturan halaman" - -#: public/js/frappe/ui/keyboard.js:121 +#: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" msgstr "Pintasan Halaman" -#: public/js/frappe/list/bulk_operations.js:57 +#: frappe/public/js/frappe/list/bulk_operations.js:66 msgid "Page Size" msgstr "" -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Page Title" msgstr "" -#: public/js/frappe/list/bulk_operations.js:71 +#: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" msgstr "" -#: www/qrcode.py:35 +#: frappe/www/qrcode.py:35 msgid "Page has expired!" msgstr "Halaman telah kedaluwarsa!" -#: printing/doctype/print_settings/print_settings.py:71 -#: public/js/frappe/list/bulk_operations.js:90 +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 msgid "Page height and width cannot be zero" msgstr "" -#: public/js/frappe/views/container.js:52 +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" msgstr "Halaman tidak ditemukan" -#: public/js/frappe/views/workspace/workspace.js:1299 -msgid "Page with title {0} already exist." +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" msgstr "" -#: public/js/frappe/web_form/web_form.js:264 -#: templates/print_formats/standard.html:34 +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Halaman {0} dari {1}" -#. Label of a Data field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "Parameter" -msgstr "Parameter" +msgstr "" -#: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:606 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" msgstr "Induk" -#. Label of a Link field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" msgstr "" -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Parent Document Type" msgstr "" -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Parent Document Type" -msgstr "" - -#: desk/doctype/number_card/number_card.py:61 +#: frappe/desk/doctype/number_card/number_card.py:65 msgid "Parent Document Type is required to create a number card" msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Element Selector" msgstr "" -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Field" msgstr "" -#: core/doctype/doctype/doctype.py:915 +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:933 msgid "Parent Field (Tree)" msgstr "Bidang Induk (Pohon)" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Parent Field (Tree)" -msgstr "Bidang Induk (Pohon)" - -#: core/doctype/doctype/doctype.py:921 +#: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" msgstr "Bidang Induk harus nama bidang yang valid" -#. Label of a Select field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Parent Label" -msgstr "Induk Label" +msgstr "" -#: core/doctype/doctype/doctype.py:1148 +#: frappe/core/doctype/doctype/doctype.py:1197 msgid "Parent Missing" msgstr "" -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Parent Page" msgstr "" -#: core/doctype/data_export/exporter.py:24 +#: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" msgstr "Induk Tabel" -#: desk/doctype/dashboard_chart/dashboard_chart.py:404 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 msgid "Parent document type is required to create a dashboard chart" msgstr "" -#: core/doctype/data_export/exporter.py:255 +#: frappe/core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." msgstr "Induk adalah nama dokumen yang akan ditambahkan datanya." -#: permissions.py:806 +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" + +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" -#: client.py:476 +#: frappe/client.py:467 msgid "Parenttype, Parent and Parentfield are required to insert a child record" msgstr "" -#. Label of a Check field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Partial" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Partial Success" -msgstr "Sukses Partial" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/email/doctype/email_queue/email_queue.json msgid "Partially Sent" msgstr "" -#: desk/doctype/event/event.js:30 +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json msgid "Participants" msgstr "Para peserta" -#. Label of a Section Break field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Participants" -msgstr "Para peserta" +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#: frappe/contacts/doctype/contact/contact.json msgid "Passive" -msgstr "Pasif" - -#: core/doctype/user/user.js:154 core/doctype/user/user.js:201 -#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474 -#: www/login.html:21 -msgid "Password" -msgstr "Kata sandi" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Password" -msgstr "Kata sandi" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Password" -msgstr "Kata sandi" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Password" -msgstr "Kata sandi" - -#. Label of a Password field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Password" -msgstr "Kata sandi" - -#. Label of a Section Break field in DocType 'System Settings' -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Password" -msgstr "Kata sandi" - +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 +#: frappe/core/doctype/user/user.js:239 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 msgid "Password" msgstr "Kata sandi" -#: core/doctype/user/user.py:1036 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:418 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" -msgstr "Password Reset" +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Password Reset Link Generation Limit" -msgstr "Batas Pembuatan Tautan Setel Ulang Sandi" +msgstr "" -#: public/js/frappe/form/grid_row.js:790 +#: frappe/public/js/frappe/form/grid_row.js:880 msgid "Password cannot be filtered" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:358 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 msgid "Password changed successfully." msgstr "Kata sandi berhasil diubah." -#. Label of a Password field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Password for Base DN" -msgstr "Sandi untuk Base DN" +msgstr "" -#: email/doctype/email_account/email_account.py:165 +#: frappe/email/doctype/email_account/email_account.py:189 msgid "Password is required or select Awaiting Password" msgstr "Sandi diperlukan atau pilih Menunggu sandi" -#: public/js/frappe/desk.js:191 +#: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" -#: utils/password.py:42 +#: frappe/utils/password.py:47 msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1035 -msgid "Password reset instructions have been sent to your email" -msgstr "Instruksi atur ulang password telah dikirim ke email Anda" +#: frappe/core/doctype/user/user.py:1084 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" -#: www/update-password.html:164 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" -#: auth.py:239 +#: frappe/auth.py:258 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:828 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: www/update-password.html:78 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:205 msgid "Passwords do not match!" msgstr "Sandi tidak cocok!" -#: email/doctype/newsletter/newsletter.py:156 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - -#: public/js/frappe/views/file/file_view.js:151 +#: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Pasta" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json msgid "Patch" -msgstr "Tambalan" - -#. Label of a Code field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" -msgid "Patch" -msgstr "Tambalan" +msgstr "" #. Name of a DocType -#: core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/patch_log/patch_log.json msgid "Patch Log" -msgstr "Patch Log" +msgstr "" -#: modules/patch_handler.py:137 +#: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" msgstr "" -#: website/report/website_analytics/website_analytics.js:35 +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 msgid "Path" msgstr "Jalan" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Path" -msgstr "Jalan" - -#. Label of a Small Text field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to CA Certs File" -msgstr "Path ke File CA Certs" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to Server Certificate" -msgstr "Jalur ke Sertifikat Server" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to private Key File" -msgstr "Path ke File Kunci pribadi" +msgstr "" -#. Label of a Int field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Payload Count" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Pending" -msgstr "Menunggu" +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Pending" -msgstr "Menunggu" - -#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Menunggu" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Approval" -msgstr "Menunggu persetujuan" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Verification" -msgstr "Verifikasi Tertunda" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Percent" -msgstr "Persen" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Percent" -msgstr "Persen" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Percent" -msgstr "Persen" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Percentage" -msgstr "Persentase" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Period" msgstr "periode" -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Perm Level" -msgstr "Perm Tingkat" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Perm Level" -msgstr "Perm Tingkat" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Permanent" -msgstr "Permanen" +msgstr "" -#: public/js/frappe/form/form.js:1047 +#: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" msgstr "Permanen Batal {0}?" -#: public/js/frappe/form/form.js:877 +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 msgid "Permanently Submit {0}?" msgstr "Kirim permanen {0}?" -#: public/js/frappe/model/model.js:698 +#: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" msgstr "Secara permanen menghapus {0}?" -#: core/doctype/user_type/user_type.py:83 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Kesalahan izin" #. Name of a DocType -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Inspector" -msgstr "Kesalahan izin" +msgstr "" -#: core/page/permission_manager/permission_manager.js:446 +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Permission Level" msgstr "Izin Tingkat" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Permission Level" -msgstr "Izin Tingkat" +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json +#: frappe/core/workspace/users/users.json msgid "Permission Manager" msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Permission Query" msgstr "" -#. Label of a Section Break field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json msgid "Permission Rules" -msgstr "Aturan Izin" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permission Rules" -msgstr "Aturan Izin" - -#. Label of a Select field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Type" -msgstr "Aturan Izin" +msgstr "" +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:129 core/doctype/user/user.js:138 -#: core/page/permission_manager/permission_manager.js:214 -#: core/workspace/users/users.json +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:156 +#: frappe/core/page/permission_manager/permission_manager.js:221 +#: frappe/core/workspace/users/users.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Otorisasi" -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Permissions" -msgstr "Otorisasi" - -#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785 +#: frappe/core/doctype/doctype/doctype.py:1834 +#: frappe/core/doctype/doctype/doctype.py:1844 msgid "Permissions Error" msgstr "" +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "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." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:26 +msgid "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." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + #. Name of a report #. Label of a Link in the Users Workspace -#: core/report/permitted_documents_for_user/permitted_documents_for_user.json -#: core/workspace/users/users.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" msgstr "Dokumen Diijinkan Untuk Pengguna" -#. Label of a Table MultiSelect field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Personal" -msgstr "Pribadi" +msgstr "" #. Name of a DocType -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" msgstr "Permintaan Penghapusan Data Pribadi" #. Name of a DocType -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Personal Data Deletion Step" msgstr "" #. Name of a DocType -#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" msgstr "Permintaan Unduhan Data Pribadi" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Phone" -msgstr "Telepon" - +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Phone" -msgstr "Telepon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Phone" -msgstr "Telepon" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Phone" -msgstr "Telepon" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Phone" -msgstr "Telepon" - +#. Label of the phone (Data) field in DocType 'User' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" msgstr "Telepon" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Phone No." -msgstr "Nomor Telepon" +msgstr "" -#: utils/__init__.py:108 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: public/js/frappe/form/print_utils.js:38 -#: public/js/frappe/views/reports/report_view.js:1504 -#: public/js/frappe/views/reports/report_view.js:1507 +#: frappe/public/js/frappe/form/print_utils.js:53 +#: frappe/public/js/frappe/views/reports/report_view.js:1579 +#: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" msgstr "Pilih Kolom" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Pie" -msgstr "Pai" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Pincode" -msgstr "Kode PIN" +msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" msgstr "" -#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Pink" +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Plain Text" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Plant" -msgstr "Tanaman" +msgstr "" -#: email/oauth.py:30 +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" msgstr "" -#: website/doctype/website_theme/website_theme.py:79 +#: frappe/website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." msgstr "Silakan Gandakan situs ini Tema untuk menyesuaikan." -#: integrations/doctype/ldap_settings/ldap_settings.py:159 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Silakan Instal perpustakaan ldap3 melalui pip untuk menggunakan fungsionalitas ldap." -#: public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Silakan Tetapkan Bagan" -#: core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" msgstr "Harap Perbarui Pengaturan SMS" -#: automation/doctype/auto_repeat/auto_repeat.py:569 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 msgid "Please add a subject to your email" msgstr "Silakan tambahkan subjek ke email Anda" -#: templates/includes/comments/comments.html:168 +#: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." msgstr "Harap tambahkan komentar yang valid." -#: core/doctype/user/user.py:1017 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Minta administrator untuk memverifikasi Anda sign-up" -#: public/js/frappe/form/controls/select.js:96 +#: frappe/public/js/frappe/form/controls/select.js:101 msgid "Please attach a file first." msgstr "Harap melampirkan file pertama." -#: printing/doctype/letter_head/letter_head.py:73 +#: frappe/printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: printing/doctype/letter_head/letter_head.py:61 +#: frappe/printing/doctype/letter_head/letter_head.py:64 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" -#: core/doctype/package_import/package_import.py:38 +#: frappe/core/doctype/package_import/package_import.py:39 msgid "Please attach the package" msgstr "" -#: integrations/doctype/connected_app/connected_app.js:19 +#: frappe/integrations/doctype/connected_app/connected_app.js:19 msgid "Please check OpenID Configuration URL" msgstr "" -#: utils/dashboard.py:58 +#: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}" -#: model/base_document.py:839 +#: frappe/model/base_document.py:951 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Harap periksa nilai set "Ambil Dari" untuk bidang {0}" -#: core/doctype/user/user.py:1015 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Silahkan cek email Anda untuk verifikasi" -#: email/smtp.py:131 +#: frappe/email/smtp.py:134 msgid "Please check your email login credentials." msgstr "" -#: twofactor.py:246 +#: frappe/twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." msgstr "Silakan periksa alamat email terdaftar Anda untuk petunjuk cara melanjutkan. Jangan tutup jendela ini karena Anda harus kembali kesini." -#: twofactor.py:291 +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 msgid "Please click on the following link and follow the instructions on the page. {0}" msgstr "" -#: templates/emails/password_reset.html:2 +#: frappe/templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" msgstr "Silahkan klik pada link berikut untuk mengatur password baru anda" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:344 -msgid "Please close this window" -msgstr "Tutup jendela ini" - -#: www/confirm_workflow_action.html:4 +#: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini." -#: core/doctype/server_script/server_script.js:33 -msgid "Please contact your system administrator to enable this feature." +#: frappe/printing/page/print/print.js:618 +msgid "Please contact your system manager to install correct version." msgstr "" -#: desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:44 msgid "Please create Card first" msgstr "Harap buat Kartu terlebih dahulu" -#: desk/doctype/dashboard_chart/dashboard_chart.js:42 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" msgstr "Harap buat grafik terlebih dahulu" -#: desk/form/meta.py:209 +#: frappe/desk/form/meta.py:190 msgid "Please delete the field from {0} or add the required doctype." msgstr "" -#: core/doctype/data_export/exporter.py:184 +#: frappe/core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." msgstr "Harap jangan mengubah judul Template." -#: printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" msgstr "Silakan duplikat ini untuk membuat perubahan" -#: core/doctype/system_settings/system_settings.py:145 +#: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" -#: desk/doctype/notification_log/notification_log.js:45 -#: email/doctype/auto_email_report/auto_email_report.js:17 -#: printing/page/print/print.js:611 printing/page/print/print.js:640 -#: public/js/frappe/list/bulk_operations.js:117 -#: public/js/frappe/utils/utils.js:1416 +#: frappe/desk/doctype/notification_log/notification_log.js:45 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:17 +#: frappe/printing/page/print/print.js:638 +#: frappe/printing/page/print/print.js:668 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Aktifkan pop-up" -#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177 +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 msgid "Please enable pop-ups in your browser" msgstr "Harap aktifkan munculan di peramban Anda" -#: integrations/google_oauth.py:53 +#: frappe/integrations/google_oauth.py:55 msgid "Please enable {} before continuing." msgstr "" -#: utils/oauth.py:191 +#: frappe/utils/oauth.py:191 msgid "Please ensure that your profile has an email address" msgstr "Pastikan bahwa profil Anda memiliki alamat email" -#: integrations/doctype/social_login_key/social_login_key.py:73 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Harap masukkan URL Akses Token" -#: integrations/doctype/social_login_key/social_login_key.py:71 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Harap masukkan Authorize URL" -#: integrations/doctype/social_login_key/social_login_key.py:69 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Harap masukkan URL Base" -#: integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Harap masukkan ID Klien sebelum login sosial diaktifkan" -#: integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Silakan masukkan Rahasia Klien sebelum login sosial diaktifkan" -#: integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:75 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Masukkan URL Pengalihan" -#: templates/includes/comments/comments.html:163 +#: frappe/templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." msgstr "" -#: www/update-password.html:233 +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Masukkan password" -#: public/js/frappe/desk.js:196 +#: frappe/public/js/frappe/desk.js:217 msgctxt "Email Account" msgid "Please enter the password for: {0}" msgstr "" -#: core/doctype/sms_settings/sms_settings.py:42 +#: frappe/core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" msgstr "Entrikan nos ponsel yang valid" -#: www/update-password.html:115 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: www/update-password.html:108 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:401 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 msgid "Please find attached {0}: {1}" msgstr "Silakan temukan lampiran {0}: {1}" -#: core/doctype/navbar_settings/navbar_settings.py:44 -msgid "Please hide the standard navbar items instead of deleting them" -msgstr "Harap sembunyikan item navbar standar daripada menghapusnya" - -#: templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:31 msgid "Please login to post a comment." msgstr "" -#: core/doctype/communication/communication.py:210 +#: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Harap pastikan Dokumen Komunikasi Referensi tidak terhubung secara sirkuler." -#: model/document.py:810 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Silahkan refresh untuk mendapatkan dokumen terbaru." -#: printing/page/print/print.js:525 +#: frappe/printing/page/print/print.js:535 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" -#: public/js/frappe/form/form.js:384 +#: frappe/public/js/frappe/form/form.js:358 msgid "Please save before attaching." msgstr "Silakan simpan sebelum memasang." -#: email/doctype/newsletter/newsletter.py:133 -msgid "Please save the Newsletter before sending" -msgstr "Harap menyimpan Newsletter sebelum dikirim" - -#: public/js/frappe/form/sidebar/assign_to.js:51 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Silakan menyimpan dokumen sebelum penugasan" -#: public/js/frappe/form/sidebar/assign_to.js:71 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" msgstr "Silakan menyimpan dokumen sebelum mengeluarkan penugasan" -#: public/js/frappe/views/reports/report_view.js:1614 +#: frappe/public/js/frappe/views/reports/report_view.js:1709 msgid "Please save the report first" msgstr "Harap menyimpan laporan pertama" -#: website/doctype/web_template/web_template.js:22 +#: frappe/website/doctype/web_template/web_template.js:22 msgid "Please save to edit the template." msgstr "Harap simpan untuk mengedit template." -#: desk/page/leaderboard/leaderboard.js:244 -msgid "Please select Company" -msgstr "Silakan pilih Perusahaan" - -#: printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" msgstr "Silakan pilih DOCTYPE pertama" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" msgstr "Silakan pilih Tipe Entitas terlebih dahulu" -#: core/doctype/system_settings/system_settings.py:103 +#: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" msgstr "Harap pilih Skor Minimum Kata Sandi" -#: utils/__init__.py:115 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" -#: utils/file_manager.py:50 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 msgid "Please select a file or url" msgstr "Silahkan pilih file atau url" -#: model/rename_doc.py:670 +#: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" msgstr "Silakan pilih file csv dengan data yang valid" -#: utils/data.py:285 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Pilih filter tanggal yang valid" -#: core/doctype/user_permission/user_permission_list.js:203 +#: frappe/core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" msgstr "Silakan pilih DOCTYPE yang berlaku" -#: model/db_query.py:1140 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group" -#: core/doctype/document_naming_settings/document_naming_settings.py:215 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" msgstr "Silakan pilih awalan terlebih dahulu" -#: core/doctype/data_export/data_export.js:42 +#: frappe/core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." msgstr "Harap pilih Jenis Dokumen." #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Please select the LDAP Directory being used" msgstr "" -#: website/doctype/website_settings/website_settings.js:100 +#: frappe/website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" msgstr "Silahkan pilih {0}" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:306 -msgid "Please set Dropbox access keys in site config or doctype" -msgstr "" - -#: contacts/doctype/contact/contact.py:200 +#: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" msgstr "Silahkan tetapkan Alamat Email" -#: printing/page/print/print.js:539 +#: frappe/printing/page/print/print.js:549 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Silakan atur pemetaan printer untuk format cetak ini di Pengaturan Printer" -#: public/js/frappe/views/reports/query_report.js:1308 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Silakan set filter" -#: email/doctype/auto_email_report/auto_email_report.py:226 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Silakan menetapkan nilai filter dalam Laporan Filter meja." -#: model/naming.py:533 +#: frappe/model/naming.py:572 msgid "Please set the document name" msgstr "" -#: desk/doctype/dashboard/dashboard.py:125 +#: frappe/desk/doctype/dashboard/dashboard.py:120 msgid "Please set the following documents in this Dashboard as standard first." msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih dahulu." -#: core/doctype/document_naming_settings/document_naming_settings.py:121 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." msgstr "Silakan mengatur seri yang akan digunakan." -#: core/doctype/system_settings/system_settings.py:116 +#: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS" -#: automation/doctype/auto_repeat/auto_repeat.js:102 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Please setup a message first" msgstr "Harap siapkan pesan terlebih dahulu" -#: email/doctype/email_account/email_account.py:389 -msgid "Please setup default Email Account from Settings > Email Account" -msgstr "" - -#: core/doctype/user/user.py:369 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/model/model.js:785 +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" msgstr "Silakan tentukan" -#: permissions.py:782 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: email/doctype/notification/notification.py:86 +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:151 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:145 msgid "Please specify which date field must be checked" msgstr "Silakan tentukan tanggal yang lapangan harus diperiksa" -#: email/doctype/notification/notification.py:89 +#: frappe/email/doctype/notification/notification.py:149 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which value field must be checked" msgstr "Silakan tentukan mana bidang nilai harus diperiksa" -#: public/js/frappe/request.js:184 -#: public/js/frappe/views/translation_manager.js:102 +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 msgid "Please try again" msgstr "Silakan coba lagi" -#: integrations/google_oauth.py:56 +#: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:332 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Please use a valid LDAP search filter" msgstr "" -#: email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Harap verifikasi Alamat Email Anda" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" -#. Label of a Select field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Point Allocation Periodicity" -msgstr "Titik Alokasi Periode" +#: frappe/utils/password.py:218 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" -#: public/js/frappe/form/sidebar/review.js:75 -msgid "Points" -msgstr "Poin" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Points" -msgstr "Poin" +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Points" -msgstr "Poin" - -#: templates/emails/energy_points_summary.html:40 -msgid "Points Given" -msgstr "Poin yang Diberikan" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover Element" msgstr "" -#. Label of a HTML Editor field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover or Modal Description" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "Port" - -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Port" -msgstr "Port" - -#. Label of a Int field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" -msgid "Port" -msgstr "Port" - -#. Label of a Card Break in the Website Workspace -#: website/workspace/website/website.json -msgid "Portal" msgstr "" -#. Label of a Table field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Portal Menu" -msgstr "Portal menu" +msgstr "" #. Name of a DocType -#: website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Portal Menu Item" -msgstr "Portal Menu Item" +msgstr "" #. Name of a DocType -#: website/doctype/portal_settings/portal_settings.json -msgid "Portal Settings" -msgstr "Pengaturan Portal" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Portal Settings" +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json msgid "Portal Settings" msgstr "Pengaturan Portal" -#: public/js/frappe/form/print_utils.js:29 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Potret" -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Position" -msgstr "Posisi" +msgstr "" -#: templates/discussions/comment_box.html:29 -#: templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Post" -msgstr "Post" +msgstr "" -#: templates/discussions/reply_section.html:39 +#: frappe/templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Postal" -msgstr "Pos" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Postal Code" msgstr "kode Pos" -#. Group in Blog Category's connections -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Posts" -msgstr "Posts" +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" -#: website/doctype/blog_post/blog_post.py:258 +#: frappe/website/doctype/blog_post/blog_post.py:264 msgid "Posts by {0}" msgstr "Posting oleh {0}" -#: website/doctype/blog_post/blog_post.py:250 +#: frappe/website/doctype/blog_post/blog_post.py:256 msgid "Posts filed under {0}" msgstr "Posting mengajukan di bawah {0}" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Precision" -msgstr "Ketelitian" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" -#. Label of a Select field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Precision" -msgstr "Ketelitian" +msgstr "" -#. Label of a Select field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Precision" -msgstr "Ketelitian" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Precision" -msgstr "Ketelitian" - -#: core/doctype/doctype/doctype.py:1349 +#: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" msgstr "Presisi harus antara 1 dan 6" -#: utils/password_strength.py:191 +#: frappe/utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." msgstr "substitusi diprediksi seperti '@' bukan 'a' tidak membantu banyak." -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Preferred Billing Address" -msgstr "Disukai Alamat Penagihan" +msgstr "" -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Preferred Shipping Address" -msgstr "Disukai Alamat Pengiriman" +msgstr "" -#. Label of a Data field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Prefix" -msgstr "Awalan" - -#. Label of a Autocomplete field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Prefix" -msgstr "Awalan" +msgstr "" #. Name of a DocType -#: core/doctype/prepared_report/prepared_report.json +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 msgid "Prepared Report" msgstr "Laporan yang disiapkan" -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Prepared Report" -msgstr "Laporan yang disiapkan" +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" #. Name of a role -#: core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" msgstr "Pengguna Laporan yang Disiapkan" -#: desk/query_report.py:296 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:469 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Mempersiapkan Laporan" -#: public/js/frappe/views/communication.js:321 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" -#: public/js/frappe/list/list_filter.js:134 +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" msgstr "Tekan Enter untuk menyimpan" -#: email/doctype/newsletter/newsletter.js:14 -#: email/doctype/newsletter/newsletter.js:42 -#: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/ui/capture.js:228 +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:190 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 msgid "Preview" msgstr "Pratayang" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Section Break field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Attach Image field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Tab Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a HTML field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Preview HTML" -msgstr "Preview HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" +#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' +#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Preview Image" msgstr "" -#. Label of a Attach Image field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Preview Image" -msgstr "" - -#. Label of a Button field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" -msgstr "Pesan Pratinjau" +msgstr "" -#: public/js/form_builder/form_builder.bundle.js:83 +#: frappe/public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" msgstr "" -#. Label of a Text field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" msgstr "" -#: public/js/onboarding_tours/onboarding_tours.js:16 -#: templates/includes/slideshow.html:34 -#: website/web_template/slideshow/slideshow.html:40 +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" msgstr "Kembali" -#: public/js/frappe/form/toolbar.js:289 -msgid "Previous Document" +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "Kembali" + +#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Previous Hash" msgstr "" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Previous Hash" -msgstr "Sebelumnya Hash" - -#: public/js/frappe/form/form.js:2162 +#: frappe/public/js/frappe/form/form.js:2214 msgid "Previous Submission" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Primary" -msgstr "Utama" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Primary Color" -msgstr "Warna primer" +msgstr "" -#: core/doctype/success_action/success_action.js:56 -#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 -#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 -#: public/js/frappe/list/bulk_operations.js:79 -#: public/js/frappe/views/reports/query_report.js:1623 -#: public/js/frappe/views/reports/report_view.js:1463 -#: public/js/frappe/views/treeview.js:473 www/printview.html:18 +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:65 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 +#: frappe/public/js/frappe/views/reports/report_view.js:1537 +#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Mencetak" -#: public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Mencetak" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Print" -msgstr "Mencetak" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Print" -msgstr "Mencetak" - -#: public/js/frappe/list/bulk_operations.js:39 +#: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" msgstr "Cetak Dokumen" -#. Name of a DocType -#: printing/doctype/print_format/print_format.json -#: printing/page/print/print.js:94 printing/page/print/print.js:794 -#: public/js/frappe/list/bulk_operations.js:50 -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Print Format" -msgstr "Format Cetak" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Print Format" -msgstr "Format Cetak" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Format" -msgstr "Format Cetak" - +#. Label of the print_format (Link) field in DocType 'Auto Repeat' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Print Format" -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:94 +#: frappe/printing/page/print/print.js:821 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json msgid "Print Format" msgstr "Format Cetak" #. Label of a Link in the Tools Workspace -#. Label of a shortcut in the Build Workspace -#: automation/workspace/tools/tools.json core/workspace/build/build.json -#: printing/page/print_format_builder/print_format_builder.js:44 -#: printing/page/print_format_builder/print_format_builder.js:67 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4 -msgid "Print Format Builder" -msgstr "Cetak Format Builder" - -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" msgstr "Cetak Format Builder" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Print Format Builder (New)" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Builder Beta" msgstr "" -#: utils/pdf.py:52 +#: frappe/utils/pdf.py:63 msgid "Print Format Error" msgstr "" #. Name of a DocType -#: printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Print Format Field Template" msgstr "" -#. Label of a HTML field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" -msgstr "Print Format Bantuan" +msgstr "" -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Type" -msgstr "Print Format Type" +msgstr "" -#: www/printview.py:407 +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Cetak Format {0} dinonaktifkan" -#. Description of the Onboarding Step 'Customize Print Formats' -#: custom/onboarding_step/print_format/print_format.json -msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools." -msgstr "" - -#. Name of a DocType -#: printing/doctype/print_heading/print_heading.json -msgid "Print Heading" -msgstr "" - #. Label of a Link in the Tools Workspace -#. Label of a Data field in DocType 'Print Heading' -#: automation/workspace/tools/tools.json -#: printing/doctype/print_heading/print_heading.json -msgctxt "Print Heading" +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json msgid "Print Heading" +msgstr "Cetak Pos" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" - -#: public/js/frappe/form/print_utils.js:195 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Cetak Terkirim ke printer!" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Server" -msgstr "Server Cetak" - -#. Name of a DocType -#: printing/doctype/print_settings/print_settings.json -#: printing/doctype/print_style/print_style.js:6 -#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69 -msgid "Print Settings" -msgstr "Pengaturan Cetak" - -#. Label of a Section Break field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Settings" -msgstr "Pengaturan Cetak" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Print Settings" +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:160 +#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Pengaturan Cetak" +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' #. Name of a DocType -#: printing/doctype/print_style/print_style.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json msgid "Print Style" -msgstr "Print Style" +msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#. Label of a Link field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Print Style" -msgstr "Print Style" - -#. Label of a Data field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json msgid "Print Style Name" -msgstr "Cetak Nama Gaya" +msgstr "" -#. Label of a HTML field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Style Preview" -msgstr "Print Style Preview" +msgstr "" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width" -msgstr "Cetak Lebar" - -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Width" -msgstr "Cetak Lebar" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Width" -msgstr "Cetak Lebar" +msgstr "" #. Description of the 'Print Width' (Data) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width of the field, if the field is a column in a table" -msgstr "Cetak Lebar lapangan, jika lapangan adalah kolom dalam tabel" +msgstr "" -#: public/js/frappe/form/form.js:170 +#: frappe/public/js/frappe/form/form.js:170 msgid "Print document" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "Mencetak dengan kop surat" +msgstr "" -#: printing/page/print/print.js:803 +#: frappe/printing/page/print/print.js:830 msgid "Printer" -msgstr "Printer" +msgstr "" -#: printing/page/print/print.js:780 +#: frappe/printing/page/print/print.js:807 msgid "Printer Mapping" msgstr "Pemetaan Printer" -#. Label of a Select field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Printer Name" -msgstr "Nama Printer" +msgstr "" -#: printing/page/print/print.js:772 +#: frappe/printing/page/print/print.js:799 msgid "Printer Settings" msgstr "Pengaturan Printer" -#: printing/page/print/print.js:538 +#: frappe/printing/page/print/print.js:548 msgid "Printer mapping not set." msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Printing" msgstr "Pencetakan" -#: utils/print_format.py:179 +#: frappe/utils/print_format.py:291 msgid "Printing failed" msgstr "Pencetakan gagal" -#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184 +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json msgid "Priority" msgstr "Prioritas" -#. Label of a Int field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Select field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Priority" -msgstr "Prioritas" - -#: desk/doctype/note/note_list.js:8 -msgid "Private" -msgstr "Swasta" - -#. Label of a Check field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Private" -msgstr "Swasta" - +#. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" msgstr "Swasta" -#. Label of a Check field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Private" -msgstr "Swasta" +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "Protip: Tambahkan Reference: {{ reference_doctype }} {{ reference_name }} referensi dokumen untuk mengirim" +msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:22 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Tetap melanjutkan" -#: public/js/frappe/form/controls/table.js:88 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Pengolahan" -#: email/doctype/email_queue/email_queue.py:407 +#: frappe/email/doctype/email_queue/email_queue_list.js:52 msgid "Processing..." msgstr "Pengolahan..." +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Profile" msgstr "" -#: public/js/frappe/socketio_client.js:78 +#: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Kemajuan" -#: public/js/frappe/views/kanban/kanban_view.js:405 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Proyek" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the property (Data) field in DocType 'Property Setter' +#: frappe/core/doctype/version/version_view.html:12 +#: frappe/core/doctype/version/version_view.html:37 +#: frappe/core/doctype/version/version_view.html:74 +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" -msgstr "Harta benda" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Property Depends On" -msgstr "Properti Tergantung" - -#. Label of a Section Break field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Property Depends On" -msgstr "Properti Tergantung" +msgstr "" #. Name of a DocType -#: custom/doctype/property_setter/property_setter.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter" msgstr "Setter Properti" -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Property Setter" -msgstr "Setter Properti" +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Type" -msgstr "Jenis properti" +msgstr "" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "" + +#: frappe/core/doctype/file/file.py:501 +msgid "Protected File" +msgstr "" #. Description of the 'Allowed File Extensions' (Small Text) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" msgstr "" -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Provider" -msgstr "Pemberi" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:613 -#: public/js/frappe/views/workspace/workspace.js:941 -#: public/js/frappe/views/workspace/workspace.js:1187 -msgid "Public" -msgstr "Publik" - -#. Option for the 'Event Type' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Public" -msgstr "Publik" - -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Public" -msgstr "Publik" - -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Public" -msgstr "Publik" - -#: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 -msgid "Publish" -msgstr "Menerbitkan" - -#. Label of a Check field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Publish" -msgstr "Menerbitkan" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Publish as a web page" msgstr "" -#: website/doctype/blog_post/blog_post_list.js:5 -#: website/doctype/web_form/web_form_list.js:5 -#: website/doctype/web_page/web_page_list.js:5 +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "Publik" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:632 +#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "Menerbitkan" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Blog Category' +#. Label of the published (Check) field in DocType 'Blog Post' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_post/blog_post_list.js:5 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" msgstr "Diterbitkan" -#. Label of a Check field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Date field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the published_on (Date) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Published On" -msgstr "Published On" +msgstr "" -#: website/doctype/blog_post/templates/blog_post.html:59 +#: frappe/website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" msgstr "Diterbitkan di" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" msgstr "" -#: email/doctype/email_account/email_account.js:164 +#: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Pull from Google Calendar" -msgstr "Tarik dari Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Pull from Google Contacts" -msgstr "Tarik dari Kontak Google" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Pulled from Google Calendar" -msgstr "Ditarik dari Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Pulled from Google Contacts" -msgstr "Ditarik dari Kontak Google" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Purchase Manager" msgstr "Manajer Pembelian" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" msgstr "Master Manajer Pembelian" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Purchase User" msgstr "Pembelian Pengguna" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Purple" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Purple" msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Push to Google Calendar" -msgstr "Dorong ke Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Push to Google Contacts" -msgstr "Dorong ke Kontak Google" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "Python" msgstr "" -#: www/qrcode.html:3 +#: frappe/www/qrcode.html:3 msgid "QR Code" msgstr "Kode QR" -#: www/qrcode.html:6 +#: frappe/www/qrcode.html:6 msgid "QR Code for Login Verification" msgstr "Kode QR untuk Verifikasi Login" -#: public/js/frappe/form/print_utils.js:204 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "Baki QZ Gagal:" -#: public/js/frappe/utils/common.js:401 -msgid "Quarterly" -msgstr "Triwulan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Quarterly" -msgstr "Triwulan" - #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Quarterly" -msgstr "Triwulan" - #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 msgid "Quarterly" msgstr "Triwulan" -#. Label of a Data field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json msgid "Query" -msgstr "Query" +msgstr "" -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Query" -msgstr "Query" - -#. Label of a Section Break field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Query / Script" -msgstr "Kueri / Skrip" +msgstr "" -#. Label of a Small Text field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Query Options" -msgstr "Opsi Query" +msgstr "" +#. Label of the query_parameters (Table) field in DocType 'Connected App' #. Name of a DocType -#: integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json msgid "Query Parameters" msgstr "" -#. Label of a Table field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Query Parameters" -msgstr "" - -#: public/js/frappe/views/reports/query_report.js:17 -msgid "Query Report" -msgstr "Laporan \"Query\"" - #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 msgid "Query Report" msgstr "Laporan \"Query\"" -#: utils/safe_exec.py:437 +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:495 msgid "Query must be of SELECT or read-only WITH type." msgstr "" -#. Label of a Select field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Queue" msgstr "" -#. Label of a Select field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue Type(s)" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Queue in Background (BETA)" -msgstr "" - -#: utils/background_jobs.py:473 +#: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" msgstr "Antrian adalah salah satu dari {0}" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue(s)" msgstr "" -#: email/doctype/newsletter/newsletter.js:208 -msgid "Queued" -msgstr "Diantrikan" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Queued" -msgstr "Diantrikan" - #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Queued" -msgstr "Diantrikan" - #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "Diantrikan" -#. Label of a Datetime field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued At" msgstr "" -#. Label of a Data field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:173 +#: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:64 -#: integrations/doctype/google_drive/google_drive.py:156 -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81 -msgid "Queued for backup. It may take a few minutes to an hour." -msgstr "Diantrikan untuk dicadangan. Mungkin memakan waktu beberapa menit sampai satu jam." - -#: desk/page/backups/backups.py:96 +#: frappe/desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" msgstr "Diantrikan untuk pencadangan. Anda akan menerima email dengan tautan unduh" -#: email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" msgstr "" -#: email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - -#: desk/doctype/bulk_update/bulk_update.py:88 +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Quick Entry" msgstr "Entri Cepat" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Quick Entry" -msgstr "Entri Cepat" +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" -#. Label of a Code field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Quick Lists" msgstr "" -#: public/js/frappe/views/reports/report_utils.js:280 +#: frappe/public/js/frappe/views/reports/report_utils.js:304 msgid "Quoting must be between 0 and 3" msgstr "" -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "RAW Information Log" -msgstr "Log Informasi RAW" +msgstr "" #. Name of a DocType -#: core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_job/rq_job.json msgid "RQ Job" msgstr "" #. Name of a DocType -#: core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "RQ Worker" msgstr "" -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Random" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Random" msgstr "" -#: website/report/website_analytics/website_analytics.js:20 +#: frappe/website/report/website_analytics/website_analytics.js:20 msgid "Range" msgstr "Jarak" -#. Label of a Section Break field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Rate Limiting" msgstr "" -#. Label of a Section Break field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the section_break_12 (Section Break) field in DocType 'Blog +#. Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Rate Limits" msgstr "" -#. Label of a Int field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Rating" -msgstr "penilaian" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Rating" -msgstr "penilaian" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Rating" -msgstr "penilaian" +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Rating" -msgstr "penilaian" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Rating" -msgstr "penilaian" +msgstr "" -#: printing/doctype/print_format/print_format.py:89 +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Perintah Mentah" -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Raw Commands" -msgstr "Perintah Mentah" - -#. Label of a Code field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Raw Email" -msgstr "Raw Email" +msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Raw Printing" -msgstr "Pencetakan Mentah" +msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Raw Printing" -msgstr "Pencetakan Mentah" - -#: printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:165 msgid "Raw Printing Setting" msgstr "" -#: desk/doctype/console_log/console_log.js:6 +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 msgid "Re-Run in Console" msgstr "" -#: email/doctype/email_account/email_account.py:630 +#: frappe/email/doctype/email_account/email_account.py:726 msgid "Re:" msgstr "" -#: core/doctype/communication/communication.js:268 -#: public/js/frappe/form/footer/form_timeline.js:564 -#: public/js/frappe/views/communication.js:257 +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:600 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" -msgstr "Re: {0}" - -#: client.py:459 -msgid "Read" -msgstr "Membaca" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Read" -msgstr "Membaca" - +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" msgstr "Membaca" -#. Label of a Check field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Read" -msgstr "Membaca" - -#: public/js/form_builder/form_builder.bundle.js:83 -msgid "Read Only" -msgstr "Read Only" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Read Only" -msgstr "Read Only" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Read Only" -msgstr "Read Only" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only" -msgstr "Read Only" +msgstr "" -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Read Only" -msgstr "Read Only" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" - -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" msgstr "" -#: templates/includes/navbar/navbar_items.html:97 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" msgstr "" -#. Label of a Int field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the read_time (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Read Time" -msgstr "Baca Waktu" +msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" -msgstr "Dibaca oleh Penerima" +msgstr "" -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Read by Recipient On" -msgstr "Baca oleh Penerima Aktif" +msgstr "" -#: desk/doctype/note/note.js:10 +#: frappe/desk/doctype/note/note.js:10 msgid "Read mode" msgstr "" -#: utils/safe_exec.py:91 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" -#. Label of a Markdown Editor field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "Readme" msgstr "" -#: public/js/frappe/form/sidebar/review.js:85 -#: social/doctype/energy_point_log/energy_point_log.js:20 +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Reason" msgstr "Alasan" -#. Label of a Text field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reason" -msgstr "Alasan" - -#. Label of a Long Text field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "Reason" -msgstr "Alasan" - -#: public/js/frappe/views/reports/query_report.js:815 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Membangun kembali" -#: public/js/frappe/views/treeview.js:492 +#: frappe/public/js/frappe/views/treeview.js:509 msgid "Rebuild Tree" msgstr "" -#: utils/nestedset.py:180 +#: frappe/utils/nestedset.py:177 msgid "Rebuilding of tree is not supported for {}" msgstr "" -#. Description of the 'Anonymous' (Check) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Receive anonymous response" -msgstr "" - #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Received" msgstr "Diterima" -#: integrations/doctype/token_cache/token_cache.py:49 +#: frappe/integrations/doctype/token_cache/token_cache.py:49 msgid "Received an invalid token type." msgstr "" -#. Label of a Select field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Document Field" -msgstr "Penerima Berdasarkan Bidang Dokumen" +msgstr "" -#. Label of a Link field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Role" -msgstr "Penerima Berdasarkan Peran" +msgstr "" -#. Label of a Data field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Receiver Parameter" -msgstr "Parameter Penerima" +msgstr "" -#: utils/password_strength.py:125 +#: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." msgstr "tahun terakhir mudah ditebak." -#: public/js/frappe/ui/toolbar/search_utils.js:516 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" msgstr "" -#. Label of a Table field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Recipient" -msgstr "Penerima" - -#. Label of a Data field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Recipient" -msgstr "Penerima" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" -msgstr "Penerima Berhenti berlangganan" +msgstr "" -#. Label of a Small Text field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json msgid "Recipients" -msgstr "Penerima" - -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Table field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Recipients" -msgstr "Penerima" +msgstr "" #. Name of a DocType -#: core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder/recorder.json msgid "Recorder" msgstr "Perekam" #. Name of a DocType -#: core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1608 +msgid "Recursive Fetch From" +msgstr "" + #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Red" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Red" -msgstr "" +msgstr "Merah" -#. Label of a Select field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Redirect HTTP Status" msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Redirect URI Bound To Auth Code" -msgstr "Redirect URI Bound Untuk Kode Tupoksi" +msgstr "" -#. Label of a Text field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "redirect URI" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "redirect URL" +msgstr "" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Redirect URL" -msgstr "redirect URL" +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" msgstr "" -#: sessions.py:148 +#: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Cache server Redis tidak berjalan. Silahkan hubungi Administrator / dukungan Tech" -#: public/js/frappe/form/toolbar.js:462 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" -#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470 +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "DocType Ref" +msgstr "" -#: desk/doctype/form_tour/form_tour.js:38 +#: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." msgstr "" -#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42 -#: public/js/frappe/views/interaction.js:54 +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 msgid "Reference" msgstr "Referensi" -#. Label of a Section Break field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Reference Date" msgstr "Referensi Tanggal" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" -msgstr "Referensi Nama Dokumen" +msgstr "" -#. Label of a Link field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "Referensi DocType" +msgstr "" -#. Label of a Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Reference DocType" -msgstr "Referensi DocType" - -#: email/doctype/email_unsubscribe/email_unsubscribe.py:25 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" msgstr "Referensi DOCTYPE dan referensi Nama diperlukan" -#. Label of a Dynamic Link field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Docname" -msgstr "Referensi DocName" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Reference Docname" -msgstr "Referensi DocName" - -#: core/doctype/communication/communication.js:143 -#: core/report/transaction_log_report/transaction_log_report.py:88 +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" msgstr "Referensi DocType" -#. Label of a Link field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" -msgid "Reference Doctype" -msgstr "Referensi DocType" - -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Reference Document" -msgstr "Dokumen referensi" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Data field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Dynamic Link field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Reference Document Name" msgstr "" -#. Label of a Dynamic Link field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference Document Name" +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "Tipe Dokumen Referensi" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "nama referensi" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#: core/doctype/communication/communication.js:152 -#: core/report/transaction_log_report/transaction_log_report.py:94 -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Read Only field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Read Only field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Data field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Reference Report" -msgstr "Laporan Referensi" +msgstr "" -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Report" -msgstr "Laporan Referensi" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Reference Report" -msgstr "Laporan Referensi" - -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json msgid "Reference Type" -msgstr "Referensi Type" +msgstr "" -#: social/doctype/energy_point_rule/energy_point_rule.py:144 -msgid "Reference document has been cancelled" -msgstr "Dokumen referensi telah dibatalkan" - -#. Label of a Dynamic Link field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json msgid "Reference name" -msgstr "Referensi Nama" +msgstr "" -#: templates/emails/auto_reply.html:3 +#: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" msgstr "Referensi: {0} {1}" -#: website/report/website_analytics/website_analytics.js:37 +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 msgid "Referrer" msgstr "Perujuk" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Referrer" -msgstr "Perujuk" - -#: printing/page/print/print.js:73 public/js/frappe/desk.js:133 -#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65 -#: public/js/frappe/views/reports/query_report.js:1612 -#: public/js/frappe/views/treeview.js:479 -#: public/js/frappe/widgets/chart_widget.js:290 -#: public/js/frappe/widgets/number_card_widget.js:307 +#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:558 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 +#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Segarkan" -#: core/page/dashboard_view/dashboard_view.js:177 +#: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" msgstr "Segarkan Semua" -#. Label of a Button field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Refresh Google Sheet" -msgstr "Segarkan Google Sheet" +msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Refresh Token" -msgstr "Segarkan Token" +msgstr "" -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Refresh Token" -msgstr "Segarkan Token" +#: frappe/public/js/frappe/list/list_view.js:531 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#. Label of a Data field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#. Label of a Password field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204 +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:368 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refreshing ..." -#: core/doctype/user/user.py:979 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Terdaftar tapi dinonaktifkan" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Rejected" -msgstr "Ditolak" - #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json msgid "Rejected" -msgstr "Ditolak" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" #. Group in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "Release" msgstr "" -#. Label of a Markdown Editor field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Release Notes" msgstr "" -#: core/doctype/communication/communication.js:48 -#: core/doctype/communication/communication.js:159 +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 msgid "Relink" msgstr "relink" -#: core/doctype/communication/communication.js:138 +#: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" msgstr "Komunikasi relink" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Relinked" -msgstr "ditautkan kembali" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Relinked" -msgstr "ditautkan kembali" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: custom/doctype/customize_form/customize_form.js:120 hooks.py -#: public/js/frappe/form/toolbar.js:408 +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Mengisi kembali" -#: public/js/frappe/list/base_list.js:239 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" msgstr "" -#: public/js/frappe/views/reports/query_report.js:99 +#: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "Ingat Nilai Dipilih terakhir" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Remember Last Selected Value" -msgstr "Ingat Nilai Dipilih terakhir" - -#: public/js/frappe/form/reminders.js:33 +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 msgid "Remind At" msgstr "" -#. Label of a Datetime field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Remind At" -msgstr "" - -#: public/js/frappe/form/toolbar.js:436 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" -#: public/js/frappe/form/reminders.js:13 +#: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" msgstr "" #. Name of a DocType -#: automation/doctype/reminder/reminder.json +#: frappe/automation/doctype/reminder/reminder.json msgid "Reminder" msgstr "" -#: automation/doctype/reminder/reminder.py:38 +#: frappe/automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." msgstr "" -#: public/js/frappe/form/reminders.js:96 +#: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:8 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:488 +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" msgstr "Hapus Lapangan" -#: printing/page/print_format_builder/print_format_builder.js:427 +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" msgstr "Hapus Bagian" -#: custom/doctype/customize_form/customize_form.js:138 +#: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" msgstr "Hapus semua kustomisasi?" -#: public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 msgid "Remove column" msgstr "" -#: core/doctype/file/file.py:155 -msgid "Removed {0}" -msgstr "Dihapus {0}" +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:133 -#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 -#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737 -#: public/js/frappe/views/treeview.js:295 +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" msgstr "Ubah nama" -#: custom/doctype/custom_field/custom_field.js:115 -#: custom/doctype/custom_field/custom_field.js:132 +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" msgstr "" -#: public/js/frappe/model/model.js:724 +#: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" msgstr "Ubah nama {0}" -#: core/doctype/doctype/doctype.py:688 +#: frappe/core/doctype/doctype/doctype.py:698 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Mengganti nama file dan mengganti kode dalam pengontrol, harap periksa!" -#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 msgid "Reopen" msgstr "Membuka lagi" -#: public/js/frappe/form/toolbar.js:479 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "ulangi" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Repeat Header and Footer" msgstr "" -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat On" -msgstr "Ulangi On" +msgstr "" -#. Label of a Date field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat Till" -msgstr "Ulangi Sampai" +msgstr "" -#. Label of a Int field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Day" -msgstr "Ulangi pada hari" +msgstr "" -#. Label of a Table field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Last Day of the Month" -msgstr "Ulangi pada Hari Terakhir Bulan Ini" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat this Event" -msgstr "Ulangi Acara ini" +msgstr "" -#: utils/password_strength.py:112 +#: frappe/utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" msgstr "Mengulangi seperti "aaa" mudah ditebak" -#: utils/password_strength.py:107 +#: frappe/utils/password_strength.py:105 msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" msgstr "Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc"" -#: public/js/frappe/form/sidebar/form_sidebar.js:135 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 msgid "Repeats {0}" msgstr "Ulangi {0}" -#. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Replied" -msgstr "Menjawab" +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json msgid "Replied" msgstr "Menjawab" -#: core/doctype/communication/communication.js:57 -#: public/js/frappe/form/footer/form_timeline.js:550 +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Reply" msgstr "Membalas" -#. Label of a Text Editor field in DocType 'Discussion Reply' -#: website/doctype/discussion_reply/discussion_reply.json -msgctxt "Discussion Reply" -msgid "Reply" -msgstr "Membalas" - -#: core/doctype/communication/communication.js:62 +#: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" msgstr "Membalas semua" +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' #. Name of a DocType -#: core/doctype/report/report.json public/js/frappe/request.js:610 -msgid "Report" -msgstr "Laporan" - -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Report" -msgstr "Laporan" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Report" -msgstr "Laporan" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report" -msgstr "Laporan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Report" -msgstr "Laporan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report" -msgstr "Laporan" - -#. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Report" -msgid "Report" -msgstr "Laporan" - #. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for #. Page and Report' -#. Label of a Link field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Report" -msgstr "Laporan" - +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Report" -msgstr "Laporan" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 +#: frappe/public/js/frappe/request.js:615 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Laporan" -#: public/js/frappe/list/list_view_select.js:66 -msgid "Report Builder" -msgstr "Report Builder" - #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Builder" -msgstr "Report Builder" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "Report Builder" +msgstr "" #. Name of a DocType -#: core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_column/report_column.json msgid "Report Column" msgstr "Kolom Laporan" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Description" -msgstr "Deskripsi laporan" +msgstr "" -#: core/doctype/report/report.py:148 +#: frappe/core/doctype/report/report.py:151 msgid "Report Document Error" msgstr "Laporkan Kesalahan Dokumen" #. Name of a DocType -#: core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/report_filter/report_filter.json msgid "Report Filter" msgstr "Filter Laporan" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Filters" -msgstr "laporan Filter" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "Laporan Hide" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Report Hide" -msgstr "Laporan Hide" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Report Hide" -msgstr "Laporan Hide" - -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Report Information" -msgstr "Laporkan Informasi" +msgstr "" #. Name of a role -#: core/doctype/report/report.json -#: email/doctype/auto_email_report/auto_email_report.json +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" msgstr "Manajer Laporan" -#: public/js/frappe/views/reports/query_report.js:1793 +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Nama Laporan" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Data field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Name" -msgstr "Nama Laporan" - -#: desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:69 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Reference Doctype" -msgstr "Laporkan Jenis Dokumen Referensi" +msgstr "" -#. Label of a Read Only field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Type" -msgstr "Jenis Laporan" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Report Type" -msgstr "Jenis Laporan" +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" -#. Label of a Select field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Type" -msgstr "Jenis Laporan" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" -#: core/doctype/doctype/doctype.py:1750 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "Report cannot be set for Single types" msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal" -#: desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:191 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Laporan" -#: desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:186 msgid "Report has no numeric fields, please change the Report Name" msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan" -#: public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:102 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" -#: core/doctype/prepared_report/prepared_report.py:202 +#: frappe/core/doctype/prepared_report/prepared_report.py:223 msgid "Report timed out." msgstr "" -#: desk/query_report.py:568 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Laporan berhasil diperbarui" -#: public/js/frappe/views/reports/report_view.js:1283 +#: frappe/public/js/frappe/views/reports/report_view.js:1357 msgid "Report was not saved (there were errors)" msgstr "Laporan tidak disimpan (ada kesalahan)" -#: public/js/frappe/views/reports/query_report.js:1831 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Laporan dengan lebih dari 10 kolom terlihat lebih baik dalam mode Lansekap." -#: public/js/frappe/ui/toolbar/search_utils.js:235 -#: public/js/frappe/ui/toolbar/search_utils.js:236 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 msgid "Report {0}" msgstr "Laporan {0}" -#: desk/reportview.py:326 +#: frappe/desk/reportview.py:364 msgid "Report {0} deleted" msgstr "" -#: desk/query_report.py:50 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Laporan {0} dinonaktifkan" -#: desk/reportview.py:303 +#: frappe/desk/reportview.py:341 msgid "Report {0} saved" msgstr "" -#: public/js/frappe/views/reports/report_view.js:20 +#: frappe/public/js/frappe/views/reports/report_view.js:20 msgid "Report:" msgstr "Melaporkan:" -#: public/js/frappe/ui/toolbar/search_utils.js:531 +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 msgid "Reports" msgstr "Laporan" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Reports" -msgstr "Laporan" - -#: patches/v14_0/update_workspace2.py:50 +#: frappe/patches/v14_0/update_workspace2.py:50 msgid "Reports & Masters" msgstr "Laporan & Master" -#: public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Laporan sudah dalam Antrian" -#: www/me.html:66 -msgid "Request Account Deletion" +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." msgstr "" -#. Label of a Code field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the data (Code) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Data" -msgstr "Meminta Data" +msgstr "" -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Description" msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Headers" msgstr "" -#. Label of a Code field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Request Headers" -msgstr "" - -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request ID" msgstr "" -#. Label of a Int field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Request Limit" msgstr "" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request Method" msgstr "" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request Structure" -msgstr "Struktur Permintaan" +msgstr "" -#: public/js/frappe/request.js:228 +#: frappe/public/js/frappe/request.js:231 msgid "Request Timed Out" msgstr "Batas waktu permintaan habis" -#: public/js/frappe/request.js:241 +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 msgid "Request Timeout" msgstr "" -#. Label of a Int field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Request Timeout" -msgstr "" - -#. Label of a Data field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request URL" -msgstr "Permintaan URL" +msgstr "" -#. Label of a Code field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Require Trusted Certificate" -msgstr "Membutuhkan Sertifikat Tepercaya" +msgstr "" #. Description of the 'LDAP search path for Groups' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" msgstr "" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" msgstr "" -#: core/doctype/communication/communication.js:279 +#: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "Res: {0}" +msgstr "" -#: desk/doctype/form_tour/form_tour.js:101 -#: desk/doctype/global_search_settings/global_search_settings.js:19 -#: desk/doctype/module_onboarding/module_onboarding.js:17 -#: website/doctype/portal_settings/portal_settings.js:19 +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 msgid "Reset" msgstr "ulang" -#: custom/doctype/customize_form/customize_form.js:136 +#: frappe/custom/doctype/customize_form/customize_form.js:136 msgid "Reset All Customizations" msgstr "" -#: public/js/print_format_builder/print_format_builder.bundle.js:21 -#: public/js/workflow_builder/workflow_builder.bundle.js:37 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 msgid "Reset Changes" msgstr "" -#: public/js/frappe/widgets/chart_widget.js:305 +#: frappe/public/js/frappe/widgets/chart_widget.js:306 msgid "Reset Chart" msgstr "Atur Ulang Grafik" -#: public/js/frappe/views/dashboard/dashboard_view.js:38 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 msgid "Reset Dashboard Customizations" msgstr "" -#: public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/list/list_settings.js:230 msgid "Reset Fields" msgstr "Setel Ulang Bidang" -#: core/doctype/user/user.js:161 core/doctype/user/user.js:164 +#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 msgid "Reset LDAP Password" msgstr "Setel ulang Kata Sandi LDAP" -#: custom/doctype/customize_form/customize_form.js:128 +#: frappe/custom/doctype/customize_form/customize_form.js:128 msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:230 msgid "Reset OTP Secret" msgstr "Setel ulang OTP Secret" -#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35 -#: www/me.html:44 www/update-password.html:3 www/update-password.html:9 +#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 msgid "Reset Password" -msgstr "Reset Password" +msgstr "" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Reset Password Key" -msgstr "Reset Password Key" +msgstr "" -#. Label of a Duration field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Template" msgstr "" -#: core/page/permission_manager/permission_manager.js:109 +#: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" msgstr "Atur Ulang Perizinan untuk {0}?" -#: public/js/frappe/utils/datatable.js:8 +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 msgid "Reset sorting" msgstr "" -#: www/me.html:36 -msgid "Reset the password for your account" -msgstr "" - -#: public/js/frappe/form/grid_row.js:409 +#: frappe/public/js/frappe/form/grid_row.js:417 msgid "Reset to default" msgstr "" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 msgid "Reset to defaults" msgstr "Ulang ke default" -#: templates/emails/password_reset.html:3 +#: frappe/templates/emails/password_reset.html:3 msgid "Reset your password" msgstr "Mereset password Anda" -#. Label of a Text Editor field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" -#. Label of a Code field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_html (Code) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json msgid "Response " msgstr "" -#. Label of a Select field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" -msgstr "Response Type" +msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:400 +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 msgid "Rest of the day" msgstr "" -#: core/doctype/deleted_document/deleted_document.js:11 -#: core/doctype/deleted_document/deleted_document_list.js:48 +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" msgstr "Mengembalikan" -#: core/page/permission_manager/permission_manager.js:492 +#: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" msgstr "Kembalikan Izin Asli" -#: website/doctype/portal_settings/portal_settings.js:20 +#: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" msgstr "Mengembalikan ke pengaturan default?" -#. Label of a Check field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Restored" -msgstr "Pulih" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:73 +#: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" msgstr "Mengembalikan Dokumen yang Dihapus" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Restrict IP" -msgstr "Membatasi IP" +msgstr "" -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" +msgstr "" -#. Label of a Link field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Restrict to Domain" -msgstr "Batasi ke Domain" - -#. Label of a Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Restrict to Domain" -msgstr "Batasi ke Domain" +msgstr "" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "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)" -msgstr "Membatasi pengguna dari alamat IP ini saja. Beberapa alamat IP dapat ditambahkan dengan memisahkan dengan koma. Juga menerima alamat IP parsial seperti (111.111.111)" +msgstr "" -#: public/js/frappe/list/list_view.js:172 +#: frappe/public/js/frappe/list/list_view.js:196 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Batasan" -#: public/js/frappe/ui/toolbar/awesome_bar.js:354 -#: public/js/frappe/ui/toolbar/awesome_bar.js:369 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 msgid "Result" msgstr "" -#: email/doctype/email_queue/email_queue_list.js:27 +#: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" msgstr "Lanjutkan Mengirim" -#: core/doctype/data_import/data_import.js:110 +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json msgid "Retry" msgstr "Mencoba kembali" -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Retry" -msgstr "Mencoba kembali" - -#: email/doctype/email_queue/email_queue_list.js:47 +#: frappe/email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" msgstr "" -#: www/qrcode.html:15 +#: frappe/www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" msgstr "Kembali ke layar Verifikasi dan masukkan kode yang ditampilkan oleh aplikasi autentikasi Anda" -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Reverse Icon Color" -msgstr "Membalikkan Icon Warna" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.js:10 -#: social/doctype/energy_point_log/energy_point_log.js:15 -msgid "Revert" -msgstr "Kembali" - -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Revert" -msgstr "Kembali" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Revert Of" -msgstr "Kembalikan Dari" - -#. Label of a Check field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reverted" -msgstr "Dikembalikan" - -#: database/schema.py:162 +#: frappe/database/schema.py:161 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Mengembalikan panjang ke {0} untuk '{1}' dalam '{2}'. Menyetel panjang sebagai {3} akan menyebabkan pemotongan data." -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Review" -msgstr "Ulasan" - -#. Name of a DocType -#: social/doctype/review_level/review_level.json -msgid "Review Level" -msgstr "Tingkat Ulasan" - -#. Label of a Table field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Review Levels" -msgstr "Tinjau Tingkat" - -#. Label of a Int field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Review Points" -msgstr "Poin Ulasan" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Revocation URI" msgstr "" -#: www/third_party_apps.html:45 +#: frappe/www/third_party_apps.html:47 msgid "Revoke" msgstr "Mencabut" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Revoked" -msgstr "dicabut" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Rich Text" -msgstr "Rich Text" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Rich Text" -msgstr "Rich Text" - #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" -msgstr "Rich Text" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Right" -msgstr "Benar" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Right" -msgstr "Benar" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Right" msgstr "Benar" -#: printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" msgstr "Benar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Bottom" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Center" msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Robots.txt" -msgstr "robots.txt" +msgstr "" +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType -#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109 -#: core/page/permission_manager/permission_manager.js:212 -#: core/page/permission_manager/permission_manager.js:439 -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Role" -msgstr "Peran" - -#. Label of a Table field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Has Role' -#: core/doctype/has_role/has_role.json -msgctxt "Has Role" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Onboarding Permission' -#: desk/doctype/onboarding_permission/onboarding_permission.json -msgctxt "Onboarding Permission" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Role" -msgstr "Peran" - +#. Label of the role (Link) field in DocType 'User Type' #. Label of a Link in the Users Workspace #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role" +#. Label of the role (Link) field in DocType 'Onboarding Permission' +#. Label of the role (Link) field in DocType 'ToDo' +#. Label of the role (Link) field in DocType 'OAuth Client Role' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" msgstr "Peran" -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Workflow Action Permitted Role' -#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json -msgctxt "Workflow Action Permitted Role" -msgid "Role" -msgstr "Peran" - -#: core/doctype/role/role.js:8 +#: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." msgstr "" -#: core/doctype/role/role.js:13 +#: frappe/core/doctype/role/role.js:13 msgid "Role 'Desk User' will be given to all system users." msgstr "" -#. Label of a Data field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json msgid "Role Name" -msgstr "Nama Peran" - -#. Label of a Data field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" -msgid "Role Name" -msgstr "Nama Peran" +msgstr "" #. Name of a DocType -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgid "Role Permission for Page and Report" -msgstr "Peran Izin Page dan Laporan" - #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role Permission for Page and Report" +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" msgstr "Peran Izin Page dan Laporan" -#: public/js/frappe/roles_editor.js:100 -msgid "Role Permissions" -msgstr "Izin peran" - -#. Label of a Section Break field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:103 msgid "Role Permissions" msgstr "Izin peran" #. Label of a Link in the Users Workspace -#: core/page/permission_manager/permission_manager.js:4 -#: core/workspace/users/users.json +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" -#: public/js/frappe/list/list_view.js:1650 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" #. Name of a DocType -#: core/doctype/role_profile/role_profile.json -msgid "Role Profile" -msgstr "Profil Peran" - +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role Profile" +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json msgid "Role Profile" msgstr "Profil Peran" -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Role Profile" -msgstr "Profil Peran" +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "Role and Level" -msgstr "Peran dan Tingkat" +msgstr "" -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role and Level" -msgstr "Peran dan Tingkat" - -#: core/doctype/user/user.py:314 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" -#: core/page/permission_manager/permission_manager.js:59 +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Roles" msgstr "4.1.2 Roles(Peran)" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#. Label of a Table field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Workspace' -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Roles & Permissions" msgstr "" -#. Label of a Table field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json msgid "Roles Assigned" -msgstr "Peran Ditugaskan" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles Assigned" -msgstr "Peran Ditugaskan" - -#. Label of a HTML field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json msgid "Roles HTML" -msgstr "Peran HTML" +msgstr "" -#. Label of a HTML field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles HTML" -msgstr "Peran HTML" - -#. Label of a HTML field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Roles Html" -msgstr "Peran Html" +msgstr "" -#: utils/nestedset.py:283 +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:280 msgid "Root {0} cannot be deleted" msgstr "Akar {0} tidak dapat dihapus" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "Usul" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Rounding Method" msgstr "" -#. Label of a Data field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Route" -msgstr "Rute" - +#. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Route" -msgstr "Rute" - #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Blog Category' +#. Label of the route (Data) field in DocType 'Blog Post' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Route History' -#: desk/doctype/route_history/route_history.json -msgctxt "Route History" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Route" -msgstr "Rute" +msgstr "" #. Name of a DocType -#: desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/route_history/route_history.json msgid "Route History" msgstr "Riwayat Rute" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Route History" -msgstr "Riwayat Rute" - -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Route Redirects" -msgstr "Pengalihan Rute" +msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Route: Example \"/desk\"" -msgstr "Rute: Contoh "/ desk"" +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" -#: model/base_document.py:710 model/base_document.py:751 model/document.py:591 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Baris" -#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782 +#: frappe/core/doctype/version/version_view.html:73 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1831 +#: frappe/core/doctype/doctype/doctype.py:1841 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: model/base_document.py:868 +#: frappe/model/base_document.py:982 msgid "Row #{0}:" msgstr "Row # {0}:" -#: core/doctype/doctype/doctype.py:492 +#: frappe/core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" msgstr "" -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Row Index" -msgstr "Indeks Baris" +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" -#. Label of a Code field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the row_index (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Row Index" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Row Name" -msgstr "Nama Baris" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:349 +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:68 +msgid "Row Values Changed" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:352 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar" -#: custom/doctype/customize_form/customize_form.py:337 +#: frappe/custom/doctype/customize_form/customize_form.py:341 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 msgid "Rows Added" -msgstr "baris Ditambahkan" +msgstr "" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the rows_removed_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 msgid "Rows Removed" -msgstr "baris Dihapus" +msgstr "" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Rule" -msgstr "Aturan" +msgstr "" -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Rule" -msgstr "Aturan" - -#. Label of a Section Break field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rule Conditions" -msgstr "Ketentuan Aturan" +msgstr "" -#. Label of a Data field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Rule Name" -msgstr "Nama aturan" - -#: permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" #. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Rules" msgstr "" #. Description of the 'Transitions' (Table) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Rules defining transition of state in the workflow." -msgstr "Aturan yang mendefinisikan transisi status dalam alur kerja." +msgstr "" #. Description of the 'Transition Rules' (Section Break) field in DocType #. 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." -msgstr "Aturan untuk bagaimana negara adalah transisi, seperti negara berikutnya dan mana peran diperbolehkan untuk mengubah keadaan dll" +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rules with higher priority number will be applied first." -msgstr "Aturan dengan nomor prioritas lebih tinggi akan diterapkan terlebih dahulu." +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Run Jobs only Daily if Inactive For (Days)" -msgstr "Jalankan Pekerjaan hanya Setiap Hari jika Tidak Aktif Untuk (Hari)" +msgstr "" #. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Run scheduled jobs only if checked" -msgstr "Menjalankan pekerjaan dijadwalkan hanya jika diperiksa" +msgstr "" -#. Name of a DocType -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgid "S3 Backup Settings" -msgstr "S3 Backup Settings" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" -#. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "S3 Backup Settings" -msgid "S3 Backup Settings" -msgstr "S3 Backup Settings" - -#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18 -msgid "S3 Backup complete!" -msgstr "S3 Backup selesai!" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "S3 Bucket Details" -msgstr "Detail Bucket S3" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "SMS" -msgstr "SMS" - -#. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "SMS" -msgstr "SMS" - #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json msgid "SMS" -msgstr "SMS" +msgstr "" -#. Label of a Small Text field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "SMS Gateway URL" -msgstr "SMS Gateway URL" +msgstr "" #. Name of a DocType -#: core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_log/sms_log.json msgid "SMS Log" msgstr "" #. Name of a DocType -#: core/doctype/sms_parameter/sms_parameter.json +#: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "SMS Parameter" msgstr "Parameter SMS" #. Name of a DocType -#: core/doctype/sms_settings/sms_settings.json -msgid "SMS Settings" -msgstr "Pengaturan SMS" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "SMS Settings" msgstr "Pengaturan SMS" -#: core/doctype/sms_settings/sms_settings.py:110 -msgid "SMS sent to following numbers: {0}" -msgstr "SMS dikirim ke nomor berikut: {0}" +#: frappe/core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent successfully" +msgstr "" -#: email/doctype/email_account/email_account.py:182 +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 msgid "SMTP Server is required" msgstr "" -#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email -#. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "SMTP Settings for outgoing emails" -msgstr "Pengaturan SMTP untuk email keluar" - #. Option for the 'Type' (Select) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "SQL" msgstr "" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "SQL Conditions. Example: status=\"Open\"" -msgstr "Kondisi SQL. Contoh: status = "Open"" +msgstr "" -#: core/doctype/recorder/recorder.js:36 +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" msgstr "" -#. Label of a HTML field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "SQL Explain" -msgstr "" - -#. Label of a HTML field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "SQL Output" msgstr "" -#. Label of a Table field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "SQL Queries" msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "SSL/TLS Mode" -msgstr "Mode SSL / TLS" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Sales Manager" -msgstr "Sales Manager" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Sales Master Manager" msgstr "Master Manajer Penjualan" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Sales User" msgstr "Penjualan Pengguna" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Salesforce" -msgstr "Tenaga penjualan" +msgstr "" +#. Label of the salutation (Link) field in DocType 'Contact' #. Name of a DocType -#: contacts/doctype/salutation/salutation.json +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" msgstr "Panggilan" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Salutation" -msgstr "Panggilan" - -#. Label of a Data field in DocType 'Salutation' -#: contacts/doctype/salutation/salutation.json -msgctxt "Salutation" -msgid "Salutation" -msgstr "Panggilan" - -#: integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" msgstr "Bidang yang sama sudah masuk lebih dari satu kali" -#. Label of a HTML field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json msgid "Sample" -msgstr "Sampel" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Saturday" -msgstr "Sabtu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Saturday" -msgstr "Sabtu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Saturday" -msgstr "Sabtu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Saturday" -msgstr "Sabtu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Saturday" -msgstr "Sabtu" - -#: core/doctype/data_import/data_import.js:113 -#: desk/page/user_profile/user_profile_controller.js:319 -#: printing/page/print/print.js:831 -#: printing/page/print_format_builder/print_format_builder.js:160 -#: public/js/frappe/form/footer/form_timeline.js:638 -#: public/js/frappe/form/quick_entry.js:156 -#: public/js/frappe/list/list_settings.js:36 -#: public/js/frappe/list/list_settings.js:244 -#: public/js/frappe/list/list_sidebar_group_by.js:25 -#: public/js/frappe/ui/toolbar/toolbar.js:297 -#: public/js/frappe/utils/common.js:443 -#: public/js/frappe/views/kanban/kanban_settings.js:45 -#: public/js/frappe/views/kanban/kanban_settings.js:189 -#: public/js/frappe/views/kanban/kanban_view.js:340 -#: public/js/frappe/views/reports/query_report.js:1785 -#: public/js/frappe/views/reports/report_view.js:1631 -#: public/js/frappe/views/workspace/workspace.js:487 -#: public/js/frappe/widgets/base_widget.js:140 -#: public/js/frappe/widgets/quick_list_widget.js:117 -#: public/js/print_format_builder/print_format_builder.bundle.js:15 -#: public/js/workflow_builder/workflow_builder.bundle.js:33 -msgid "Save" -msgstr "Simpan" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print_format_builder/print_format_builder.js:160 +#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/quick_entry.js:185 +#: frappe/public/js/frappe/list/list_settings.js:36 +#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 +#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 msgid "Save" msgstr "Simpan" -#: core/doctype/user/user.js:316 +#: frappe/core/doctype/user/user.js:339 msgid "Save API Secret: {0}" msgstr "" -#: workflow/doctype/workflow/workflow.js:143 +#: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Simpan Saja" -#: public/js/frappe/views/reports/report_view.js:1314 -#: public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1388 +#: frappe/public/js/frappe/views/reports/report_view.js:1733 msgid "Save As" msgstr "Disimpan Sebagai" -#: public/js/frappe/views/dashboard/dashboard_view.js:62 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 msgid "Save Customizations" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1788 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Menyimpan laporan" -#: public/js/frappe/views/kanban/kanban_view.js:94 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" msgstr "Simpan filter" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Save on Completion" msgstr "" -#: public/js/frappe/form/form_tour.js:287 +#: frappe/public/js/frappe/form/form_tour.js:295 msgid "Save the document." msgstr "" -#: desk/form/save.py:46 model/rename_doc.py:108 -#: printing/page/print_format_builder/print_format_builder.js:845 -#: public/js/frappe/form/toolbar.js:260 -#: public/js/frappe/views/kanban/kanban_board.bundle.js:910 +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" msgstr "Disimpan" -#: public/js/frappe/list/list_settings.js:40 -#: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:499 +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:40 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 msgid "Saving" msgstr "Menyimpan" -#: public/js/frappe/form/save.js:9 +#: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" msgstr "Menyimpan" -#: custom/doctype/customize_form/customize_form.js:343 +#: frappe/custom/doctype/customize_form/customize_form.js:411 msgid "Saving Customization..." msgstr "" -#: desk/doctype/module_onboarding/module_onboarding.js:8 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." msgstr "" -#: public/js/form_builder/store.js:228 -#: public/js/print_format_builder/store.js:36 -#: public/js/workflow_builder/store.js:73 +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." msgstr "Penghematan..." -#: public/js/frappe/scanner/index.js:72 +#: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" msgstr "" -#: www/qrcode.html:14 +#: frappe/www/qrcode.html:14 msgid "Scan the QR Code and enter the resulting code displayed." msgstr "Scan QR Code dan masukkan hasil kode yang ditampilkan." -#: email/doctype/newsletter/newsletter.js:125 +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Schedule" msgstr "" -#: email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: public/js/frappe/views/communication.js:81 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Schedule sending at a later time" -msgstr "" - -#: email/doctype/newsletter/newsletter_list.js:7 -msgid "Scheduled" -msgstr "Dijadwalkan" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Scheduled" -msgstr "Dijadwalkan" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled" msgstr "Dijadwalkan" -#. Label of a Link field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job" -msgstr "Pekerjaan Terjadwal" +msgstr "" #. Name of a DocType -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgid "Scheduled Job Log" -msgstr "Log Pekerjaan Terjadwal" - -#. Linked DocType in Scheduled Job Type's connections -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job Log" msgstr "Log Pekerjaan Terjadwal" #. Name of a DocType -#: core/doctype/scheduled_job_type/scheduled_job_type.json +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Scheduled Job Type" msgstr "Jenis Pekerjaan yang Dijadwalkan" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Scheduled Job Type" -msgid "Scheduled Job Type" -msgstr "Jenis Pekerjaan yang Dijadwalkan" - -#. Linked DocType in Server Script's connections -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Scheduled Job Type" -msgstr "Jenis Pekerjaan yang Dijadwalkan" - -#. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Scheduled Job Log" +#: frappe/core/workspace/build/build.json msgid "Scheduled Jobs Logs" msgstr "" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Scheduled Sending" -msgstr "" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Scheduled To Send" -msgstr "Dijadwalkan Untuk Mengirim" - -#: core/doctype/server_script/server_script.py:274 +#: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Eksekusi terjadwal untuk skrip {0} telah diperbarui" -#: email/doctype/auto_email_report/auto_email_report.js:26 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 msgid "Scheduled to send" msgstr "Dijadwalkan untuk mengirim" -#. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Scheduler Event" -msgstr "Acara Penjadwal" +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" -#: core/doctype/data_import/data_import.py:97 +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler Inactive" msgstr "Penjadwal Tidak Aktif" -#: utils/scheduler.py:196 +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:247 msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: core/doctype/data_import/data_import.py:97 +#: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler is inactive. Cannot import data." msgstr "Penjadwal tidak aktif. Tidak dapat mengimpor data." -#: core/doctype/rq_job/rq_job_list.js:19 +#: frappe/core/doctype/rq_job/rq_job_list.js:19 msgid "Scheduler: Active" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:21 +#: frappe/core/doctype/rq_job/rq_job_list.js:21 msgid "Scheduler: Inactive" msgstr "" -#. Label of a Data field in DocType 'OAuth Scope' -#: integrations/doctype/oauth_scope/oauth_scope.json -msgctxt "OAuth Scope" +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "Scope" msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#. Label of a Table field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Scopes" -msgstr "lingkup" +msgstr "" -#. Label of a Text field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Scopes" -msgstr "lingkup" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" -#. Label of a Text field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Text field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Table field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Code field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" -msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Script" -msgstr "Skrip" - -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Script" -msgstr "Skrip" - -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Script" -msgstr "Skrip" +msgstr "" #. Name of a role -#: core/doctype/server_script/server_script.json +#: frappe/core/doctype/server_script/server_script.json msgid "Script Manager" msgstr "Pengelola Skrip" #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Script Report" -msgstr "Script Laporan" +msgstr "" -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Script Type" -msgstr "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json msgid "Scripting" msgstr "" -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Scripting" -msgstr "" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Scripting / Style" msgstr "" -#: public/js/frappe/form/link_selector.js:46 -#: public/js/frappe/ui/toolbar/search.js:49 -#: public/js/frappe/ui/toolbar/search.js:68 -#: templates/includes/search_template.html:26 www/search.py:19 +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 msgid "Search" msgstr "Pencarian" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Search Bar" msgstr "" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Search Fields" -msgstr "Cari Fields" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Search Fields" -msgstr "Cari Fields" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:186 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 msgid "Search Help" msgstr "mencari bantuan" -#. Label of a Table field in DocType 'Global Search Settings' -#: desk/doctype/global_search_settings/global_search_settings.json -msgctxt "Global Search Settings" +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Search Priorities" -msgstr "Prioritas Pencarian" - -#: www/search.py:14 -msgid "Search Results for" msgstr "" -#: core/doctype/doctype/doctype.py:1418 +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1467 msgid "Search field {0} is not valid" msgstr "kolom pencarian {0} tidak valid" -#: public/js/frappe/ui/toolbar/search.js:50 -#: public/js/frappe/ui/toolbar/search.js:69 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 msgid "Search for anything" msgstr "Cari untuk apapun" -#: public/js/frappe/ui/toolbar/awesome_bar.js:306 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 msgid "Search for {0}" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:166 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 msgid "Search in a document type" msgstr "Cari dalam jenis dokumen" -#: templates/includes/search_box.html:8 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 msgid "Search results for" msgstr "Hasil pencarian" -#: templates/includes/navbar/navbar_search.html:6 -#: templates/includes/search_box.html:2 -#: templates/includes/search_template.html:23 +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 msgid "Search..." msgstr "Pencarian..." -#: public/js/frappe/ui/toolbar/search.js:210 +#: frappe/public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." msgstr "Mencari ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json msgid "Section" -msgstr "Bagian" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Section Break" -msgstr "Bagian istirahat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Section Break" -msgstr "Bagian istirahat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Section Break" -msgstr "Bagian istirahat" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Section Break" -msgstr "Bagian istirahat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Section Break" -msgstr "Bagian istirahat" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:421 +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 msgid "Section Heading" msgstr "bagian Heading" -#. Label of a Data field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Section ID" msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Security Settings" -msgstr "Pengaturan Keamanan" +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:784 +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Lihat semua laporan sebelumnya." -#: public/js/frappe/form/form.js:1208 -#: website/doctype/contact_us_settings/contact_us_settings.js:4 +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" msgstr "Lihat di Website" -#: website/doctype/web_form/templates/web_form.html:150 +#: frappe/website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" msgid "See previous responses" msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" msgstr "Lihat dokumen di {0}" -#: core/doctype/error_log/error_log_list.js:5 +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Seen" msgstr "Terlihat" -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Section Break field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Seen By" -msgstr "Dilihat oleh" +msgstr "" -#. Label of a Table field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Seen By Table" -msgstr "Dilihat Dengan Table" - -#: printing/page/print/print.js:592 -msgid "Select" -msgstr "Pilih" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Select" -msgstr "Pilih" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Select" -msgstr "Pilih" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Select" -msgstr "Pilih" +msgstr "" +#. Label of the select (Check) field in DocType 'Custom DocPerm' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Select" -msgstr "Pilih" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Select" -msgstr "Pilih" - +#. Label of the select (Check) field in DocType 'DocPerm' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Select" -msgstr "Pilih" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Select" -msgstr "Pilih" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Select" -msgstr "Pilih" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:602 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" msgstr "Pilih" -#: public/js/frappe/views/communication.js:150 -#: public/js/frappe/views/interaction.js:93 -#: public/js/frappe/views/interaction.js:155 +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:481 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Pilih Lampiran" -#: custom/doctype/client_script/client_script.js:25 -#: custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:25 +#: frappe/custom/doctype/client_script/client_script.js:28 msgid "Select Child Table" msgstr "Pilih Tabel Anak" -#: public/js/frappe/views/reports/report_view.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:383 msgid "Select Column" msgstr "Pilih Kolom" -#: public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Pilih Kolom" -#: desk/page/setup_wizard/setup_wizard.js:387 +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 msgid "Select Country" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:404 +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 msgid "Select Currency" msgstr "" -#: public/js/frappe/utils/dashboard_utils.js:240 -msgid "Select Dashboard" -msgstr "Pilih Dasbor" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 msgid "Select Dashboard" msgstr "Pilih Dasbor" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Select Date Range" -msgstr "Pilih Rentang Tanggal" - -#: public/js/frappe/doctype/index.js:170 -msgid "Select DocType" -msgstr "Pilih DocType" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Select DocType" -msgstr "Pilih DocType" - -#. Label of a Link field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" -msgid "Select Doctype" -msgstr "Pilih Doctype" - -#. Label of a Dynamic Link field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Select Document" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 -#: workflow/page/workflow_builder/workflow_builder.js:50 +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "Pilih DocType" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 msgid "Select Document Type" msgstr "Pilih Jenis Dokumen" -#: core/page/permission_manager/permission_manager.js:172 +#: frappe/core/page/permission_manager/permission_manager.js:179 msgid "Select Document Type or Role to start." msgstr "Pilih Document Type atau Peran untuk memulai." -#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Pilih Bidang" -#: public/js/frappe/form/grid_row.js:459 -#: public/js/frappe/list/list_settings.js:233 -#: public/js/frappe/views/kanban/kanban_settings.js:181 +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:473 +#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Pilih Fields" -#: public/js/frappe/data_import/data_exporter.js:143 +#: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Pilih Bidang Untuk Disisipkan" -#: public/js/frappe/data_import/data_exporter.js:144 +#: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" msgstr "Pilih Fields To Update" -#: public/js/frappe/list/list_sidebar_group_by.js:21 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" msgstr "Pilih Filter" -#: desk/doctype/event/event.py:96 +#: frappe/desk/doctype/event/event.py:103 msgid "Select Google Calendar to which event should be synced." msgstr "Pilih Google Kalender tempat acara harus disinkronkan." -#: contacts/doctype/contact/contact.py:75 +#: frappe/contacts/doctype/contact/contact.py:77 msgid "Select Google Contacts to which contact should be synced." msgstr "Pilih Google Kontak yang kontaknya harus disinkronkan." -#: public/js/frappe/list/list_view_select.js:185 +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:379 +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 msgid "Select Language" msgstr "Pilih bahasa" -#. Label of a Select field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select List View" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:154 +#: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" msgstr "pilih wajib" -#: custom/doctype/customize_form/customize_form.js:235 +#: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" msgstr "Pilih Modul" -#: printing/page/print/print.js:175 printing/page/print/print.js:575 +#: frappe/printing/page/print/print.js:175 +#: frappe/printing/page/print/print.js:585 msgid "Select Network Printer" msgstr "" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Page" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:144 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Pilih Print Format" -#: printing/page/print_format_builder/print_format_builder.js:82 +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 msgid "Select Print Format to Edit" msgstr "Pilih Print Format untuk Mengedit" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Report" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:623 +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" msgstr "Pilih Table Kolom untuk {0}" -#: desk/page/setup_wizard/setup_wizard.js:396 +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 msgid "Select Time Zone" msgstr "" -#. Label of a Autocomplete field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Select Transaction" -msgstr "Pilih Transaksi" +msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:68 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" msgstr "" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Workspace" msgstr "" -#: website/doctype/website_settings/website_settings.js:23 +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." msgstr "Pilih Brand Image pertama." -#: printing/page/print_format_builder/print_format_builder.js:108 +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" msgstr "Pilih DOCTYPE untuk membuat format baru" -#: integrations/doctype/webhook/webhook.py:130 -msgid "Select a document to check if it meets conditions." +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." msgstr "" -#: integrations/doctype/webhook/webhook.py:142 -msgid "Select a document to preview request data" -msgstr "" - -#: public/js/frappe/views/treeview.js:342 +#: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." msgstr "Pilih simpul kelompok terlebih dahulu." -#: core/doctype/doctype/doctype.py:1885 +#: frappe/core/doctype/doctype/doctype.py:1942 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Pilih Bidang Pengirim yang valid untuk membuat dokumen dari Email" -#: core/doctype/doctype/doctype.py:1869 +#: frappe/core/doctype/doctype/doctype.py:1926 msgid "Select a valid Subject field for creating documents from Email" msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email" -#: public/js/frappe/form/form_tour.js:313 +#: frappe/public/js/frappe/form/form_tour.js:321 msgid "Select an Image" msgstr "" +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik." +msgstr "" -#: public/js/frappe/list/bulk_operations.js:34 +#: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" msgstr "Pilih minimal 1 record untuk pencetakan" -#: core/doctype/success_action/success_action.js:18 +#: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" msgstr "Pilih minimal 2 tindakan" -#: public/js/frappe/list/list_view.js:1201 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Pilih item daftar" -#: public/js/frappe/list/list_view.js:1153 -#: public/js/frappe/list/list_view.js:1169 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Pilih beberapa item daftar" -#: public/js/frappe/views/calendar/calendar.js:174 +#: frappe/public/js/frappe/views/calendar/calendar.js:167 msgid "Select or drag across time slots to create a new event." msgstr "Pilih atau seret di slot waktu untuk membuat acara baru." -#: public/js/frappe/list/bulk_operations.js:195 +#: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" msgstr "Pilih catatan untuk tugas" -#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Select the label after which you want to insert new field." -msgstr "Pilih label setelah itu Anda ingin memasukkan bidang baru." +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" -#: public/js/frappe/utils/diffview.js:101 +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." msgstr "" -#: public/js/frappe/form/link_selector.js:24 -#: public/js/frappe/form/multi_select_dialog.js:79 -#: public/js/frappe/form/multi_select_dialog.js:279 -#: public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 msgid "Select {0}" msgstr "Pilih {0}" -#: model/workflow.py:121 +#: frappe/model/workflow.py:117 msgid "Self approval is not allowed" msgstr "Persetujuan diri tidak diizinkan" -#: email/doctype/newsletter/newsletter.js:66 -#: email/doctype/newsletter/newsletter.js:74 -#: email/doctype/newsletter/newsletter.js:162 -#: public/js/frappe/views/communication.js:26 www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Kirim" -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Send After" -msgstr "Kirim Setelah" +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "Kirim" -#. Label of a Datetime field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Send After" -msgstr "Kirim Setelah" +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send Alert On" -msgstr "Kirim Pemberitahuan Aktif" +msgstr "" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" -msgstr "Kirim Notifikasi Email" +msgstr "" -#. Label of a Datetime field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Email At" +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" msgstr "" #. Description of the 'Send Print as PDF' (Check) field in DocType 'Print #. Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "Kirim Email Cetak Lampiran sebagai PDF (Disarankan)" +msgstr "" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Send Email for Successful Backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Send Email for Successful Backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" - -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Send Email for Successful backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Me A Copy of Outgoing Emails" -msgstr "Kirimkan Saya Salinan Email yang Keluar" +msgstr "" -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Send Notification To" -msgstr "Kirim Pemberitahuan untuk" - -#. Label of a Small Text field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Send Notification to" -msgstr "Kirim Pemberitahuan ke" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Notifications For Documents Followed By Me" -msgstr "Kirim Pemberitahuan Untuk Dokumen yang Saya Ikuti" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Notifications For Email Threads" -msgstr "Kirim Pemberitahuan Untuk Utas Email" +msgstr "" -#. Label of a Data field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Send Notifications To" -msgstr "Kirim Pemberitahuan Untuk" - -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Send Notifications To" -msgstr "Kirim Pemberitahuan Untuk" - -#: email/doctype/auto_email_report/auto_email_report.js:21 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" msgstr "Kirim sekarang" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Print as PDF" -msgstr "Kirim Cetak sebagai PDF" +msgstr "" -#: public/js/frappe/views/communication.js:134 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Kirim Baca Receipt" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send System Notification" -msgstr "Kirim Pemberitahuan Sistem" - -#: email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" msgstr "" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "Kirim Ke Semua Penerima Tugas" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Unsubscribe Link" -msgstr "Kirim Unsubscribe Link" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Web View Link" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "Kirim Email Selamat Datang" - -#: www/me.html:67 -msgid "Send a request to delete your account" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:166 -msgid "Send again" msgstr "" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" -msgstr "Kirim pemberitahuan jika tanggal sesuai nilai kolom ini" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send alert if this field's value changes" -msgstr "Kirim pemberitahuan jika nilai kolom ini berubah" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Send an email reminder in the morning" -msgstr "Kirim email pengingat di pagi hari" +msgstr "" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send days before or after the reference date" -msgstr "Kirim hari sebelum atau setelah tanggal referensi" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" #. Description of the 'Forward To Email Address' (Data) field in DocType #. 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Send enquiries to this email address" -msgstr "Kirim pertanyaan ke alamat email ini" +msgstr "" -#: www/login.html:210 +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:128 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Kirim Me Salin A" -#: email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - -#. Label of a Check field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the send_if_data (Check) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" -msgstr "Kirim hanya jika ada data" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Send unsubscribe message in email" -msgstr "Kirim pesan berhenti berlangganan dengan email" +msgstr "" -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json msgid "Sender" -msgstr "Pengirim" +msgstr "" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Sender Email" -msgstr "Email Pengirim" +msgstr "" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender Email" -msgstr "Email Pengirim" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Sender Email Field" -msgstr "" - -#: core/doctype/doctype/doctype.py:1888 +#: frappe/core/doctype/doctype/doctype.py:1945 msgid "Sender Field should have Email in options" msgstr "Sender Field harus memiliki opsi Email in" -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sender Name" msgstr "" -#. Label of a Data field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" -msgid "Sender Name" -msgstr "" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Sender Name Field" -msgstr "" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Name Field" msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Sendgrid" -msgstr "Sendgrid" - -#: email/doctype/newsletter/newsletter.js:201 -msgid "Sending" -msgstr "Mengirim" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Sending" -msgstr "Mengirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Sending" msgstr "Mengirim" -#: email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - -#: email/doctype/newsletter/newsletter.js:196 -#: email/doctype/newsletter/newsletter_list.js:5 -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Sent" msgstr "Terkirim" -#. Label of a Date field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sent On" msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "Mengirim Baca Receipt" +msgstr "" -#. Label of a Code field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sent To" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Sent or Received" -msgstr "Dikirim atau diterima" - -#. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sent/Received Email" -msgstr "Email Terkirim / Diterima" - -#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Separator" -msgstr "Pemisah" - -#. Label of a Float field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Sequence Id" msgstr "" -#. Label of a Text field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Series List for this Transaction" -msgstr "Daftar Series Transaksi ini" +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:116 +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "Id Urutan" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:226 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" msgstr "" -#: core/doctype/doctype/doctype.py:1073 -#: core/doctype/document_naming_settings/document_naming_settings.py:171 +#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Seri {0} sudah digunakan dalam {1}" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Server Action" -msgstr "Aksi Server" +msgstr "" -#: public/js/frappe/request.js:606 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "server error" -#. Label of a Data field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Server IP" -msgstr "IP server" +msgstr "" +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' #. Name of a DocType -#: core/doctype/server_script/server_script.json -msgid "Server Script" -msgstr "Skrip Server" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Server Script" -msgstr "Skrip Server" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Server Script" -msgstr "Skrip Server" - -#. Label of a Link field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Server Script" -msgstr "Skrip Server" - #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json msgid "Server Script" msgstr "Skrip Server" -#: utils/safe_exec.py:90 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" -#: core/doctype/server_script/server_script.js:32 +#: frappe/core/doctype/server_script/server_script.js:39 msgid "Server Scripts feature is not available on this site." msgstr "" -#: public/js/frappe/request.js:243 public/js/frappe/request.js:251 +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 msgid "Server was too busy to process this request. Please try again." msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Service" -msgstr "Jasa" - -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Service" msgstr "Jasa" #. Name of a DocType -#: core/doctype/session_default/session_default.json +#: frappe/core/doctype/session_default/session_default.json msgid "Session Default" msgstr "Default Sesi" #. Name of a DocType -#: core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json msgid "Session Default Settings" msgstr "Pengaturan Default Sesi" #. Label of a standard navbar item #. Type: Action -#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296 +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Default Sesi" -#. Label of a Table field in DocType 'Session Default Settings' -#: core/doctype/session_default_settings/session_default_settings.json -msgctxt "Session Default Settings" -msgid "Session Defaults" -msgstr "Default Sesi" - -#: public/js/frappe/ui/toolbar/toolbar.js:281 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Default Sesi Disimpan" -#: app.py:345 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sesi berakhir" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:110 +#: frappe/core/doctype/system_settings/system_settings.py:120 msgid "Session Expiry must be in format {0}" msgstr "Sesi kadaluarsa harus dalam format {0}" -#: public/js/frappe/ui/filters/filter.js:562 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:295 +#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "Tetapkan" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 msgctxt "Field value is set" msgid "Set" msgstr "Tetapkan" -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Set Banner from Image" -msgstr "Set Banner dari Image" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Setel Bagan" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "Tetapkan Opsi Default untuk semua bagan di Dasbor ini (Mis: "warna": ["# d1d8dd", "# ff5858"])" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: desk/doctype/number_card/number_card.js:361 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:367 msgid "Set Dynamic Filters" msgstr "Setel Filter Dinamis" -#: desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:260 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "Tetapkan Filter" -#: public/js/frappe/widgets/chart_widget.js:395 -#: public/js/frappe/widgets/quick_list_widget.js:102 +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 msgid "Set Filters for {0}" msgstr "Setel Filter untuk {0}" -#: core/doctype/user_type/user_type.py:91 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +msgid "Set Level" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:92 msgid "Set Limit" msgstr "" #. Description of the 'Setup Series for transactions' (Section Break) field in #. DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." msgstr "" -#. Label of a Password field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Set New Password" -msgstr "Set Password Baru" +msgstr "" -#: desk/page/backups/backups.js:8 +#: frappe/desk/page/backups/backups.js:8 msgid "Set Number of Backups" msgstr "Atur Jumlah Cadangan" -#: www/update-password.html:9 +#: frappe/www/update-password.html:32 msgid "Set Password" msgstr "Atur Kata Sandi" -#: custom/doctype/customize_form/customize_form.js:112 +#: frappe/custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" msgstr "set Permissions" -#: printing/page/print_format_builder/print_format_builder.js:471 +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 msgid "Set Properties" msgstr "" -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Set Property After Alert" -msgstr "Tetapkan Properti Setelah Pemberitahuan" +msgstr "" -#: public/js/frappe/form/link_selector.js:207 -#: public/js/frappe/form/link_selector.js:208 +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" msgstr "Set Kuantitas" -#. Label of a Select field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Set Role For" -msgstr "Set Peran Untuk" +msgstr "" -#: core/doctype/user/user.js:122 -#: core/page/permission_manager/permission_manager.js:65 +#: frappe/core/doctype/user/user.js:131 +#: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "Set User Permissions" +msgstr "" -#. Label of a Small Text field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" -msgstr "Mengatur Nilai" +msgstr "" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 -#: public/js/frappe/file_uploader/file_uploader.bundle.js:124 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" msgstr "" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" msgstr "" -#: printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" msgstr "Set sebagai Default" -#: website/doctype/website_theme/website_theme.js:33 +#: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" msgstr "Tetapkan sebagai Tema Default" -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Set by user" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" - -#. Description of the 'Precision' (Select) field in DocType 'Customize Form -#. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" #. Description of the 'Precision' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" - +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Set only once" msgstr "" +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "" -"Set the filters here. For example:\n" +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" "
\n"
 "[{\n"
 "\tfieldname: \"company\",\n"
@@ -28069,11 +23498,8 @@ msgid ""
 msgstr ""
 
 #. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
 "
\n"
 "{\n"
 "\t\"value\": value,\n"
@@ -28083,9824 +23509,8140 @@ msgid ""
 "}
" msgstr "" -#: contacts/doctype/address_template/address_template.py:32 +#: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" msgstr "Mengatur Template Alamat ini sebagai default karena tidak ada standar lainnya" -#: desk/doctype/global_search_settings/global_search_settings.py:85 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." msgstr "Menyiapkan dokumen Pencarian Global." -#: desk/page/setup_wizard/setup_wizard.js:273 +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 msgid "Setting up your system" msgstr "Menyiapkan sistem anda" -#. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -#: public/js/frappe/ui/toolbar/toolbar.js:254 -#: public/js/frappe/views/workspace/workspace.js:515 -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'User' +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Table field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" -msgid "Settings Dropdown" -msgstr "Pengaturan Dropdown" - +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' #. Label of a Card Break in the Website Workspace -#: public/js/frappe/ui/toolbar/search_utils.js:551 -#: website/workspace/website/website.json -msgid "Setup" +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" msgstr "Pengaturan" -#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Setup" -msgstr "Pengaturan" - -#. Title of an Onboarding Step -#: custom/onboarding_step/workflows/workflows.json -msgid "Setup Approval Workflows" +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1658 -#: public/js/frappe/views/reports/report_view.js:1609 +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +msgid "Setup" +msgstr "Pengaturan" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1815 +#: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" -#: desk/page/setup_wizard/setup_wizard.js:204 +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Setup Complete" msgstr "Pengaturan Selesai" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Setup Complete" -msgstr "Pengaturan Selesai" - -#. Title of an Onboarding Step -#: custom/onboarding_step/role_permissions/role_permissions.json -msgid "Setup Limited Access for a User" -msgstr "" - -#. Title of an Onboarding Step -#: custom/onboarding_step/naming_series/naming_series.json -msgid "Setup Naming Series" -msgstr "" - -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Share" -msgstr "Bagikan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Share" -msgstr "Bagikan" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Share" -msgstr "Bagikan" +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "" +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "Bagikan" +msgstr "" -#: public/js/frappe/form/sidebar/share.js:107 +#: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" msgstr "Dengan berbagi" -#: public/js/frappe/form/sidebar/share.js:45 +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" msgstr "Berbagi {0} dengan" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Shared" -msgstr "Bersama" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Shared" -msgstr "Bersama" - -#: desk/form/assign_to.py:127 +#: frappe/desk/form/assign_to.py:132 msgid "Shared with the following Users with Read access:{0}" msgstr "Dibagikan dengan Pengguna berikut dengan akses Baca: {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Shipping" -msgstr "pengiriman" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "Alamat Pengiriman" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Shop" -msgstr "Toko" +msgstr "" -#. Label of a Data field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#. Label of the short_name (Data) field in DocType 'Blogger' +#: frappe/website/doctype/blogger/blogger.json msgid "Short Name" -msgstr "Nama pendek" +msgstr "" -#: utils/password_strength.py:93 +#: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "pola keyboard pendek mudah ditebak" -#. Label of a Table field in DocType 'Workspace' -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "Pintasan" +msgstr "" -#: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30 +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Menunjukkan" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Show \"Call to Action\" in Blog" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Absolute Values" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Show Attachments" -msgstr "Tampilkan Lampiran" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "" -#: desk/doctype/calendar_view/calendar_view.js:10 +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Tampilkan Kalender" -#. Label of a Check field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the symbol_on_right (Check) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Show Currency Symbol on Right Side" msgstr "" -#: desk/doctype/dashboard/dashboard.js:6 +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" msgstr "Tampilkan Dasbor" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Show Dashboard" -msgstr "Tampilkan Dasbor" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Show Dashboard" -msgstr "Tampilkan Dasbor" - -#. Label of a Button field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Show Document" -msgstr "Perlihatkan Dokumen" +msgstr "" -#: www/error.html:41 www/error.html:59 +#: frappe/www/error.html:42 frappe/www/error.html:65 msgid "Show Error" msgstr "" -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Show Failed Logs" -msgstr "Tampilkan Log Gagal" - -#: public/js/frappe/form/layout.js:545 +#: frappe/public/js/frappe/form/layout.js:579 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the first_document (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Show First Document Tour" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Form Tour" -msgstr "Tampilkan Tur Formulir" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_error_traceback (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "Tampilkan Kesalahan Lengkap dan Izinkan Pelaporan Masalah ke Pengembang" +msgstr "" -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the show_full_form (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Full Form?" -msgstr "Tunjukkan Formulir Lengkap?" +msgstr "" -#: public/js/frappe/ui/keyboard.js:228 +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" msgstr "Tampilkan Pintasan Keyboard" -#: public/js/frappe/views/kanban/kanban_settings.js:30 +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 msgid "Show Labels" msgstr "" -#. Label of a Check field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Show Labels" -msgstr "" - -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Line Breaks after Sections" -msgstr "Tampilkan Jalur Breaks setelah Bagian" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Show List" msgstr "" -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Show Percentage Stats" -msgstr "Tampilkan Statistik Persentase" +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "" -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +#. Label of the show_failed_logs (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of the show_percentage_stats (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Percentage Stats" +msgstr "" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" msgstr "Tampilkan Perijinan" -#: public/js/form_builder/form_builder.bundle.js:31 -#: public/js/form_builder/form_builder.bundle.js:43 -#: public/js/print_format_builder/print_format_builder.bundle.js:18 -#: public/js/print_format_builder/print_format_builder.bundle.js:54 +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Show Preview" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Preview Popup" -msgstr "Tampilkan Pratinjau Popup" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Show Preview Popup" -msgstr "Tampilkan Pratinjau Popup" - -#. Label of a Check field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Show Processlist" msgstr "" -#: core/doctype/error_log/error_log.js:9 +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" -#: core/doctype/prepared_report/prepared_report.js:43 -#: core/doctype/report/report.js:13 +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 msgid "Show Report" msgstr "Tampilkan Laporan" -#. Label of a Button field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Show Report" -msgstr "Tampilkan Laporan" - -#: public/js/frappe/list/list_filter.js:87 +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 msgid "Show Saved" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the show_section_headings (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Section Headings" -msgstr "Tampilkan Bagian Pos" +msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" -msgstr "Tampilkan Sidebar" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Show Sidebar" -msgstr "Tampilkan Sidebar" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" -#: public/js/frappe/list/list_view.js:1566 +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Tampilkan Tag" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Show Title" -msgstr "Tampilkan Judul" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Show Title in Link Fields" -msgstr "" - -#: public/js/frappe/views/reports/report_view.js:1453 +#: frappe/public/js/frappe/views/reports/report_view.js:1527 msgid "Show Totals" msgstr "Tampilkan Total" -#: desk/doctype/form_tour/form_tour.js:116 +#: frappe/desk/doctype/form_tour/form_tour.js:116 msgid "Show Tour" msgstr "" -#: public/js/frappe/data_import/import_preview.js:200 +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Tampilkan Peringatan" -#: public/js/frappe/views/calendar/calendar.js:184 +#: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Show Weekends" msgstr "Tunjukkan Akhir Pekan" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" msgstr "" -#: core/doctype/version/version.js:6 +#: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" msgstr "Tampilkan semua Versi" -#: website/doctype/blog_post/templates/blog_post_list.html:24 +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "" + +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" msgstr "" -#. Label of a Small Text field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" -msgstr "Tampilkan sebagai cc" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" msgstr "" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show full form instead of a quick entry modal" -msgstr "Tampilkan formulir lengkap, bukan modal entri cepat" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Show in Module Section" -msgstr "Tampilkan dalam Bagian Modul" +msgstr "" -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + +#. Label of the show_in_filter (Check) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" -msgstr "Tampilkan dalam filter" +msgstr "" -#. Label of a Check field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" +#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Show link to document" msgstr "" -#: public/js/frappe/form/layout.js:265 +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:273 +#: frappe/public/js/frappe/form/layout.js:291 msgid "Show more details" msgstr "Tampilkan lebih detail" +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "" + #. Description of the 'Stats Time Interval' (Select) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Show percentage difference according to this time interval" -msgstr "Tunjukkan perbedaan persentase menurut interval waktu ini" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show title in browser window as \"Prefix - title\"" -msgstr "Tampilkan judul di jendela browser sebagai "Awalan - judul"" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:475 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:501 msgid "Showing only Numeric fields from Report" msgstr "Hanya menampilkan bidang numerik dari Laporan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Sidebar" msgstr "" -#. Label of a Table field in DocType 'Website Sidebar' -#: website/doctype/website_sidebar/website_sidebar.json -msgctxt "Website Sidebar" +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json msgid "Sidebar Items" -msgstr "Sidebar Items" +msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the section_break_4 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Sidebar Settings" -msgstr "Pengaturan sidebar" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the section_break_17 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "Sidebar dan Komentar" +msgstr "" -#. Label of a Section Break field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:972 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Sign Up dinonaktifkan" -#: templates/signup.html:16 www/login.html:120 www/login.html:136 -#: www/update-password.html:35 +#: frappe/templates/signup.html:16 frappe/www/login.html:140 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Daftar" -#. Label of a Select field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the sign_ups (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Sign ups" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Signature" -msgstr "Tanda Tangan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Signature" -msgstr "Tanda Tangan" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Signature" -msgstr "Tanda Tangan" - -#. Label of a Section Break field in DocType 'Email Account' -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Signature" -msgstr "Tanda Tangan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Signature" -msgstr "Tanda Tangan" +msgstr "" -#: www/login.html:148 +#: frappe/www/login.html:168 msgid "Signup Disabled" msgstr "Pendaftaran Dinonaktifkan" -#: www/login.html:149 +#: frappe/www/login.html:169 msgid "Signups have been disabled for this website." msgstr "Pendaftaran telah dinonaktifkan untuk situs web ini." #. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Ditutup", "Dibatalkan")" +msgstr "" #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Tidak Valid")" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Ekspresi Python Sederhana, Contoh: status == 'Open' dan ketik == 'Bug'" +msgstr "" -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" -msgstr "Sesi simultan" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:121 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Single DocTypes cannot be customized." msgstr "Single DocTypes tidak dapat dikustomisasi." -#: core/doctype/doctype/doctype_list.js:51 -msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles" - #. Description of the 'Is Single' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles" -#: database/database.py:230 +#: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: public/js/onboarding_tours/onboarding_tours.js:18 +#: frappe/public/js/frappe/views/file/file_view.js:337 +msgid "Size" +msgstr "Ukuran" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 msgid "Skip" msgstr "Melewatkan" -#. Label of a Check field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" -msgstr "Loncat Otorisasi" +msgstr "" -#. Label of a Select field in DocType 'OAuth Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" -msgid "Skip Authorization" -msgstr "Loncat Otorisasi" - -#: public/js/frappe/widgets/onboarding_widget.js:337 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 msgid "Skip Step" msgstr "Lewati Langkah" -#. Label of a Check field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json msgid "Skipped" msgstr "" -#: core/doctype/data_import/importer.py:905 +#: frappe/core/doctype/data_import/importer.py:952 msgid "Skipping Duplicate Column {0}" msgstr "Melewati Kolom Ganda {0}" -#: core/doctype/data_import/importer.py:930 +#: frappe/core/doctype/data_import/importer.py:977 msgid "Skipping Untitled Column" msgstr "Melewati Kolom Tanpa Judul" -#: core/doctype/data_import/importer.py:916 +#: frappe/core/doctype/data_import/importer.py:963 msgid "Skipping column {0}" msgstr "Melewati kolom {0}" -#: modules/utils.py:162 +#: frappe/modules/utils.py:176 msgid "Skipping fixture syncing for doctype {0} from file {1}" msgstr "" -#: core/doctype/data_import/data_import.js:39 +#: frappe/core/doctype/data_import/data_import.js:39 msgid "Skipping {0} of {1}, {2}" msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Skype" -msgstr "Skype" +msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Slack" -msgstr "Kendur" +msgstr "" -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Slack Channel" -msgstr "Slack Channel" +msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 msgid "Slack Webhook Error" -msgstr "Slack Webhook Error" +msgstr "" #. Name of a DocType -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgid "Slack Webhook URL" -msgstr "URL Webhook Lambat" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Slack Webhook URL" +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" msgstr "URL Webhook Lambat" -#. Label of a Link field in DocType 'Web Page' +#. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "Slideshow" -msgstr "Rangkai Salindia" +msgstr "" -#. Label of a Table field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Items" -msgstr "Slideshow Items" +msgstr "" -#. Label of a Data field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Name" -msgstr "Nama Slideshow" +msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Small Text" -msgstr "Teks Kecil" +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Small Text" -msgstr "Teks Kecil" +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Small Text" -msgstr "Teks Kecil" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Small Text" -msgstr "Teks Kecil" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Small Text" -msgstr "Teks Kecil" +msgstr "" -#. Label of a Currency field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Smallest Currency Fraction Value" -msgstr "Terkecil Mata Fraksi Nilai" +msgstr "" #. Description of the 'Smallest Currency Fraction Value' (Currency) field in #. DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" -msgstr "Terkecil Unit beredar fraksi (koin). Untuk misalnya 1 sen untuk USD dan harus dimasukkan sebagai 0,01" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" #. Name of a DocType -#: website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Settings" msgstr "Pengaturan Tautan Sosial" -#. Label of a Select field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Type" -msgstr "Jenis Tautan Sosial" +msgstr "" #. Name of a DocType -#: integrations/doctype/social_login_key/social_login_key.json -msgid "Social Login Key" -msgstr "Kunci Masuk Sosial" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Social Login Key" msgstr "Kunci Masuk Sosial" -#. Label of a Select field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Social Login Provider" -msgstr "Penyedia Login Sosial" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Social Logins" -msgstr "Login Sosial" +msgstr "" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Soft-Bounced" -msgstr "Soft-Terpental" +msgstr "" -#: public/js/frappe/desk.js:20 +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "" + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "" + +#: frappe/public/js/frappe/desk.js:20 msgid "Some of the features might not work in your browser. Please update your browser to the latest version." msgstr "Beberapa fitur mungkin tidak bekerja di browser anda. Perbarui browser anda ke versi terbaru." -#: public/js/frappe/views/translation_manager.js:101 +#: frappe/public/js/frappe/views/translation_manager.js:101 msgid "Something went wrong" msgstr "Ada yang salah" -#: integrations/doctype/google_calendar/google_calendar.py:116 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 msgid "Something went wrong during the token generation. Click on {0} to generate a new one." msgstr "Sesuatu yang salah terjadi selama pembuatan token. Klik pada {0} untuk menghasilkan yang baru." -#: public/js/frappe/views/pageview.js:110 +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:114 msgid "Sorry! I could not find what you were looking for." msgstr "Mohon Maaf! Saya tidak bisa menemukan apa yang Anda cari." -#: public/js/frappe/views/pageview.js:118 +#: frappe/public/js/frappe/views/pageview.js:122 msgid "Sorry! You are not permitted to view this page." msgstr "Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini." -#: public/js/frappe/utils/datatable.js:6 +#: frappe/public/js/frappe/utils/datatable.js:6 msgid "Sort Ascending" msgstr "" -#: public/js/frappe/utils/datatable.js:7 +#: frappe/public/js/frappe/utils/datatable.js:7 msgid "Sort Descending" msgstr "" -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Field" -msgstr "Urutkan Lapangan" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Sort Options" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Sort Options" -msgstr "" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Sort Options" -msgstr "" - -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Order" -msgstr "Tata Urutan" +msgstr "" -#: core/doctype/doctype/doctype.py:1501 +#: frappe/core/doctype/doctype/doctype.py:1550 msgid "Sort field {0} must be a valid fieldname" msgstr "bidang semacam {0} harus fieldname valid" -#: public/js/frappe/utils/utils.js:1705 -#: website/report/website_analytics/website_analytics.js:38 +#. Label of the source (Data) field in DocType 'Web Page View' +#. Label of the source (Small Text) field in DocType 'Website Route Redirect' +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Sumber" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Source" -msgstr "Sumber" - -#. Label of a Small Text field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" -msgid "Source" -msgstr "Sumber" - -#. Label of a Data field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" -msgstr "sumber Nama" +msgstr "" -#: public/js/frappe/views/translation_manager.js:38 +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" msgstr "sumber Teks" -#. Label of a Code field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Source Text" -msgstr "sumber Teks" +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Spam" -msgstr "Spam" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "SparkPost" -msgstr "SparkPost" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:83 +#: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Karakter spesial tidak diperbolehkan" -#: model/naming.py:58 +#: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "Karakter Khusus kecuali "-", "#", ".", "/", "{{" Dan "}}" tidak diizinkan dalam rangkaian penamaan {0}" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "" + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Splash Image" msgstr "" -#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44 +#: frappe/desk/reportview.py:419 +#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "sr" -#: core/doctype/recorder/recorder.js:33 +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "" + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Stack Trace" msgstr "" -#. Label of a HTML field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Stack Trace" -msgstr "" - -#: core/doctype/user_type/user_type_list.js:5 +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json msgid "Standard" msgstr "Standar" -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Standard" -msgstr "Standar" - -#. Label of a Select field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Standard" -msgstr "Standar" - -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Standard" -msgstr "Standar" - -#: model/delete_doc.py:79 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" -#: core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:228 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form" -#: desk/doctype/dashboard/dashboard.py:59 +#: frappe/desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" msgstr "Standar Tidak Ditetapkan" -#: printing/doctype/print_format/print_format.py:74 +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Format Cetak Standar tidak dapat diperbarui" -#: printing/doctype/print_style/print_style.py:31 +#: frappe/printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Gaya Cetak Standar tidak dapat diubah. Silahkan duplikat untuk mengedit." -#: desk/reportview.py:316 +#: frappe/desk/reportview.py:354 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:287 +#: frappe/desk/reportview.py:325 msgid "Standard Reports cannot be edited" msgstr "" -#. Label of a Section Break field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Standard Sidebar Menu" -msgstr "Standard Sidebar menu" +msgstr "" -#: core/doctype/role/role.py:61 +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: frappe/core/doctype/role/role.py:46 msgid "Standard roles cannot be disabled" msgstr "peran standar tidak dapat dinonaktifkan" -#: core/doctype/role/role.py:48 +#: frappe/core/doctype/role/role.py:32 msgid "Standard roles cannot be renamed" msgstr "Peran standar tidak dapat diganti" -#: core/doctype/user_type/user_type.py:60 +#: frappe/core/doctype/user_type/user_type.py:61 msgid "Standard user type {0} can not be deleted." msgstr "" -#: templates/emails/energy_points_summary.html:33 -msgid "Standings" -msgstr "Klasemen" - -#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289 -#: printing/page/print/print.js:336 +#: frappe/core/doctype/recorder/recorder_list.js:87 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 +#: frappe/printing/page/print/print.js:296 +#: frappe/printing/page/print/print.js:343 msgid "Start" msgstr "Mulai" -#: public/js/frappe/utils/common.js:409 +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json msgid "Start Date" msgstr "Tanggal Mulai" -#. Label of a Date field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Datetime field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the start_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Start Date Field" -msgstr "Field Tanggal Mulai" +msgstr "" -#: core/doctype/data_import/data_import.js:110 +#: frappe/core/doctype/data_import/data_import.js:110 msgid "Start Import" msgstr "Mulai Impor" -#. Label of a Datetime field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" -msgid "Start Time" -msgstr "Waktu Mulai" +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" -#: templates/includes/comments/comments.html:8 +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:8 msgid "Start a new discussion" msgstr "" -#: core/doctype/data_export/exporter.py:22 +#: frappe/core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" msgstr "Mulai memasukkan data di bawah garis ini" -#: printing/page/print_format_builder/print_format_builder.js:165 +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 msgid "Start new Format" msgstr "Mulai Format baru" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "StartTLS" -msgstr "StartTLS" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Started" -msgstr "Dimulai" +msgstr "" -#. Label of a Datetime field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Started At" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:274 +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 msgid "Starting Frappe ..." msgstr "Memulai Frappé ..." -#. Label of a Datetime field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Starts on" -msgstr "Mulai dari" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "Negara" +msgstr "" -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "State" -msgstr "Negara" +#: frappe/public/js/workflow_builder/components/Properties.vue:24 +msgid "State Properties" +msgstr "" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "State" -msgstr "Negara" - -#. Label of a Data field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "State" -msgstr "Negara" - -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "State" -msgstr "Negara" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "State/Province" -msgstr "Negara Bagian / Provinsi" +msgstr "" -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "States" -msgstr "Negara" +msgstr "" -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "States" -msgstr "Negara" - -#. Label of a Section Break field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "States" -msgstr "Negara" - -#. Label of a Table field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Static Parameters" -msgstr "Parameter Statis" +msgstr "" -#. Label of a Section Break field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Statistics" msgstr "" -#: public/js/frappe/form/dashboard.js:43 +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 msgid "Stats" msgstr "Statistik" -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Stats" -msgstr "Statistik" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the stats_time_interval (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Stats Time Interval" -msgstr "Statistik Interval Waktu" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:391 -msgid "Stats based on last month's performance (from {0} to {1})" -msgstr "Statistik berdasarkan kinerja bulan lalu (dari {0} hingga {1})" - -#: social/doctype/energy_point_log/energy_point_log.py:393 -msgid "Stats based on last week's performance (from {0} to {1})" -msgstr "Statistik berdasarkan kinerja minggu lalu (dari {0} hingga {1})" - -#: public/js/frappe/views/reports/report_view.js:911 +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:359 +#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Status" -msgstr "Status" +msgstr "" -#. Label of a Select field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Communication' -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Status" -msgstr "Status" - -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Status" -msgstr "Status" - -#: www/update-password.html:161 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status Diperbarui" -#: www/message.html:40 +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "" + +#: frappe/www/message.html:24 msgid "Status: {0}" -msgstr "Status: {0}" +msgstr "" -#. Label of a Link field in DocType 'Onboarding Step Map' -#: desk/doctype/onboarding_step_map/onboarding_step_map.json -msgctxt "Onboarding Step Map" +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Step" -msgstr "Langkah" +msgstr "" -#. Label of a Table field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the steps (Table) field in DocType 'Form Tour' +#. Label of the steps (Table) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Steps" -msgstr "Langkah" +msgstr "" -#. Label of a Table field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Steps" -msgstr "Langkah" - -#: www/qrcode.html:11 +#: frappe/www/qrcode.html:11 msgid "Steps to verify your login" msgstr "Langkah untuk memverifikasi login anda" -#: core/doctype/recorder/recorder_list.js:91 -msgid "Stop" +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Sticky" msgstr "" -#. Label of a Check field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "Berhenti" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Stopped" msgstr "Terhenti" +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "" + #. Description of the 'Last Known Versions' (Text) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." -msgstr "Toko JSON dari versi terakhir yang diketahui dari berbagai aplikasi yang diinstal. Hal ini digunakan untuk menunjukkan catatan rilis." +msgstr "" #. Description of the 'Last Reset Password Key Generated On' (Datetime) field #. in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Stores the datetime when the last reset password key was generated." msgstr "" -#: utils/password_strength.py:99 +#: frappe/utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" msgstr "baris lurus kunci yang mudah ditebak" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" msgstr "" -#: public/js/frappe/form/controls/password.js:90 +#: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" msgstr "" -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style" -msgstr "Gaya" +msgstr "" -#. Label of a Select field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "Style" -msgstr "Gaya" - -#. Label of a Section Break field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Style Settings" -msgstr "Pengaturan Style" +msgstr "" #. Description of the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" -msgstr "Gaya merupakan tombol warna: Sukses - Hijau, Danger - Red, Inverse - Black, Primer - Dark Blue, Info - Light Blue, Peringatan - Jeruk" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Stylesheet" -msgstr "Stylesheet" +msgstr "" #. Description of the 'Fraction' (Data) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "Sub-currency. For e.g. \"Cent\"" -msgstr "Sub-currency. Untuk misalnya \"Cent \"" +msgstr "" #. Description of the 'Subdomain' (Small Text) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Sub-domain provided by erpnext.com" -msgstr "Sub-domain yang disediakan oleh erpnext.com" +msgstr "" -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Subdomain" -msgstr "Subdomain" +msgstr "" -#: public/js/frappe/views/communication.js:103 -#: public/js/frappe/views/inbox/inbox_view.js:63 +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Perihal" -#. Label of a Small Text field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Text field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Newsletter' -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Text field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Subject Field" -msgstr "Bidang Subjek" +msgstr "" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Subject Field" -msgstr "Bidang Subjek" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Subject Field" -msgstr "Bidang Subjek" - -#: core/doctype/doctype/doctype.py:1878 +#: frappe/core/doctype/doctype/doctype.py:1935 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Jenis Bidang Subjek harus Data, Teks, Teks Panjang, Teks Kecil, Editor Teks" #. Name of a DocType -#: core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Submission Queue" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:138 -#: public/js/frappe/form/quick_entry.js:193 -#: public/js/frappe/form/sidebar/review.js:116 -#: public/js/frappe/ui/capture.js:299 -#: social/doctype/energy_point_log/energy_point_log.js:39 -#: social/doctype/energy_point_settings/energy_point_settings.js:47 -#: website/doctype/web_form/templates/web_form.html:44 +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 msgid "Submit" msgstr "Kirim" -#: public/js/frappe/list/list_view.js:1916 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Submit" -msgstr "Kirim" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Submit" -msgstr "Kirim" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Submit" -msgstr "Kirim" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Submit" -msgstr "Kirim" - -#: public/js/frappe/ui/dialog.js:60 +#: frappe/public/js/frappe/ui/dialog.js:62 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Kirim" -#: public/js/frappe/ui/messages.js:97 +#: frappe/public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" msgstr "Kirim" -#: public/js/frappe/desk.js:206 +#: frappe/public/js/frappe/desk.js:227 msgctxt "Submit password for Email Account" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Submit" -msgstr "Kirim" - -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the submit_after_import (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Submit After Import" -msgstr "Kirim Setelah Impor" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Submit Button Label" msgstr "" -#: website/doctype/web_form/templates/web_form.html:153 +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:156 +msgctxt "Button in web form" msgid "Submit another response" msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 msgid "Submit on Creation" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:400 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 msgid "Submit this document to complete this step." msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini." -#: public/js/frappe/form/form.js:1194 +#: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi" -#: public/js/frappe/list/list_view.js:1921 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Kirim {0} dokumen?" -#: public/js/frappe/model/indicator.js:95 -#: public/js/frappe/ui/filters/filter.js:494 -#: website/doctype/web_form/templates/web_form.html:133 -msgid "Submitted" -msgstr "Dikirim" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:136 msgid "Submitted" msgstr "Dikirim" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Submitted" -msgstr "Dikirim" - -#: workflow/doctype/workflow/workflow.py:106 +#: frappe/workflow/doctype/workflow/workflow.py:103 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0}" -#: public/js/workflow_builder/utils.js:176 +#: frappe/public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" msgstr "" -#: public/js/frappe/form/save.js:10 +#: frappe/public/js/frappe/form/save.js:10 msgctxt "Freeze message while submitting a document" msgid "Submitting" msgstr "Mengirimkan" -#: desk/doctype/bulk_update/bulk_update.py:91 +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 msgid "Submitting {0}" msgstr "Mengajukan {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Subsidiary" -msgstr "Anak Perusahaan" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#. Label of the subtitle (Data) field in DocType 'Blog Settings' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" -msgstr "Subtitle" - -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Subtitle" -msgstr "Subtitle" - -#: core/doctype/data_import/data_import.js:470 -#: desk/doctype/bulk_update/bulk_update.js:31 -#: desk/doctype/desktop_icon/desktop_icon.py:452 -#: public/js/frappe/form/grid.js:1133 -#: public/js/frappe/views/translation_manager.js:21 -#: templates/pages/integrations/gcalendar-success.html:9 -#: workflow/doctype/workflow_action/workflow_action.py:171 -msgid "Success" -msgstr "Keberhasilan" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Success" -msgstr "Keberhasilan" - #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Success" -msgstr "Keberhasilan" - -#. Label of a Check field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" -msgid "Success" -msgstr "Keberhasilan" - +#. Label of the success (Check) field in DocType 'Data Import Log' #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" msgstr "Keberhasilan" #. Name of a DocType -#: core/doctype/success_action/success_action.json +#: frappe/core/doctype/success_action/success_action.json msgid "Success Action" msgstr "Tindakan Sukses" -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Success Message" -msgstr "Sukses Pesan" - -#. Label of a Text field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Success Message" -msgstr "Sukses Pesan" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Success Title" msgstr "" -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Success URI" msgstr "" -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Success URL" -msgstr "Sukses URL" +msgstr "" -#: www/update-password.html:79 +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "" + +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Keberhasilan! Anda baik untuk pergi 👍" -#. Label of a Int field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the successful_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: model/workflow.py:306 +#: frappe/model/workflow.py:307 msgid "Successful Transactions" msgstr "Transaksi yang berhasil" -#: model/rename_doc.py:684 +#: frappe/model/rename_doc.py:699 msgid "Successful: {0} to {1}" msgstr "Sukses: {0} ke {1}" -#: social/doctype/energy_point_settings/energy_point_settings.js:41 -msgid "Successfully Done" -msgstr "Berhasil Dilakukan" - -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 msgid "Successfully Updated" msgstr "Berhasil Diperbarui" -#: core/doctype/data_import/data_import.js:434 +#: frappe/core/doctype/data_import/data_import.js:423 msgid "Successfully imported {0}" msgstr "" -#: desk/doctype/form_tour/form_tour.py:86 +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." msgstr "" -#: public/js/frappe/views/translation_manager.js:22 +#: frappe/public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" msgstr "Berhasil memperbarui terjemahan" -#: core/doctype/data_import/data_import.js:442 +#: frappe/core/doctype/data_import/data_import.js:431 msgid "Successfully updated {0}" msgstr "" -#: core/doctype/data_import/data_import.js:149 -msgid "Successfully {0} 1 record." +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/data_import/data_import.js:156 -msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again." +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" msgstr "" -#: core/doctype/data_import/data_import.js:161 -msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again." +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" msgstr "" -#: core/doctype/data_import/data_import.js:151 -msgid "Successfully {0} {1} records." -msgstr "" - -#: core/doctype/user/user.py:679 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Disarankan Username: {0}" -#: public/js/frappe/ui/group_by/group_by.js:20 -msgid "Sum" -msgstr "Jumlah" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Sum" -msgstr "Jumlah" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 msgid "Sum" msgstr "Jumlah" -#: public/js/frappe/ui/group_by/group_by.js:330 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Jumlah dari {0}" -#: public/js/frappe/views/interaction.js:88 +#: frappe/public/js/frappe/views/interaction.js:88 msgid "Summary" msgstr "Ringkasan" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Sunday" -msgstr "Minggu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Sunday" -msgstr "Minggu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Sunday" -msgstr "Minggu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sunday" -msgstr "Minggu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Sunday" -msgstr "Minggu" +msgstr "" -#: email/doctype/email_queue/email_queue_list.js:27 +#: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" msgstr "menangguhkan Mengirim" -#: public/js/frappe/ui/capture.js:268 +#: frappe/public/js/frappe/ui/capture.js:276 msgid "Switch Camera" msgstr "" -#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11 +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 msgid "Switch Theme" msgstr "" -#: templates/includes/navbar/navbar_login.html:17 +#: frappe/templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" msgstr "Switch Untuk Meja" -#: public/js/frappe/ui/capture.js:273 +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" msgstr "" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Symbol" -msgstr "Simbol" +msgstr "" -#. Label of a Section Break field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' +#. Label of the sync (Section Break) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Sync" -msgstr "Sinkronkan" +msgstr "" -#. Label of a Section Break field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Sync" -msgstr "Sinkronkan" - -#: integrations/doctype/google_calendar/google_calendar.js:28 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" msgstr "Sinkronkan Kalender" -#: integrations/doctype/google_contacts/google_contacts.js:28 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" msgstr "Sinkronkan Kontak" -#: custom/doctype/customize_form/customize_form.js:214 +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" msgstr "Sinkronisasi di Migrasi" -#: integrations/doctype/google_calendar/google_calendar.py:295 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 msgid "Sync token was invalid and has been reset, Retry syncing." msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Sync with Google Calendar" -msgstr "Sinkronkan dengan Google Kalender" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Sync with Google Contacts" -msgstr "Sinkronkan dengan Kontak Google" +msgstr "" -#: custom/doctype/doctype_layout/doctype_layout.js:46 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" msgstr "" -#: custom/doctype/doctype_layout/doctype_layout.js:100 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 msgid "Synced Fields" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.js:31 -#: integrations/doctype/google_contacts/google_contacts.js:31 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" msgstr "Sinkronisasi" -#: integrations/doctype/google_calendar/google_calendar.js:19 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" msgstr "Menyinkronkan {0} dari {1}" -#: utils/data.py:2424 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "System" -msgstr "Sistem" +msgstr "" #. Name of a DocType -#: desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 msgid "System Console" msgstr "Konsol Sistem" -#: custom/doctype/custom_field/custom_field.py:358 +#: frappe/custom/doctype/custom_field/custom_field.py:408 msgid "System Generated Fields can not be renamed" msgstr "" +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "" + #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "System Logs" msgstr "" #. Name of a role -#: automation/doctype/assignment_rule/assignment_rule.json -#: automation/doctype/auto_repeat/auto_repeat.json -#: automation/doctype/milestone/milestone.json -#: automation/doctype/milestone_tracker/milestone_tracker.json -#: contacts/doctype/address/address.json -#: contacts/doctype/address_template/address_template.json -#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json -#: contacts/doctype/salutation/salutation.json -#: core/doctype/access_log/access_log.json -#: core/doctype/activity_log/activity_log.json -#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json -#: core/doctype/communication/communication.json -#: core/doctype/custom_docperm/custom_docperm.json -#: core/doctype/custom_role/custom_role.json -#: core/doctype/data_export/data_export.json -#: core/doctype/data_import/data_import.json -#: core/doctype/data_import_log/data_import_log.json -#: core/doctype/deleted_document/deleted_document.json -#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json -#: core/doctype/document_naming_rule/document_naming_rule.json -#: core/doctype/document_naming_settings/document_naming_settings.json -#: core/doctype/document_share_key/document_share_key.json -#: core/doctype/domain/domain.json -#: core/doctype/domain_settings/domain_settings.json -#: core/doctype/error_log/error_log.json core/doctype/file/file.json -#: core/doctype/installed_applications/installed_applications.json -#: core/doctype/language/language.json -#: core/doctype/log_settings/log_settings.json -#: core/doctype/module_def/module_def.json -#: core/doctype/module_profile/module_profile.json -#: core/doctype/navbar_settings/navbar_settings.json -#: core/doctype/package/package.json -#: core/doctype/package_import/package_import.json -#: core/doctype/package_release/package_release.json -#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json -#: core/doctype/permission_inspector/permission_inspector.json -#: core/doctype/prepared_report/prepared_report.json -#: core/doctype/report/report.json core/doctype/role/role.json -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json -#: core/doctype/rq_worker/rq_worker.json -#: core/doctype/scheduled_job_log/scheduled_job_log.json -#: core/doctype/scheduled_job_type/scheduled_job_type.json -#: core/doctype/session_default_settings/session_default_settings.json -#: core/doctype/sms_log/sms_log.json -#: core/doctype/sms_settings/sms_settings.json -#: core/doctype/submission_queue/submission_queue.json -#: core/doctype/success_action/success_action.json -#: core/doctype/system_settings/system_settings.json -#: core/doctype/translation/translation.json core/doctype/user/user.json -#: core/doctype/user_group/user_group.json -#: core/doctype/user_permission/user_permission.json -#: core/doctype/user_type/user_type.json core/doctype/version/version.json -#: core/doctype/view_log/view_log.json -#: custom/doctype/client_script/client_script.json -#: custom/doctype/custom_field/custom_field.json -#: custom/doctype/customize_form/customize_form.json -#: custom/doctype/doctype_layout/doctype_layout.json -#: custom/doctype/property_setter/property_setter.json -#: desk/doctype/bulk_update/bulk_update.json -#: desk/doctype/calendar_view/calendar_view.json -#: desk/doctype/console_log/console_log.json -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json -#: desk/doctype/form_tour/form_tour.json -#: desk/doctype/global_search_settings/global_search_settings.json -#: desk/doctype/kanban_board/kanban_board.json -#: desk/doctype/list_view_settings/list_view_settings.json -#: desk/doctype/module_onboarding/module_onboarding.json -#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json -#: desk/doctype/route_history/route_history.json -#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json -#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json -#: email/doctype/auto_email_report/auto_email_report.json -#: email/doctype/document_follow/document_follow.json -#: email/doctype/email_account/email_account.json -#: email/doctype/email_domain/email_domain.json -#: email/doctype/email_flag_queue/email_flag_queue.json -#: email/doctype/email_queue/email_queue.json -#: email/doctype/email_rule/email_rule.json -#: email/doctype/email_template/email_template.json -#: email/doctype/email_unsubscribe/email_unsubscribe.json -#: email/doctype/notification/notification.json -#: email/doctype/unhandled_email/unhandled_email.json -#: geo/doctype/country/country.json geo/doctype/currency/currency.json -#: integrations/doctype/connected_app/connected_app.json -#: integrations/doctype/dropbox_settings/dropbox_settings.json -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/doctype/google_contacts/google_contacts.json -#: integrations/doctype/google_drive/google_drive.json -#: integrations/doctype/google_settings/google_settings.json -#: integrations/doctype/integration_request/integration_request.json -#: integrations/doctype/ldap_settings/ldap_settings.json -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: integrations/doctype/oauth_client/oauth_client.json -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: integrations/doctype/social_login_key/social_login_key.json -#: integrations/doctype/token_cache/token_cache.json -#: integrations/doctype/webhook/webhook.json -#: integrations/doctype/webhook_request_log/webhook_request_log.json -#: printing/doctype/letter_head/letter_head.json -#: printing/doctype/network_printer_settings/network_printer_settings.json -#: printing/doctype/print_format/print_format.json -#: printing/doctype/print_format_field_template/print_format_field_template.json -#: printing/doctype/print_heading/print_heading.json -#: printing/doctype/print_settings/print_settings.json -#: printing/doctype/print_style/print_style.json -#: social/doctype/energy_point_log/energy_point_log.json -#: social/doctype/energy_point_rule/energy_point_rule.json -#: social/doctype/energy_point_settings/energy_point_settings.json -#: website/doctype/discussion_reply/discussion_reply.json -#: website/doctype/discussion_topic/discussion_topic.json -#: website/doctype/marketing_campaign/marketing_campaign.json -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -#: website/doctype/personal_data_download_request/personal_data_download_request.json -#: website/doctype/web_page_view/web_page_view.json -#: website/doctype/web_template/web_template.json -#: website/doctype/website_route_meta/website_route_meta.json -#: workflow/doctype/workflow/workflow.json -#: workflow/doctype/workflow_action_master/workflow_action_master.json -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "System Manager" -msgstr "System Manager" +msgstr "" -#: desk/page/backups/backups.js:36 +#: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "System Notification" -msgstr "Pemberitahuan Sistem" - -#. Label of a Section Break field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "System Notifications" msgstr "" -#. Label of a Check field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "System Page" -msgstr "Sistem" +msgstr "" #. Name of a DocType -#: core/doctype/system_settings/system_settings.json -msgid "System Settings" -msgstr "Pengaturan Sistem" - -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "System Settings" msgstr "Pengaturan Sistem" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "System managers are allowed by default" -msgstr "Manajer sistem diizinkan secara default" +msgstr "" -#: public/js/frappe/utils/number_systems.js:5 +#: frappe/public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" msgid "T" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Tab Break" -msgstr "" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Tab Break" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Tab Break" msgstr "" -#: core/doctype/data_export/exporter.py:23 -msgid "Table" -msgstr "Tabel" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Table" -msgstr "Tabel" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Table" -msgstr "Tabel" +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Table" -msgstr "Tabel" - +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Table" msgstr "Tabel" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Table Break" -msgstr "Tabel Istirahat" +msgstr "" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#: frappe/core/doctype/version/version_view.html:72 +msgid "Table Field" +msgstr "" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Table Fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:1154 +#: frappe/core/doctype/doctype/doctype.py:1203 msgid "Table Fieldname Missing" msgstr "" -#. Label of a HTML field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json msgid "Table HTML" -msgstr "tabel HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" +msgstr "" -#: public/js/frappe/form/grid.js:1132 +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1169 msgid "Table updated" msgstr "Tabel diperbarui" -#: model/document.py:1366 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabel {0} tidak boleh kosong" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Tabloid" msgstr "" #. Name of a DocType -#: desk/doctype/tag/tag.json +#: frappe/desk/doctype/tag/tag.json msgid "Tag" msgstr "Menandai" #. Name of a DocType -#: desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Tag Link" msgstr "Tautan Tag" -#: model/__init__.py:148 model/meta.py:52 -#: public/js/frappe/list/bulk_operations.js:365 -#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 -#: public/js/frappe/model/model.js:123 -#: public/js/frappe/ui/toolbar/awesome_bar.js:171 +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" msgstr "Tag" -#: integrations/doctype/google_drive/google_drive.js:28 -msgid "Take Backup" -msgstr "Ambil Cadangan" - -#: integrations/doctype/dropbox_settings/dropbox_settings.js:39 -#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12 -msgid "Take Backup Now" -msgstr "Ambil Cadangan Sekarang" - -#: public/js/frappe/ui/capture.js:212 +#: frappe/public/js/frappe/ui/capture.js:220 msgid "Take Photo" msgstr "Memotret" -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Target" -msgstr "Sasaran" +msgstr "" -#. Label of a Small Text field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" -msgid "Target" -msgstr "Sasaran" - -#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25 +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 msgid "Task" msgstr "Tugas" -#: www/about.html:45 +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 msgid "Team Members" msgstr "Anggota Tim" -#. Label of a Section Break field in DocType 'About Us Settings' -#. Label of a Table field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" -msgid "Team Members" -msgstr "Anggota Tim" - -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Heading" -msgstr "Anggota Tim Pos" +msgstr "" -#. Label of a Small Text field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Subtitle" msgstr "" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Telemetry" msgstr "" -#. Label of a Code field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json msgid "Template" msgstr "Contoh" -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Template" -msgstr "Contoh" - -#. Label of a Code field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Template" -msgstr "Contoh" - -#. Label of a Code field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Template" -msgstr "Contoh" - -#: core/doctype/data_import/importer.py:468 -#: core/doctype/data_import/importer.py:596 +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 msgid "Template Error" msgstr "Kesalahan Templat" -#. Label of a Data field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Template File" msgstr "" -#. Label of a Code field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Template Options" -msgstr "Opsi Templat" +msgstr "" -#. Label of a Code field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Template Warnings" -msgstr "Peringatan Templat" +msgstr "" -#: public/js/frappe/views/workspace/blocks/paragraph.js:78 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" msgstr "" -#: core/doctype/user/user.py:983 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Dinonaktifkan Sementara" -#: email/doctype/newsletter/newsletter.py:94 -msgid "Test email sent to {0}" -msgstr "Email percobaan dikirim ke {0}" +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "" -#: core/doctype/file/test_file.py:357 +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" -msgstr "Test_Folder" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Text" -msgstr "Teks" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Text" -msgstr "Teks" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Text" -msgstr "Teks" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Text" -msgstr "Teks" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Text" -msgstr "Teks" +msgstr "" -#. Label of a Select field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Text Align" -msgstr "Teks Align" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "Warna Teks" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Text Content" -msgstr "Konten teks" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Text Editor" -msgstr "Teks Editor" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Text Editor" -msgstr "Teks Editor" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Text Editor" -msgstr "Teks Editor" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Text Editor" -msgstr "Teks Editor" +msgstr "" -#: templates/emails/password_reset.html:5 +#: frappe/templates/emails/password_reset.html:5 msgid "Thank you" msgstr "Terima kasih" -#: website/doctype/web_form/templates/web_form.html:137 +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:140 msgid "Thank you for spending your valuable time to fill this form" msgstr "" -#: templates/emails/auto_reply.html:1 +#: frappe/templates/emails/auto_reply.html:1 msgid "Thank you for your email" msgstr "Terima kasih atas email Anda" -#: website/doctype/help_article/templates/help_article.html:27 +#: frappe/website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" msgstr "Terima kasih atas tanggapan Anda!" -#: email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Terima kasih atas minat anda untuk berlangganan berita kami" +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" -#: templates/emails/new_user.html:16 +#: frappe/templates/emails/new_user.html:16 msgid "Thanks" msgstr "" -#: templates/emails/auto_repeat_fail.html:3 +#: frappe/templates/emails/auto_repeat_fail.html:3 msgid "The Auto Repeat for this document has been disabled." msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan." -#: public/js/frappe/form/grid.js:1155 +#: frappe/public/js/frappe/form/grid.js:1192 msgid "The CSV format is case sensitive" msgstr "Format CSV bersifat case sensitive" #. Description of the 'Client ID' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The Client ID obtained from the Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:201 msgid "The Condition '{0}' is invalid" msgstr "Kondisi '{0}' tidak valid" -#: core/doctype/file/file.py:205 +#: frappe/core/doctype/file/file.py:208 msgid "The File URL you've entered is incorrect" msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." msgstr "" -#: public/js/frappe/desk.js:127 +#: frappe/public/js/frappe/desk.js:162 msgid "The application has been updated to a new version, please refresh this page" msgstr "Aplikasi ini telah diperbarui ke versi baru, harap perbarui halaman ini" #. Description of the 'Application Name' (Data) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "The application name will be used in the Login page." msgstr "" -#: public/js/frappe/views/interaction.js:324 +#: frappe/public/js/frappe/views/interaction.js:323 msgid "The attachments could not be correctly linked to the new document" msgstr "Lampiran tidak dapat dikaitkan dengan benar ke dokumen baru" #. Description of the 'API Key' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The browser API key obtained from the Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: database/database.py:388 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "" -#: core/doctype/data_import/importer.py:962 +#: frappe/core/doctype/data_import/importer.py:1009 msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolom {0} memiliki {1} format tanggal yang berbeda. Secara otomatis menyetel {2} sebagai format bawaan karena ini yang paling umum. Harap ubah nilai lain di kolom ini ke format ini." -#: templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:34 msgid "The comment cannot be empty" msgstr "Komentar tidak boleh kosong" -#: public/js/frappe/views/interaction.js:301 +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:658 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" msgstr "Dokumen tidak dapat ditetapkan dengan benar" -#: public/js/frappe/views/interaction.js:295 +#: frappe/public/js/frappe/views/interaction.js:295 msgid "The document has been assigned to {0}" msgstr "Dokumen telah ditetapkan ke {0}" #. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard #. Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "The document type selected is a child table, so the parent document type is required." -msgstr "" - #. Description of the 'Parent Document Type' (Link) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "The document type selected is a child table, so the parent document type is required." msgstr "" -#: core/doctype/user_type/user_type.py:109 +#: frappe/core/doctype/user_type/user_type.py:110 msgid "The field {0} is mandatory" msgstr "" -#: core/doctype/file/file.py:143 +#: frappe/core/doctype/file/file.py:145 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" -#: core/doctype/data_import/importer.py:1035 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "" -#: core/doctype/data_import/importer.py:998 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "" -#: core/doctype/user_type/user_type.py:88 +#: frappe/core/doctype/user_type/user_type.py:89 msgid "The limit has not set for the user type {0} in the site config file." msgstr "" -#: templates/emails/login_with_email_link.html:21 +#: frappe/templates/emails/login_with_email_link.html:21 msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:178 +#: frappe/www/login.py:194 msgid "The link you trying to login is invalid or expired." msgstr "" -#: website/doctype/web_page/web_page.js:125 +#: frappe/website/doctype/web_page/web_page.js:125 msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." msgstr "Deskripsi meta adalah atribut HTML yang memberikan ringkasan singkat dari halaman web. Mesin pencari seperti Google sering menampilkan deskripsi meta dalam hasil pencarian, yang dapat mempengaruhi rasio klik-tayang." -#: website/doctype/web_page/web_page.js:132 +#: frappe/website/doctype/web_page/web_page.js:132 msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." msgstr "Gambar meta adalah gambar unik yang mewakili konten halaman. Gambar untuk Kartu ini harus memiliki lebar minimal 280 piksel, dan tinggi minimal 150 piksel." #. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "The name that will appear in Google Calendar" -msgstr "Nama yang akan muncul di Google Calendar" +msgstr "" #. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "The next tour will start from where the user left off." msgstr "" #. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "The number of seconds until the request expires" msgstr "" -#: www/404.html:18 -msgid "The page you are looking for has gone missing." -msgstr "" - -#: www/update-password.html:86 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Kata sandi akun Anda telah kedaluwarsa." -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 msgid "The process for deletion of {0} data associated with {1} has been initiated." msgstr "Proses penghapusan {0} data yang terkait dengan {1} telah dimulai." #. Description of the 'App ID' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The project number obtained from Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" "\"IAM & Admin\" > \"Settings\"\n" "" msgstr "" -#: core/doctype/user/user.py:943 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:945 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: app.py:364 public/js/frappe/request.js:147 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Sumber daya yang Anda cari tidak tersedia" -#: core/doctype/user_type/user_type.py:113 +#: frappe/core/doctype/user_type/user_type.py:114 msgid "The role {0} should be a custom role." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:45 +#: frappe/core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." msgstr "" -#: utils/response.py:321 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" -#: public/js/frappe/form/grid_row.js:615 -msgid "The total column width cannot be more than 10." +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." msgstr "" -#: core/doctype/user_type/user_type.py:96 +#: frappe/core/doctype/user_type/user_type.py:97 msgid "The total number of user document types limit has been crossed." msgstr "" -#. Description of the 'User Field' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "The user from this field will be rewarded points" -msgstr "Pengguna dari bidang ini akan diberi poin penghargaan" - -#: public/js/frappe/form/controls/data.js:24 +#: frappe/public/js/frappe/form/controls/data.js:25 msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." msgstr "" #. Description of the 'Condition' (Small Text) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "The webhook will be triggered if this expression is true" -msgstr "Webhook akan dipicu jika ungkapan ini benar" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:168 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 msgid "The {0} is already on auto repeat {1}" msgstr "{0} sudah diulang otomatis {1}" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme" -msgstr "Tema" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Theme" -msgstr "Tema" - -#: public/js/frappe/ui/theme_switcher.js:130 +#: frappe/public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" msgstr "" -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme Configuration" -msgstr "Konfigurasi Tema" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme URL" -msgstr "URL tema" +msgstr "" -#: website/web_template/discussions/discussions.html:3 +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "There are no upcoming events for you." +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: website/doctype/web_form/web_form.js:72 -#: website/doctype/web_form/web_form.js:308 +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: core/doctype/doctype/doctype.py:1394 +#: frappe/core/doctype/doctype/doctype.py:1443 msgid "There can be only one Fold in a form" msgstr "Hanya ada satu Fold dalam bentuk" -#: contacts/doctype/address/address.py:185 +#: frappe/contacts/doctype/address/address.py:183 msgid "There is an error in your Address Template {0}" msgstr "Ada kesalahan dalam Template Alamat Anda {0}" -#: core/doctype/data_export/exporter.py:162 +#: frappe/core/doctype/data_export/exporter.py:162 msgid "There is no data to be exported" msgstr "Tidak ada data yang diekspor" -#: core/doctype/file/file.py:571 utils/file_manager.py:376 +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "" + +#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Ada beberapa masalah dengan url berkas: {0}" -#: core/page/permission_manager/permission_manager.py:150 +#: frappe/public/js/frappe/views/reports/query_report.js:961 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 msgid "There must be atleast one permission rule." msgstr "Harus ada minimal aturan satu izin." -#: core/doctype/user/user.py:499 -msgid "There should remain at least one System Manager" -msgstr "Ada harus tetap setidaknya satu System Manager" - -#: www/error.py:16 +#: frappe/www/error.py:17 msgid "There was an error building this page" msgstr "Terjadi kesalahan saat membangun halaman ini" -#: public/js/frappe/views/kanban/kanban_view.js:180 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 msgid "There was an error saving filters" msgstr "Terjadi kesalahan saat menyimpan filter" -#: public/js/frappe/form/sidebar/attachments.js:201 +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" msgstr "Ada kesalahan" -#: public/js/frappe/views/interaction.js:276 +#: frappe/public/js/frappe/views/interaction.js:277 msgid "There were errors while creating the document. Please try again." msgstr "Ada kesalahan saat membuat dokumen. Silakan coba lagi." -#: public/js/frappe/views/communication.js:728 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Ada kesalahan saat mengirim email. Silakan coba lagi." -#: model/naming.py:449 +#: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" msgstr "Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator" -#: www/404.html:15 -msgid "There's nothing here" +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." msgstr "" #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "These settings are required if 'Custom' LDAP Directory is used" msgstr "" #. Description of the 'Defaults' (Section Break) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." -msgstr "Nilai-nilai ini akan otomatis diperbarui dalam transaksi dan akan berguna jika membatasi hak akses pengguna ini terhadap transaksi-transaksi yang mengandung nilai-nilai ini." +msgstr "" -#: www/third_party_apps.html:3 www/third_party_apps.html:13 +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" msgstr "Aplikasi Pihak Ketiga" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json msgid "Third Party Authentication" -msgstr "Pihak Ketiga Otentikasi" +msgstr "" -#: geo/doctype/currency/currency.js:8 +#: frappe/geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi" -#: geo/utils.py:84 -msgid "This Doctype does not contain latitude and longitude fields" -msgstr "" - -#: geo/utils.py:67 -msgid "This Doctype does not contain location fields" -msgstr "" - -#: public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Papan Kanban ini akan menjadi pribadi" -#: __init__.py:917 +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "" + +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Tindakan ini hanya diperbolehkan untuk {}" -#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720 +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 msgid "This cannot be undone" msgstr "Ini tidak dapat dibatalkan" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "This card will be available to all Users if this is set" -msgstr "Kartu ini akan tersedia untuk semua Pengguna jika ini disetel" - -#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "This chart will be available to all Users if this is set" -msgstr "Bagan ini akan tersedia untuk semua Pengguna jika ini disetel" - -#: desk/doctype/workspace/workspace.js:23 -msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page" msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:90 -msgid "This document cannot be reverted" -msgstr "Dokumen ini tidak dapat dikembalikan" +#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "This chart will be available to all Users if this is set" +msgstr "" -#: www/confirm_workflow_action.html:8 +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1054 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:113 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." msgstr "Dokumen ini telah dimodifikasi setelah email dikirim." -#: social/doctype/energy_point_log/energy_point_log.js:8 -msgid "This document has been reverted" -msgstr "Dokumen ini telah dikembalikan" +#: frappe/public/js/frappe/form/form.js:1305 +msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." +msgstr "" -#: public/js/frappe/form/form.js:1075 +#: frappe/public/js/frappe/form/form.js:1102 msgid "This document is already amended, you cannot ammend it again" msgstr "Dokumen ini sudah diubah, Anda tidak dapat mengubahnya lagi" -#: model/document.py:1518 -msgid "This document is currently queued for execution. Please try again" -msgstr "Dokumen ini saat antri untuk eksekusi. Silakan coba lagi" +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" -#: templates/emails/auto_repeat_fail.html:7 +#: frappe/templates/emails/auto_repeat_fail.html:7 msgid "This email is autogenerated" msgstr "Email ini otomatis terkirim" -#: printing/doctype/network_printer_settings/network_printer_settings.py:29 -msgid "" -"This feature can not be used as dependencies are missing.\n" +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" "\t\t\t\tPlease contact your system manager to enable this by installing pycups!" msgstr "" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "" -"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" "myfield\n" "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" msgstr "" -#: core/doctype/file/file.js:10 +#: frappe/core/doctype/file/file.py:500 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." msgstr "" -#: public/js/frappe/form/form.js:1172 +#: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" msgstr "Formulir ini telah dimodifikasi setelah Anda dimuat" -#: public/js/frappe/form/form.js:457 +#: frappe/public/js/frappe/form/form.js:2257 msgid "This form is not editable due to a Workflow." msgstr "" #. Description of the 'Is Default' (Check) field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" +#: frappe/contacts/doctype/address_template/address_template.json msgid "This format is used if country specific format is not found" -msgstr "Format ini digunakan jika format khusus negara tidak ditemukan" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Website #. Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "This goes above the slideshow." -msgstr "Ini berjalan di atas slideshow." +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1995 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ini adalah laporan latar belakang. Harap atur filter yang sesuai dan kemudian buat yang baru." -#: utils/password_strength.py:162 +#: frappe/utils/password_strength.py:158 msgid "This is a top-10 common password." msgstr "Ini adalah top-10 password yang umum." -#: utils/password_strength.py:164 +#: frappe/utils/password_strength.py:160 msgid "This is a top-100 common password." msgstr "Ini adalah sandi top-100 yang umum." -#: utils/password_strength.py:166 +#: frappe/utils/password_strength.py:162 msgid "This is a very common password." msgstr "Ini adalah password yang sangat umum." -#: core/doctype/rq_job/rq_job.js:9 +#: frappe/core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." msgstr "" -#: templates/emails/auto_reply.html:5 +#: frappe/templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" msgstr "Ini adalah balasan secara otomatis" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "This is an example Google SERP Preview." -msgstr "Ini adalah contoh Pratinjau SERP Google." +msgstr "" -#: utils/password_strength.py:168 +#: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Hal ini mirip dengan password yang umum digunakan." #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "This is the number of the last created transaction with this prefix" -msgstr "Ini adalah jumlah transaksi yang diciptakan terakhir dengan awalan ini" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 msgid "This link has already been activated for verification." msgstr "Tautan ini telah diaktifkan untuk verifikasi." -#: utils/verified_command.py:49 +#: frappe/utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Link ini tidak valid atau kedaluwarsa. Pastikan Anda telah disisipkan dengan benar." -#: printing/page/print/print.js:403 +#: frappe/printing/page/print/print.js:410 msgid "This may get printed on multiple pages" msgstr "Ini dapat dicetak pada beberapa halaman" -#: utils/goal.py:109 +#: frappe/utils/goal.py:109 msgid "This month" msgstr "Bulan ini" -#: email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" +#: frappe/public/js/frappe/views/reports/query_report.js:1036 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" -#: email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: templates/emails/auto_email_report.html:57 +#: frappe/templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" msgstr "Laporan ini dibuat pada {0}" -#: public/js/frappe/views/reports/query_report.js:782 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Laporan ini dihasilkan {0}." -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." msgstr "Permintaan ini belum disetujui oleh pengguna." -#: templates/includes/navbar/navbar_items.html:95 +#: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." msgstr "" -#: core/doctype/doctype/doctype.js:76 +#: frappe/core/doctype/doctype/doctype.js:73 msgid "This site is running in developer mode. Any change made here will be updated in code." msgstr "" -#: website/doctype/web_page/web_page.js:71 +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 msgid "This title will be used as the title of the webpage as well as in meta tags" msgstr "Judul ini akan digunakan sebagai judul halaman web serta tag meta" -#: public/js/frappe/form/controls/base_input.js:120 +#: frappe/public/js/frappe/form/controls/base_input.js:129 msgid "This value is fetched from {0}'s {1} field" msgstr "" -#: website/doctype/web_page/web_page.js:85 +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view. " +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" msgstr "Ini akan dibuat secara otomatis saat Anda mempublikasikan halaman, Anda juga dapat memasukkan rute sendiri jika Anda mau" #. Description of the 'Callback Message' (Small Text) field in DocType #. 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown in a modal after routing" -msgstr "Ini akan ditampilkan dalam modal setelah perutean" +msgstr "" #. Description of the 'Report Description' (Data) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown to the user in a dialog after routing to the report" -msgstr "Ini akan ditampilkan kepada pengguna dalam dialog setelah dirutekan ke laporan" +msgstr "" -#: www/third_party_apps.html:21 +#: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" msgstr "Ini akan log out {0} dari semua perangkat lain" -#: templates/emails/delete_data_confirmation.html:3 +#: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." msgstr "Ini akan menghapus data Anda secara permanen." -#: desk/doctype/form_tour/form_tour.js:103 +#: frappe/desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" -#: core/doctype/rq_job/rq_job.js:15 +#: frappe/core/doctype/rq_job/rq_job.js:15 msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1209 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Terhempas" -#. Label of a Small Text field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Thumbnail URL" -msgstr "URL thumbnail" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Thursday" -msgstr "Kamis" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Thursday" -msgstr "Kamis" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Thursday" -msgstr "Kamis" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Thursday" -msgstr "Kamis" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Thursday" -msgstr "Kamis" - -#: email/doctype/newsletter/newsletter.js:118 -msgid "Time" -msgstr "Waktu" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Time" -msgstr "Waktu" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Time" -msgstr "Waktu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Time" -msgstr "Waktu" - -#. Label of a Datetime field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Time" -msgstr "Waktu" - +#. Label of the time (Datetime) field in DocType 'Recorder' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Time" -msgstr "Waktu" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Time" -msgstr "Waktu" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Waktu" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Time Format" -msgstr "Format waktu" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Interval" -msgstr "Jarak waktu" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series" -msgstr "Seri waktu" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series Based On" -msgstr "Seri Waktu Berdasarkan" +msgstr "" -#. Label of a Duration field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Time Taken" msgstr "" -#. Label of a Int field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Time Window (Seconds)" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:395 +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Autocomplete field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Text field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Time Zones" -msgstr "Zona Waktu" +msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Time format" -msgstr "Format waktu" +msgstr "" -#. Label of a Float field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Time in Queries" msgstr "" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Time in seconds to retain QR code image on server. Min:240" -msgstr "Waktu dalam hitungan detik untuk mempertahankan gambar QR code di server. Min: 240" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:413 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 msgid "Time series based on is required to create a dashboard chart" msgstr "Diperlukan seri waktu berdasarkan untuk membuat bagan dasbor" -#: public/js/frappe/form/controls/time.js:104 +#: frappe/public/js/frappe/form/controls/time.js:124 msgid "Time {0} must be in format: {1}" msgstr "Waktu {0} harus dalam format: {1}" #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Timed Out" msgstr "" -#: public/js/frappe/ui/theme_switcher.js:64 +#: frappe/public/js/frappe/ui/theme_switcher.js:64 msgid "Timeless Night" msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Timeline" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline DocType" -msgstr "DocType Timeline" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Timeline Field" -msgstr "Timeline Lapangan" +msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#. Label of a Table field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Timeline Links" -msgstr "Tautan Timeline" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline Name" -msgstr "Nama Timeline" +msgstr "" -#: core/doctype/doctype/doctype.py:1489 +#: frappe/core/doctype/doctype/doctype.py:1538 msgid "Timeline field must be a Link or Dynamic Link" msgstr "bidang Timeline harus Link atau Dynamic Link" -#: core/doctype/doctype/doctype.py:1485 +#: frappe/core/doctype/doctype/doctype.py:1534 msgid "Timeline field must be a valid fieldname" msgstr "bidang Timeline harus fieldname valid" -#. Label of a Duration field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Timeout" msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Timeseries" -msgstr "Timeseries" +msgstr "" -#: desk/page/leaderboard/leaderboard.js:123 -#: public/js/frappe/ui/filters/filter.js:28 +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 msgid "Timespan" msgstr "Rentang waktu" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Timespan" -msgstr "Rentang waktu" - -#: core/report/transaction_log_report/transaction_log_report.py:112 +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" -msgstr "Timestamp" +msgstr "" -#. Label of a Datetime field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Timestamp" -msgstr "Timestamp" +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" -#. Label of a Datetime field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Timestamp" -msgstr "Timestamp" - -#: public/js/form_builder/store.js:89 -#: public/js/frappe/views/workspace/workspace.js:599 -#: public/js/frappe/views/workspace/workspace.js:928 -#: public/js/frappe/views/workspace/workspace.js:1175 +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Blog Category' +#. Label of the title (Data) field in DocType 'Blog Post' +#. Label of the title (Data) field in DocType 'Blog Settings' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Title" msgstr "Judul" -#. Label of a Data field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Website Sidebar' -#: website/doctype/website_sidebar/website_sidebar.json -msgctxt "Website Sidebar" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Title Field" -msgstr "Judul Lapangan" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Title Field" -msgstr "Judul Lapangan" - -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Title Prefix" -msgstr "Judul Prefix" +msgstr "" -#: core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1475 msgid "Title field must be a valid fieldname" msgstr "Judul lapangan harus fieldname valid" -#: website/doctype/web_page/web_page.js:70 +#: frappe/website/doctype/web_page/web_page.js:70 msgid "Title of the page" msgstr "Judul halaman" -#: public/js/frappe/views/communication.js:52 -#: public/js/frappe/views/inbox/inbox_view.js:70 +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Untuk" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" msgid "To" msgstr "Untuk" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "To" -msgstr "Untuk" - -#: website/report/website_analytics/website_analytics.js:14 +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 msgid "To Date" msgstr "Untuk Tanggal" -#. Label of a Date field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "To Date" -msgstr "Untuk Tanggal" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To Date Field" -msgstr "Bidang Tanggal" - -#: desk/doctype/todo/todo_list.js:12 -msgid "To Do" -msgstr "To Do" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "ToDo" +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "To Do" - -#: public/js/frappe/form/sidebar/review.js:50 -msgid "To User" -msgstr "Kepada Pengguna" +msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" "
New {{ doc.doctype }} #{{ doc.name }}
" msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" "
{{ doc.name }} Delivered
" msgstr "" #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "" -"To add dynamic values from the document, use jinja tags like\n" -"\n" +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" "
\n" "
{ \"id\": \"{{ doc.name }}\" }\n"
 "
\n" "
" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:101 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "To and CC" -msgstr "Untuk dan CC" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.js:35 +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." msgstr "Untuk mengonfigurasi Ulangi Otomatis, aktifkan "Izinkan Ulangi Otomatis" dari {0}." -#: www/login.html:73 +#: frappe/www/login.html:76 msgid "To enable it follow the instructions in the following link: {0}" msgstr "Untuk mengaktifkannya ikuti instruksi di tautan berikut: {0}" -#: desk/doctype/onboarding_step/onboarding_step.js:18 +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 msgid "To export this step as JSON, link it in a Onboarding document and save the document." msgstr "" -#: public/js/frappe/views/reports/query_report.js:783 +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}." -#: www/me.html:51 -msgid "To manage your authorized third party apps" +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" msgstr "" #. Description of the 'Console' (Code) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "To print output use print(text)" msgstr "" -#: core/doctype/user_type/user_type.py:295 +#: frappe/core/doctype/user_type/user_type.py:291 msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." msgstr "" -#: integrations/doctype/google_calendar/google_calendar.js:8 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 msgid "To use Google Calendar, enable {0}." msgstr "Untuk menggunakan Kalender Google, aktifkan {0}." -#: integrations/doctype/google_contacts/google_contacts.js:8 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 msgid "To use Google Contacts, enable {0}." msgstr "Untuk menggunakan Kontak Google, aktifkan {0}." -#: integrations/doctype/google_drive/google_drive.js:8 -msgid "To use Google Drive, enable {0}." -msgstr "Untuk menggunakan Google Drive, aktifkan {0}." - #. Description of the 'Enable Google indexing' (Check) field in DocType #. 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "To use Google Indexing, enable Google Settings." msgstr "" #. Description of the 'Slack Channel' (Link) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "To use Slack Channel, add a Slack Webhook URL." msgstr "" -#: public/js/frappe/utils/diffview.js:43 +#: frappe/public/js/frappe/utils/diffview.js:44 msgid "To version" msgstr "" +#. Label of a shortcut in the Tools Workspace #. Name of a DocType #. Name of a report -#: desk/doctype/todo/todo.json desk/report/todo/todo.json +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json msgid "ToDo" msgstr "To Do" -#. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "ToDo" -msgid "ToDo" -msgstr "To Do" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "ToDo" -msgstr "To Do" - -#: public/js/frappe/form/controls/date.js:58 -#: public/js/frappe/views/calendar/calendar.js:267 +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 msgid "Today" msgstr "Hari ini" -#: public/js/frappe/ui/notifications/notifications.js:55 -msgid "Today's Events" -msgstr "Acara hari ini" - -#: public/js/frappe/views/reports/report_view.js:1495 +#: frappe/public/js/frappe/views/reports/report_view.js:1570 msgid "Toggle Chart" -msgstr "Toggle Chart" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "Toggle Full Width" msgstr "" -#: public/js/frappe/views/file/file_view.js:33 +#: frappe/public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" -msgstr "Toggle Grid View" +msgstr "" -#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 -#: public/js/frappe/views/reports/report_view.js:1499 +#: frappe/public/js/frappe/ui/page.js:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1574 msgid "Toggle Sidebar" -msgstr "Toggle Sidebar" +msgstr "" -#: public/js/frappe/list/list_view.js:1681 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "Toggle Sidebar" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "Toggle Theme" msgstr "" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" -msgstr "Token" +msgstr "" #. Name of a DocType -#: integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Cache" msgstr "" -#. Linked DocType in Connected App's connections -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Token Cache" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" msgstr "" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Token Cache" -msgstr "" - -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Token URI" msgstr "" -#: utils/oauth.py:184 +#: frappe/utils/oauth.py:184 msgid "Token is missing" msgstr "Token hilang" -#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253 +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:254 msgid "Too Many Documents" msgstr "" -#: rate_limiter.py:88 +#: frappe/rate_limiter.py:101 msgid "Too Many Requests" msgstr "Terlalu Banyak Permintaan" -#: database/database.py:387 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:984 +#: frappe/utils/background_jobs.py:730 +msgid "Too many queued background jobs ({0}). Please retry after some time." +msgstr "" + +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Terlalu banyak pengguna mendaftar baru, sehingga pendaftaran dinonaktifkan. Silakan coba kembali dalam satu jam" #. Name of a Workspace #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Alat-alat" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 msgid "Top" -msgstr "Puncak" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" #. Name of a DocType -#: website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Top Bar Item" msgstr "Top Bar Barang" -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the top_bar_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Top Bar Items" -msgstr "Top Bar Items" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 msgid "Top Center" msgstr "" -#. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Top Center" +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 msgid "Top Left" msgstr "" -#: templates/emails/energy_points_summary.html:3 -msgid "Top Performer" -msgstr "Performa Top" - -#: templates/emails/energy_points_summary.html:18 -msgid "Top Reviewer" -msgstr "Peninjau Teratas" - #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Top Right" -msgstr "" - #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 msgid "Top Right" msgstr "" -#: templates/emails/energy_points_summary.html:33 -msgid "Top {0}" -msgstr "Top {0}" - -#. Label of a Link field in DocType 'Discussion Reply' -#: website/doctype/discussion_reply/discussion_reply.json -msgctxt "Discussion Reply" +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Topic" -msgstr "Tema" +msgstr "" -#: desk/query_report.py:503 +#: frappe/desk/query_report.py:546 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 +#: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" -msgstr "Total" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Total Recipients" msgstr "" -#. Label of a Int field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Total Subscribers" -msgstr "Jumlah Pelanggan" - -#. Label of a Read Only field in DocType 'Newsletter Email Group' -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgctxt "Newsletter Email Group" -msgid "Total Subscribers" -msgstr "Jumlah Pelanggan" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Total Views" +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" msgstr "" -#. Label of a Duration field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "" + +#. Label of the total_working_time (Duration) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Total number of emails to sync in initial sync process " -msgstr "Total jumlah email yang disinkronisasi dalam proses sinkronisasi awal" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1181 -#: public/js/frappe/views/reports/report_view.js:1477 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1256 msgid "Totals" msgstr "Total" -#: public/js/frappe/views/reports/report_view.js:1156 +#: frappe/public/js/frappe/views/reports/report_view.js:1231 msgid "Totals Row" msgstr "Total Row" -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json msgid "Trace ID" msgstr "" -#. Label of a Code field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json msgid "Traceback" -msgstr "Melacak kembali" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Changes" -msgstr "Lacak Perubahan" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Track Changes" -msgstr "Lacak Perubahan" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the track_email_status (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Track Email Status" -msgstr "Lacak Status Email" +msgstr "" -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json msgid "Track Field" -msgstr "Lacak Bidang" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Track Seen" -msgstr "track Dilihat" +msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Track Steps" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the track_views (Check) field in DocType 'DocType' +#. Label of the track_views (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Views" -msgstr "Tampilan Track" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Track Views" -msgstr "Tampilan Track" +msgstr "" #. Description of the 'Track Email Status' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "" -"Track if your email has been opened by the recipient.\n" +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" "
\n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" msgstr "" -#: public/js/frappe/utils/utils.js:1744 +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the transaction_hash (Small Text) field in DocType 'Transaction +#. Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Hash" -msgstr "Transaksi Hash" +msgstr "" #. Name of a DocType -#: core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" msgstr "Log Transaksi" #. Name of a report -#: core/report/transaction_log_report/transaction_log_report.json +#: frappe/core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" msgstr "Laporan Log Transaksi" -#. Label of a Section Break field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Transition Rules" -msgstr "Aturan Transisi" +msgstr "" -#. Label of a Table field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "Transisi" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Translatable" -msgstr "Bisa diterjemahkan" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Translatable" -msgstr "Bisa diterjemahkan" +#: frappe/public/js/frappe/views/reports/query_report.js:2233 +msgid "Translate Data" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Translatable" -msgstr "Bisa diterjemahkan" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Translate Link Fields" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Translate Link Fields" +#: frappe/public/js/frappe/views/reports/report_view.js:1656 +msgid "Translate values" msgstr "" -#: public/js/frappe/views/translation_manager.js:11 +#: frappe/public/js/frappe/views/translation_manager.js:11 msgid "Translate {0}" msgstr "Terjemahkan {0}" -#. Label of a Code field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "diterjemahkan Teks" +msgstr "" #. Name of a DocType -#: core/doctype/translation/translation.json +#: frappe/core/doctype/translation/translation.json msgid "Translation" msgstr "Terjemahan" -#: public/js/frappe/views/translation_manager.js:46 +#: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" msgstr "Terjemahan" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Trash" -msgstr "Sampah" +msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Tree" -msgstr "Pohon" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Tree" -msgstr "Pohon" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" #. Description of the 'Is Tree' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Tree structures are implemented using Nested Set" -msgstr "Struktur pohon diimplementasikan menggunakan Nested Set" +msgstr "" -#: public/js/frappe/views/treeview.js:20 +#: frappe/public/js/frappe/views/treeview.js:19 msgid "Tree view is not available for {0}" msgstr "Tampilan pohon tidak tersedia untuk {0}" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Trigger Method" -msgstr "Metode pemicu" +msgstr "" -#: public/js/frappe/ui/keyboard.js:191 +#: frappe/public/js/frappe/ui/keyboard.js:196 msgid "Trigger Primary Action" -msgstr "Trigger Primary Action" +msgstr "" -#: tests/test_translate.py:55 +#: frappe/tests/test_translate.py:55 msgid "Trigger caching" msgstr "" #. Description of the 'Trigger Method' (Data) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" -msgstr "Memicu pada metode yang valid seperti \"before_insert\", \"after_update\", dll (tergantung pada DocType yang dipilih)" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:323 +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 msgid "Try Again" msgstr "" -#. Label of a Data field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" msgstr "" -#: utils/password_strength.py:108 +#: frappe/printing/page/print/print.js:189 +#: frappe/printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 msgid "Try to avoid repeated words and characters" msgstr "Cobalah untuk menghindari kata-kata berulang dan karakter" -#: utils/password_strength.py:100 +#: frappe/utils/password_strength.py:98 msgid "Try to use a longer keyboard pattern with more turns" msgstr "Cobalah untuk menggunakan pola keyboard yang lebih lama dengan lebih banyak berubah" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Tuesday" -msgstr "Selasa" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Tuesday" -msgstr "Selasa" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Tuesday" -msgstr "Selasa" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Tuesday" -msgstr "Selasa" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Tuesday" -msgstr "Selasa" +msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication" -msgstr "Dua faktor otentikasi" +msgstr "" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Two Factor Authentication" -msgstr "Dua faktor otentikasi" - -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication method" -msgstr "Metode Two Factor Authentication" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 msgid "Type" msgstr "Jenis" -#. Label of a Data field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Type" -msgstr "Jenis" - -#: public/js/frappe/form/controls/comment.js:78 +#: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" msgstr "" -#: templates/includes/search_template.html:51 +#: frappe/templates/includes/search_template.html:51 msgid "Type something in the search box to search" msgstr "Ketik sesuatu di kotak pencarian untuk mencari" -#: templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Type title" msgstr "" -#: templates/discussions/discussions.js:341 +#: frappe/templates/discussions/discussions.js:341 msgid "Type your reply here..." msgstr "" -#: core/doctype/data_export/exporter.py:143 +#: frappe/core/doctype/data_export/exporter.py:143 msgid "Type:" msgstr "Jenis:" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "UI Tour" msgstr "" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "UI Tour" +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" msgstr "" -#. Label of a Int field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "UID" -msgstr "UID" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "UID" -msgstr "UID" - -#. Label of a Data field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "UID" -msgstr "UID" - -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "UIDNEXT" +msgstr "" -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "UIDNEXT" -msgstr "UIDNEXT" - -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" - -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" +msgstr "" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "UNSEEN" -msgstr "TAK TERLIHAT" +msgstr "" #. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "" -"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" "
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" msgstr "" -#. Label of a Small Text field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "URL" -msgstr "URL" - +#. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "URL" +msgstr "" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" -msgstr "URL untuk dokumentasi atau bantuan" +msgstr "" -#: core/doctype/file/file.py:216 +#: frappe/core/doctype/file/file.py:219 msgid "URL must start with http:// or https://" msgstr "" -#: website/doctype/web_page/web_page.js:84 +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL halaman" -#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "URL to go to on clicking the slideshow image" -msgstr "URL tujuan saat mengklik gambar slideshow" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:68 +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" msgstr "Tidak dapat menemukan DocType {0}" -#: public/js/frappe/ui/capture.js:330 +#: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." msgstr "Tidak dapat memuat kamera." -#: public/js/frappe/model/model.js:258 +#: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" msgstr "Tidak dapat beban: {0}" -#: utils/csvutils.py:35 +#: frappe/utils/csvutils.py:37 msgid "Unable to open attached file. Did you export it as CSV?" msgstr "Tidak dapat membuka file terlampir. Apakah Anda ekspor sebagai CSV?" -#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128 +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" msgstr "Tidak dapat membaca format file untuk {0}" -#: core/doctype/communication/email.py:173 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:439 +#: frappe/public/js/frappe/views/calendar/calendar.js:450 msgid "Unable to update event" msgstr "Tidak dapat memperbarui acara" -#: core/doctype/file/file.py:458 +#: frappe/core/doctype/file/file.py:464 msgid "Unable to write file format for {0}" msgstr "Tidak dapat menulis format file untuk {0}" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Unassign Condition" -msgstr "Kondisi tidak ditetapkan" +msgstr "" -#: www/error.py:15 -msgid "Uncaught Server Exception" -msgstr "Pengecualian Server Tidak Tertangkap" +#: frappe/app.py:396 +msgid "Uncaught Exception" +msgstr "" -#: public/js/frappe/form/toolbar.js:93 +#: frappe/public/js/frappe/form/toolbar.js:103 msgid "Unchanged" msgstr "Tidak berubah" -#: public/js/frappe/form/toolbar.js:450 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: public/js/frappe/form/toolbar.js:458 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Berhenti mengikuti" #. Name of a DocType -#: email/doctype/unhandled_email/unhandled_email.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" msgstr "Email Tak Tertangani" -#: public/js/frappe/views/workspace/workspace.js:556 -msgid "Unhide Workspace" +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Unique" -msgstr "Unik" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Unique" -msgstr "Unik" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Unique" -msgstr "Unik" +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "tidak diketahui" -#: public/js/frappe/model/model.js:199 +#: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" msgstr "Kolom diketahui: {0}" -#: utils/data.py:1215 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" -#: auth.py:299 +#: frappe/auth.py:316 msgid "Unknown User" msgstr "Pengguna tidak dikenal" -#: utils/csvutils.py:52 -msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252." -msgstr "Diketahui encoding berkas. Mencoba utf-8, windows-1250, windows-1252." +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" -#: core/doctype/submission_queue/submission_queue.js:7 +#: frappe/core/doctype/submission_queue/submission_queue.js:7 msgid "Unlock Reference Document" msgstr "" -#: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 +#: frappe/public/js/frappe/form/footer/form_timeline.js:632 +#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Unread" -msgstr "belum dibaca" +msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Unread Notification Sent" -msgstr "Pemberitahuan belum dibaca Sent" +msgstr "" -#: utils/safe_exec.py:438 +#: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" msgstr "" +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Unshared" -msgstr "unshared" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Unshared" -msgstr "unshared" - -#: email/queue.py:68 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Berhenti berlangganan" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Unsubscribe Method" -msgstr "Metode berhenti berlangganan" +msgstr "" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Unsubscribe Param" -msgstr "Unsubscribe Param" +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" -#: email/queue.py:126 +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Berhenti berlangganan" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" -#. Label of a Check field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" - -#: public/js/frappe/data_import/import_preview.js:72 +#: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Kolom Tanpa Judul" -#: core/doctype/file/file.js:28 +#: frappe/core/doctype/file/file.js:38 msgid "Unzip" msgstr "membuka ritsleting" -#: public/js/frappe/views/file/file_view.js:132 +#: frappe/public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" msgstr "Buka file {0}" -#: public/js/frappe/views/file/file_view.js:125 +#: frappe/public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." msgstr "Membuka ritsleting file ..." -#: desk/doctype/event/event.py:258 +#: frappe/desk/doctype/event/event.py:269 msgid "Upcoming Events for Today" msgstr "Acara Mendatang untuk Hari Ini" -#: core/doctype/data_import/data_import_list.js:40 -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 -#: custom/doctype/customize_form/customize_form.js:370 -#: desk/doctype/bulk_update/bulk_update.js:15 -#: printing/page/print_format_builder/print_format_builder.js:447 -#: printing/page/print_format_builder/print_format_builder.js:501 -#: printing/page/print_format_builder/print_format_builder.js:670 -#: printing/page/print_format_builder/print_format_builder.js:757 -#: public/js/frappe/form/grid_row.js:402 -#: public/js/frappe/views/workspace/workspace.js:647 +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" msgstr "Perbaruan" -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Update" -msgstr "Perbaruan" - -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:596 -msgid "Update Details" -msgstr "Perbarui Rincian" - #. Option for the 'Import Type' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Update Existing Records" -msgstr "Perbarui Catatan yang Ada" +msgstr "" -#. Label of a Select field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Field" -msgstr "Perbarui Kolom" +msgstr "" -#: core/doctype/installed_applications/installed_applications.js:6 -#: core/doctype/installed_applications/installed_applications.js:13 +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 msgid "Update Hooks Resolution Order" msgstr "" -#: core/doctype/installed_applications/installed_applications.js:45 +#: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" msgstr "" -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" msgstr "" -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "Perbarui Nomor Seri" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Update Settings" -msgstr "Perbarui Pengaturan" +msgstr "" -#: public/js/frappe/views/translation_manager.js:13 +#: frappe/public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" msgstr "Perbarui Terjemahan" -#. Label of a Small Text field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Value" -msgstr "Perbarui Nilai" +msgstr "" -#. Label of a Data field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Update Value" -msgstr "Perbarui Nilai" +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:310 +#: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:452 -#: public/js/frappe/web_form/web_form.js:423 -msgid "Updated" -msgstr "Diperbarui" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:427 msgid "Updated" msgstr "Diperbarui" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Updated" -msgstr "Diperbarui" - -#: desk/doctype/bulk_update/bulk_update.js:32 +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 msgid "Updated Successfully" msgstr "Berhasil Diperbarui" -#: public/js/frappe/desk.js:420 +#: frappe/public/js/frappe/desk.js:452 msgid "Updated To A New Version 🎉" msgstr "Diperbarui Ke Versi Baru 🎉" -#: public/js/frappe/list/bulk_operations.js:307 +#: frappe/public/js/frappe/list/bulk_operations.js:372 msgid "Updated successfully" msgstr "Berhasil diperbarui" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Updates" -msgstr "" - -#: utils/response.py:320 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Memperbarui" -#: public/js/frappe/form/save.js:11 +#: frappe/public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" msgid "Updating" msgstr "Memperbarui" -#: email/doctype/email_queue/email_queue.py:406 +#: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:17 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:23 +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.js:59 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" msgstr "" -#: public/js/frappe/form/toolbar.js:126 +#: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:98 +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" msgstr "Memperbarui {0}" -#: core/doctype/data_import/data_import.js:36 +#: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" msgstr "Memperbarui {0} dari {1}, {2}" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:121 -#: public/js/frappe/file_uploader/file_uploader.bundle.js:122 +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" msgstr "Mengunggah" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "Uploaded To Dropbox" -msgstr "Diunggah Ke Dropbox" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Uploaded To Google Drive" -msgstr "Diunggah ke Google Drive" +msgstr "" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json #, python-format -msgctxt "Onboarding Step" msgid "Use % for any non empty value." msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "Gunakan pengkodean ASCII untuk kata sandi" +msgstr "" -#. Label of a Check field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use IMAP" -msgstr "Gunakan IMAP" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use IMAP" -msgstr "Gunakan IMAP" +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" -#. Label of a Check field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Use POST" -msgstr "Gunakan POST" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Use Report Chart" -msgstr "Gunakan Diagram Laporan" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use SSL" -msgstr "Gunakan SSL" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use SSL" -msgstr "Gunakan SSL" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use STARTTLS" +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Use TLS" -msgstr "Gunakan TLS" - -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use TLS" -msgstr "Gunakan TLS" - -#: utils/password_strength.py:44 +#: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." msgstr "Gunakan beberapa kata, hindari frasa umum." -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Use different Email ID" msgstr "" -#: model/db_query.py:434 +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:435 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:413 +#: frappe/model/db_query.py:412 msgid "Use of sub-query or function is restricted" msgstr "Penggunaan sub-query atau fungsi dibatasi" -#: printing/page/print/print.js:272 +#: frappe/printing/page/print/print.js:279 msgid "Use the new Print Format Builder" msgstr "" #. Description of the 'Title Field' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Use this fieldname to generate title" -msgstr "Gunakan fieldname ini untuk menghasilkan judul" +msgstr "" -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" msgstr "" +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType -#: core/doctype/user/user.json -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 -#: desk/page/user_profile/user_profile_controller.js:65 -#: templates/emails/energy_points_summary.html:38 -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Assignment Rule User' -#: automation/doctype/assignment_rule_user/assignment_rule_user.json -msgctxt "Assignment Rule User" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Dashboard Settings' -#: desk/doctype/dashboard_settings/dashboard_settings.json -msgctxt "Dashboard Settings" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Log Setting User' -#: core/doctype/log_setting_user/log_setting_user.json -msgctxt "Log Setting User" -msgid "User" -msgstr "Pengguna" - -#. Linked DocType in Module Profile's connections -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Note Seen By' -#: desk/doctype/note_seen_by/note_seen_by.json -msgctxt "Note Seen By" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "User" -msgstr "pengguna" - -#. Label of a Link field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "User" -msgstr "Pengguna" - -#. Linked DocType in Role Profile's connections -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Route History' -#: desk/doctype/route_history/route_history.json -msgctxt "Route History" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "User" -msgstr "Pengguna" - +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User Permission' #. Label of a Link in the Users Workspace #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User" +#. Label of the user (Link) field in DocType 'Dashboard Settings' +#. Label of the user (Link) field in DocType 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Blogger' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Pengguna" -#. Label of a Link field in DocType 'User Group Member' -#: core/doctype/user_group_member/user_group_member.json -msgctxt "User Group Member" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the user (Link) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "User " -msgstr "Pengguna" +msgstr "" -#: core/doctype/has_role/has_role.py:24 +#: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Pengguna {0} 'sudah memiliki peran' {1} '" #. Name of a DocType -#: core/doctype/report/user_activity_report.json +#: frappe/core/doctype/report/user_activity_report.json msgid "User Activity Report" msgstr "" #. Name of a DocType -#: core/doctype/report/user_activity_report_without_sort.json +#: frappe/core/doctype/report/user_activity_report_without_sort.json msgid "User Activity Report Without Sort" msgstr "" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "User Agent" -msgstr "Agen pengguna" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Create" -msgstr "Pengguna Tidak dapat Buat" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Search" -msgstr "Pengguna tidak bisa Cari" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/public/js/frappe/desk.js:556 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "Default Pengguna" +msgstr "" -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Details" msgstr "" +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + #. Name of a DocType -#: core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "User Document Type" msgstr "" -#: core/doctype/user_type/user_type.py:97 +#: frappe/core/doctype/user_type/user_type.py:98 msgid "User Document Types Limit Exceeded" msgstr "" #. Name of a DocType -#: core/doctype/user_email/user_email.json +#: frappe/core/doctype/user_email/user_email.json msgid "User Email" msgstr "Email Pengguna" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Emails" -msgstr "Email Pengguna" - -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "User Field" -msgstr "Bidang Pengguna" +msgstr "" #. Name of a DocType -#: core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_group/user_group.json msgid "User Group" msgstr "" #. Name of a DocType -#: core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_group_member/user_group_member.json msgid "User Group Member" msgstr "" -#. Label of a Table MultiSelect field in DocType 'User Group' -#: core/doctype/user_group/user_group.json -msgctxt "User Group" +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json msgid "User Group Members" msgstr "" -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json msgid "User ID" -msgstr "ID Pengguna" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "User ID Property" -msgstr "Properti ID Pengguna" +msgstr "" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Description of a DocType +#: frappe/website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "User Id" -msgstr "Identitas pengguna" +msgstr "" -#. Label of a Select field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "User Id Field" msgstr "" -#: core/doctype/user_type/user_type.py:287 +#: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" msgstr "" -#. Label of a Attach Image field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Image" -msgstr "KOSONG" +msgstr "" -#. Label of a Data field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "User Name" -msgstr "Nama pengguna" +msgstr "" #. Name of a DocType -#: core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" msgstr "Pengguna Izin" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "User Permission" -msgstr "Pengguna Izin" - -#: public/js/frappe/views/reports/query_report.js:1772 -#: public/js/frappe/views/reports/report_view.js:1657 +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1933 +#: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Permissions Pengguna" -#: public/js/frappe/list/list_view.js:1639 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permissions Pengguna" -#. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User Permission" -msgid "User Permissions" -msgstr "Permissions Pengguna" +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:124 -msgid "User Permissions created sucessfully" -msgstr "Izin Pengguna dibuat dengan sukses" +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" -#. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgid "User Profile" -msgstr "Profil pengguna" - -#. Label of a Link field in DocType 'LDAP Group Mapping' -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json -msgctxt "LDAP Group Mapping" +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" #. Name of a DocType -#: core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" msgstr "" +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + #. Name of a DocType -#: core/doctype/user_social_login/user_social_login.json +#: frappe/core/doctype/user_social_login/user_social_login.json msgid "User Social Login" msgstr "Login Sosial Pengguna" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "User Tags" -msgstr "Pengguna Tags" - -#. Name of a DocType -#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82 -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User Type" -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Name of a DocType -#: core/doctype/user_type_module/user_type_module.json -msgid "User Type Module" msgstr "" -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "Tipe Pengguna" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json msgid "User Type Module" msgstr "" #. Description of the 'Allow Login using Mobile Number' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or Mobile number" -msgstr "Pengguna dapat login menggunakan id email atau nomor ponsel" +msgstr "" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or User Name" -msgstr "Pengguna bisa login menggunakan ID Email atau User Name" +msgstr "" -#: desk/page/user_profile/user_profile_controller.js:26 -msgid "User does not exist" -msgstr "pengguna tidak ada" +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" -#: core/doctype/user_type/user_type.py:82 +#: frappe/core/doctype/user_type/user_type.py:83 msgid "User does not have permission to create the new {0}" msgstr "" -#: core/doctype/docshare/docshare.py:55 +#: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Pengguna wajib untuk Berbagi" -#. Label of a Check field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "User must always select" -msgstr "Pengguna harus selalu pilih" +msgstr "" -#: model/delete_doc.py:224 -msgid "User not allowed to delete {0}: {1}" -msgstr "Pengguna tidak diperbolehkan untuk menghapus {0}: {1}" - -#: core/doctype/user_permission/user_permission.py:59 +#: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" msgstr "Izin pengguna sudah ada" -#: www/login.py:153 +#: frappe/www/login.py:171 msgid "User with email address {0} does not exist" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:224 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:504 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Pengguna {0} tidak dapat dihapus" -#: core/doctype/user/user.py:242 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Pengguna {0} tidak dapat dinonaktifkan" -#: core/doctype/user/user.py:564 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Pengguna {0} tidak dapat diganti" -#: permissions.py:139 +#: frappe/permissions.py:139 msgid "User {0} does not have access to this document" msgstr "Pengguna {0} tidak memiliki akses ke dokumen ini" -#: permissions.py:162 +#: frappe/permissions.py:162 msgid "User {0} does not have doctype access via role permission for document {1}" msgstr "Pengguna {0} tidak memiliki akses doctype melalui izin peran untuk dokumen {1}" -#: templates/emails/data_deletion_approval.html:1 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108 +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 msgid "User {0} has requested for data deletion" msgstr "Pengguna {0} telah meminta penghapusan data" -#: utils/oauth.py:272 +#: frappe/core/doctype/user/user.py:1375 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 msgid "User {0} is disabled" msgstr "Pengguna {0} dinonaktifkan" -#: desk/form/assign_to.py:101 +#: frappe/sessions.py:242 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 msgid "User {0} is not permitted to access this document." msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Userinfo URI" msgstr "" -#: www/login.py:99 +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 msgid "Username" msgstr "Nama pengguna" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Username" -msgstr "Nama pengguna" - -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" -msgid "Username" -msgstr "Nama pengguna" - -#: core/doctype/user/user.py:644 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Nama pengguna {0} sudah ada" +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' #. Name of a Workspace #. Label of a Card Break in the Users Workspace -#: core/workspace/users/users.json +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Users" msgstr "Pengguna" -#. Label of a Table MultiSelect field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Users" -msgstr "Pengguna" +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" -#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType -#. 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Users assigned to the reference document will get points." -msgstr "Pengguna yang ditugaskan ke dokumen referensi akan mendapatkan poin." - -#: core/page/permission_manager/permission_manager.js:345 +#: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" msgstr "Pengguna dengan peran {0}:" -#: public/js/frappe/ui/theme_switcher.js:70 +#: frappe/public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" msgstr "" -#: public/js/frappe/desk.js:112 +#: frappe/public/js/frappe/desk.js:154 msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." msgstr "Menggunakan konsol ini dapat memungkinkan penyerang meniru identitas Anda dan mencuri informasi Anda. Jangan masukkan atau tempel kode yang tidak Anda mengerti." -#. Label of a Percent field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Utilization %" msgstr "" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Valid" -msgstr "Sah" +msgstr "" -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Validate Field" -msgstr "Validasi Field" +msgstr "" -#: public/js/frappe/web_form/web_form.js:356 +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:360 msgid "Validation Error" msgstr "Kesalahan Validasi" -#. Label of a Select field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Validity" -msgstr "Keabsahan" +msgstr "" -#: email/doctype/auto_email_report/auto_email_report.js:92 -#: public/js/frappe/list/bulk_operations.js:271 -#: public/js/frappe/list/bulk_operations.js:333 +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Value" msgstr "Nilai" -#. Label of a Text field in DocType 'DefaultValue' -#: core/doctype/defaultvalue/defaultvalue.json -msgctxt "DefaultValue" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Query Parameters' -#: integrations/doctype/query_parameters/query_parameters.json -msgctxt "Query Parameters" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" -msgid "Value" -msgstr "Nilai" - -#. Label of a Small Text field in DocType 'Webhook Header' -#: integrations/doctype/webhook_header/webhook_header.json -msgctxt "Webhook Header" -msgid "Value" -msgstr "Nilai" - -#. Label of a Text field in DocType 'Website Meta Tag' -#: website/doctype/website_meta_tag/website_meta_tag.json -msgctxt "Website Meta Tag" -msgid "Value" -msgstr "Nilai" - -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Value Based On" -msgstr "Nilai Berdasarkan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Value Change" -msgstr "Nilai Perubahan" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Value Change" -msgstr "Nilai Perubahan" +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Value Changed" -msgstr "Nilai Berubah" +msgstr "" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Value To Be Set" -msgstr "Nilai yang Akan Ditetapkan" +msgstr "" -#: model/base_document.py:930 model/document.py:648 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Nilai tidak dapat diubah untuk {0}" -#: model/document.py:593 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Nilai tidak boleh negatif untuk" -#: model/document.py:597 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Nilai tidak boleh negatif untuk {0}: {1}" -#: custom/doctype/property_setter/property_setter.js:7 +#: frappe/custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1" -#: custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:611 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Nilai untuk bidang {0} terlalu panjang di {1}. Panjang harus kurang dari {2} karakter" -#: model/base_document.py:360 +#: frappe/model/base_document.py:445 msgid "Value for {0} cannot be a list" msgstr "Nilai untuk {0} tidak bisa daftar" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Value from this field will be set as the due date in the ToDo" -msgstr "Nilai dari bidang ini akan ditetapkan sebagai tanggal jatuh tempo di ToDo" +msgstr "" -#: model/base_document.py:712 -msgid "Value missing for" -msgstr "Nilai hilang untuk" - -#: core/doctype/data_import/importer.py:698 +#: frappe/core/doctype/data_import/importer.py:714 msgid "Value must be one of {0}" msgstr "Nilai harus salah satu dari {0}" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Value to Validate" -msgstr "Nilai untuk Divalidasi" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" -#: model/base_document.py:997 +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1124 msgid "Value too big" msgstr "Nilai terlalu besar" -#: core/doctype/data_import/importer.py:711 +#: frappe/core/doctype/data_import/importer.py:727 msgid "Value {0} missing for {1}" msgstr "Nilai {0} hilang untuk {1}" -#: core/doctype/data_import/importer.py:742 utils/data.py:877 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Nilai {0} harus dalam format durasi yang valid: dhms" -#: core/doctype/data_import/importer.py:729 +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 msgid "Value {0} must in {1} format" msgstr "Nilai {0} harus dalam format {1}" +#: frappe/core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "Nilai Berubah" + #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Verdana" -msgstr "Verdana" +msgstr "" -#: twofactor.py:362 -msgid "Verfication Code" -msgstr "Kode Verifikasi" +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" -#: templates/emails/delete_data_confirmation.html:10 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 msgid "Verification Link" msgstr "Tautan verifikasi" -#: twofactor.py:251 +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." msgstr "Kode verifikasi telah dikirim ke alamat email Anda yang terdaftar." #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "Diverifikasi" +msgstr "" -#: public/js/frappe/ui/messages.js:352 +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 msgid "Verify" msgstr "Memeriksa" -#: public/js/frappe/ui/messages.js:351 +#: frappe/public/js/frappe/ui/messages.js:358 msgid "Verify Password" msgstr "Verifikasi Kata Sandi" +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + #. Name of a DocType -#: core/doctype/version/version.json +#: frappe/core/doctype/version/version.json msgid "Version" msgstr "Versi" -#: public/js/frappe/desk.js:131 +#: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" msgstr "Versi Diperbarui" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Video URL" -msgstr "URL Video" - -#. Label of a Select field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "View" msgstr "" -#: core/doctype/success_action/success_action.js:58 -#: public/js/frappe/form/success_action.js:89 +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "Melihat" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 msgid "View All" msgstr "Lihat semua" -#: public/js/frappe/form/toolbar.js:507 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" -#: templates/includes/likes/likes.py:34 +#: frappe/templates/includes/likes/likes.py:34 msgid "View Blog Post" msgstr "" -#: templates/includes/comments/comments.py:58 +#: frappe/templates/includes/comments/comments.py:56 msgid "View Comment" msgstr "Lihat Komentar" -#: public/js/frappe/views/treeview.js:467 +#: frappe/core/doctype/user/user.js:151 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Lihat Daftar" #. Name of a DocType -#: core/doctype/view_log/view_log.json +#: frappe/core/doctype/view_log/view_log.json msgid "View Log" msgstr "Melihat log" -#: core/doctype/user/user.js:133 -#: core/doctype/user_permission/user_permission.js:24 +#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Lihat Dokumen yang Diizinkan" -#. Label of a Button field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "View Properties (via Customize Form)" -msgstr "Listing (melalui Customize Form)" - -#: social/doctype/energy_point_log/energy_point_log_list.js:20 -msgid "View Ref" -msgstr "Lihat referensi" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "View Report" -msgstr "Melihat laporan" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "View Settings" -msgstr "Lihat Pengaturan" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "View Settings" -msgstr "Lihat Pengaturan" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "View Switcher" msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py website/doctype/website_settings/website_settings.js:16 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 msgid "View Website" msgstr "Lihat Situs Web" -#: www/confirm_workflow_action.html:12 +#: frappe/www/confirm_workflow_action.html:12 msgid "View document" msgstr "Lihat dokumen" -#: core/doctype/file/file.js:31 -msgid "View file" -msgstr "" - -#: templates/emails/auto_email_report.html:60 +#: frappe/templates/emails/auto_email_report.html:60 msgid "View report in your browser" msgstr "Lihat laporan di browser Anda" -#: templates/emails/print_link.html:2 +#: frappe/templates/emails/print_link.html:2 msgid "View this in your browser" msgstr "Lihat ini dalam browser Anda" -#: automation/doctype/auto_repeat/auto_repeat.js:43 -#: desk/doctype/calendar_view/calendar_view_list.js:10 -#: desk/doctype/dashboard/dashboard_list.js:10 +#: frappe/public/js/frappe/web_form/web_form.js:454 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" msgstr "Lihat {0}" -#. Label of a Data field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json msgid "Viewed By" -msgstr "Dilihat oleh" - -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Views" msgstr "" #. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "Tampilan" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Virtual" msgstr "" -#: model/virtual_doctype.py:78 +#: frappe/model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" msgstr "" -#: model/virtual_doctype.py:91 +#: frappe/model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Visibility" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Visit" -msgstr "Kunjungan" +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" -#: website/doctype/website_route_meta/website_route_meta.js:7 +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" msgstr "Kunjungi Halaman Web" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Visitor ID" msgstr "" -#: templates/discussions/reply_section.html:38 +#: frappe/templates/discussions/reply_section.html:39 msgid "Want to discuss?" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Warehouse" msgstr "Gudang" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Peringatan" -#: public/js/frappe/model/meta.js:179 +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1125 +msgid "Warning: Naming is not set" +msgstr "" + +#: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" msgstr "Peringatan: Tidak dapat menemukan {0} dalam tabel mana pun yang terkait dengan {1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" msgstr "" -#: website/doctype/help_article/templates/help_article.html:24 +#: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" msgstr "Apakah artikel ini berguna?" -#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Watch Video" -msgstr "Menonton video" +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" -#: desk/doctype/workspace/workspace.js:38 +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" msgstr "" -#: templates/emails/delete_data_confirmation.html:2 +#: frappe/templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" msgstr "Kami telah menerima permintaan penghapusan {0} data yang terkait dengan: {1}" -#: templates/emails/download_data.html:2 +#: frappe/templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "Kami telah menerima permintaan dari Anda untuk mengunduh {0} data Anda yang terkait dengan: {1}" -#: public/js/frappe/form/controls/password.js:88 +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 msgid "Weak" msgstr "" #. Name of a DocType -#: website/doctype/web_form/web_form.json -msgid "Web Form" -msgstr "Formulir web" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Web Form" -msgstr "Formulir web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Form" -msgstr "Formulir web" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json msgid "Web Form" msgstr "Formulir web" #. Name of a DocType -#: website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Web Form Field" msgstr "Formulir web Lapangan" -#. Label of a Table field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Web Form Fields" -msgstr "Formulir web Fields" +msgstr "" #. Name of a DocType -#: website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Web Form List Column" msgstr "" #. Name of a DocType -#: website/doctype/web_page/web_page.json -msgid "Web Page" -msgstr "Halaman web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Page" -msgstr "Halaman web" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json msgid "Web Page" msgstr "Halaman web" #. Name of a DocType -#: website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" msgstr "Blok Halaman Web" -#: public/js/frappe/utils/utils.js:1697 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" #. Name of a DocType -#: website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Web Page View" msgstr "Tampilan Halaman Web" #. Label of a Card Break in the Website Workspace -#: website/workspace/website/website.json +#: frappe/website/workspace/website/website.json msgid "Web Site" msgstr "Situs web" +#. Label of the web_template (Link) field in DocType 'Web Page Block' #. Name of a DocType -#: website/doctype/web_template/web_template.json -msgid "Web Template" -msgstr "Template Web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Template" -msgstr "Template Web" - -#. Label of a Link field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json msgid "Web Template" msgstr "Template Web" #. Name of a DocType -#: website/doctype/web_template_field/web_template_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Web Template Field" msgstr "Bidang Template Web" -#. Label of a Code field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Template Values" -msgstr "Nilai Template Web" +msgstr "" -#: utils/jinja_globals.py:48 +#: frappe/utils/jinja_globals.py:48 msgid "Web Template is not specified" msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Web View" -msgstr "web View" +msgstr "" #. Name of a DocType -#: integrations/doctype/webhook/webhook.json -msgid "Webhook" -msgstr "Webhook" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Webhook" -msgstr "Webhook" - +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Webhook" +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Webhook" -msgstr "Webhook" - -#. Label of a Link field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Webhook" -msgstr "Webhook" +msgstr "" +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' #. Name of a DocType -#: integrations/doctype/webhook_data/webhook_data.json -msgid "Webhook Data" -msgstr "Data Webhook" - -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json msgid "Webhook Data" msgstr "Data Webhook" #. Name of a DocType -#: integrations/doctype/webhook_header/webhook_header.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" msgstr "Header Webhook" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Headers" -msgstr "Header Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Request" -msgstr "Permintaan Webhook" +msgstr "" +#. Label of a Link in the Build Workspace #. Name of a DocType -#: integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" msgstr "" -#. Linked DocType in Webhook's connections -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Webhook Request Log" -msgstr "" - -#. Label of a Password field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Secret" -msgstr "Rahasia Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Security" -msgstr "Keamanan Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "Webhook Trigger" +msgstr "" -#. Label of a Data field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Webhook URL" -msgstr "URL Webhook" - -#. Name of a Workspace -#: email/doctype/newsletter/newsletter.py:451 -#: website/workspace/website/website.json -msgid "Website" -msgstr "Situs Web" +msgstr "" #. Group in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/website/workspace/website/website.json msgid "Website" msgstr "Situs Web" #. Name of a report -#: website/report/website_analytics/website_analytics.json +#: frappe/website/report/website_analytics/website_analytics.json msgid "Website Analytics" msgstr "Analisis Situs Web" #. Name of a role -#: core/doctype/comment/comment.json -#: website/doctype/about_us_settings/about_us_settings.json -#: website/doctype/blog_category/blog_category.json -#: website/doctype/blog_post/blog_post.json -#: website/doctype/blog_settings/blog_settings.json -#: website/doctype/blogger/blogger.json website/doctype/color/color.json -#: website/doctype/contact_us_settings/contact_us_settings.json -#: website/doctype/help_category/help_category.json -#: website/doctype/portal_settings/portal_settings.json -#: website/doctype/web_form/web_form.json -#: website/doctype/web_page/web_page.json -#: website/doctype/website_script/website_script.json -#: website/doctype/website_settings/website_settings.json -#: website/doctype/website_sidebar/website_sidebar.json -#: website/doctype/website_slideshow/website_slideshow.json -#: website/doctype/website_theme/website_theme.json +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Website Manager" -msgstr "Website Manager" +msgstr "" #. Name of a DocType -#: website/doctype/website_meta_tag/website_meta_tag.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" msgstr "Meta Tag situs web" #. Name of a DocType -#: website/doctype/website_route_meta/website_route_meta.json -msgid "Website Route Meta" -msgstr "Rute Situs Web Meta" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Route Meta" +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json msgid "Website Route Meta" msgstr "Rute Situs Web Meta" #. Name of a DocType -#: website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" msgstr "Pengalihan Rute Situs Web" #. Name of a DocType -#: website/doctype/website_script/website_script.json -msgid "Website Script" -msgstr "Script Website" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Script" +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json msgid "Website Script" msgstr "Script Website" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Website Search Field" msgstr "" -#: core/doctype/doctype/doctype.py:1473 +#: frappe/core/doctype/doctype/doctype.py:1522 msgid "Website Search Field must be a valid fieldname" msgstr "" #. Name of a DocType -#: website/doctype/website_settings/website_settings.json -msgid "Website Settings" -msgstr "Pengaturan situs web" - #. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json msgid "Website Settings" msgstr "Pengaturan situs web" +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' #. Name of a DocType -#: website/doctype/website_sidebar/website_sidebar.json -msgid "Website Sidebar" -msgstr "Sidebar situs" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Website Sidebar" -msgstr "Sidebar situs" - -#. Label of a Link field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Website Sidebar" -msgstr "Sidebar situs" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Sidebar" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json msgid "Website Sidebar" msgstr "Sidebar situs" #. Name of a DocType -#: website/doctype/website_sidebar_item/website_sidebar_item.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" msgstr "Website Barang Sidebar" #. Name of a DocType -#: website/doctype/website_slideshow/website_slideshow.json -msgid "Website Slideshow" -msgstr "Situs Slideshow" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json msgid "Website Slideshow" msgstr "Situs Slideshow" #. Name of a DocType -#: website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" msgstr "Situs web Slideshow Barang" +#. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType -#: website/doctype/website_theme/website_theme.json -msgid "Website Theme" -msgstr "Situs Tema" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Website Theme" -msgstr "Situs Tema" - -#. Label of a Link field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Website Theme" -msgstr "Situs Tema" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Theme" +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json msgid "Website Theme" msgstr "Situs Tema" #. Name of a DocType -#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" msgstr "Tema Situs Web Abaikan Aplikasi" -#. Label of a Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme Image" -msgstr "Situs Tema Gambar" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme image link" msgstr "" +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Wednesday" -msgstr "Rabu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Wednesday" -msgstr "Rabu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Wednesday" -msgstr "Rabu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Wednesday" -msgstr "Rabu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Wednesday" -msgstr "Rabu" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:269 +#: frappe/public/js/frappe/views/calendar/calendar.js:276 msgid "Week" msgstr "Minggu" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Weekdays" -msgstr "Hari kerja" - -#: public/js/frappe/utils/common.js:399 -#: website/report/website_analytics/website_analytics.js:24 -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Weekly" -msgstr "Mingguan" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox -#. Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 msgid "Weekly" msgstr "Mingguan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Weekly Long" -msgstr "Panjang Mingguan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Weekly Long" -msgstr "Panjang Mingguan" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:372 +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 msgid "Welcome" msgstr "" -#. Label of a Link field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json msgid "Welcome Email Template" -msgstr "Template Email Selamat Datang" +msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Welcome Email Template" -msgstr "Template Email Selamat Datang" - -#. Label of a Data field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" msgstr "" #. Name of a Workspace -#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468 +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:361 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Email Selamat Datang telah dikirim" -#: core/doctype/user/user.py:436 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Selamat Datang di {0}" +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "Ketika diaktifkan ini akan memungkinkan para tamu untuk mengunggah file ke aplikasi Anda, Anda dapat mengaktifkan ini jika Anda ingin mengumpulkan file dari pengguna tanpa harus mereka masuk, misalnya dalam formulir web aplikasi pekerjaan." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:440 -msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?" +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 msgid "Which view of the associated DocType should this shortcut take you to?" msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 msgid "Width" -msgstr "Lebar" +msgstr "" -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Width" -msgstr "Lebar" +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" -msgid "Width" -msgstr "Lebar" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Width" -msgstr "Lebar" - -#. Label of a Int field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Width" -msgstr "Lebar" - -#. Label of a Check field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json msgid "Wildcard Filter" -msgstr "Filter Karakter Pengganti" +msgstr "" #. Description of the 'Wildcard Filter' (Check) field in DocType 'Report #. Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#: frappe/core/doctype/report_filter/report_filter.json msgid "Will add \"%\" before and after the query" msgstr "" #. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#: frappe/website/doctype/blogger/blogger.json msgid "Will be used in url (usually first name)." -msgstr "Akan digunakan dalam url (biasanya nama depan)." +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:470 +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Akan menjadi ID login anda" -#: printing/page/print_format_builder/print_format_builder.js:424 +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" msgstr "Hanya akan ditampilkan jika judul bagian diaktifkan" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0." -msgstr "Akan menjalankan pekerjaan terjadwal hanya sekali sehari untuk situs tidak aktif. Default 4 hari jika diatur ke 0." +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" -#: public/js/frappe/form/print_utils.js:13 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Dengan kepala Surat" -#: workflow/doctype/workflow/workflow.js:140 -msgid "Worflow States Don't Exist" -msgstr "Status Worflow Tidak Ada" - -#. Label of a Section Break field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" msgstr "" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" msgstr "" -#. Name of a DocType -#: workflow/doctype/workflow/workflow.json -msgid "Workflow" -msgstr "Alur Kerja" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Workflow" -msgstr "Alur Kerja" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Workflow" -msgstr "Alur Kerja" - #. Group in DocType's connections -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Workflow" -msgstr "Alur Kerja" - -#. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Workflow" +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow" msgstr "Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_action/workflow_action.json -#: workflow/doctype/workflow_action/workflow_action.py:486 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" msgstr "Tindakan Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_action_master/workflow_action_master.json +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "Induk Tindakan Alur Kerja" -#. Label of a Data field in DocType 'Workflow Action Master' -#: workflow/doctype/workflow_action_master/workflow_action_master.json -msgctxt "Workflow Action Master" +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Name" -msgstr "Nama Tindakan Alur Kerja" +msgstr "" #. Name of a DocType -#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" msgstr "" #. Description of the 'Is Optional State' (Check) field in DocType 'Workflow #. Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Action is not created for optional states" -msgstr "Tindakan Alur Kerja tidak dibuat untuk status opsional" +msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:4 +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" msgstr "" -#. Label of a Data field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Builder ID" msgstr "" -#. Label of a Data field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Workflow Builder ID" -msgstr "" - -#: workflow/doctype/workflow/workflow.js:11 +#: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." msgstr "" -#. Label of a JSON field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" msgstr "" +#: frappe/public/js/workflow_builder/components/Properties.vue:42 +msgid "Workflow Details" +msgstr "" + #. Name of a DocType -#: workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" msgstr "Status Dokumen Alur Kerja" -#. Label of a Data field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" -msgstr "Nama Alur Kerja" +msgstr "" +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' #. Name of a DocType -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow State" msgstr "Status Alur Kerja" -#. Label of a Data field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Workflow State" -msgstr "Status Alur Kerja" - -#. Label of a Data field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow State Field" -msgstr "Kolom Status Alur Kerja" +msgstr "" -#: model/workflow.py:63 +#: frappe/model/workflow.py:61 msgid "Workflow State not set" msgstr "Negara Alur Kerja tidak diatur" -#: model/workflow.py:201 model/workflow.py:209 +#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}" -#: model/workflow.py:327 +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:328 msgid "Workflow Status" msgstr "Status Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Transisi Alur Kerja" -#. Description of the Onboarding Step 'Setup Approval Workflows' -#: custom/onboarding_step/workflows/workflows.json -msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." msgstr "" -#. Name of a DocType -#: desk/doctype/workspace/workspace.json -#: public/js/frappe/ui/toolbar/search_utils.js:541 -#: public/js/frappe/views/workspace/workspace.js:10 -msgid "Workspace" -msgstr "" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Workspace" +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" msgstr "" +#. Label of the workspace_section (Section Break) field in DocType 'User' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Workspace" +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: public/js/frappe/router.js:194 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json msgid "Workspace Chart" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Workspace Link" msgstr "" #. Name of a role -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Manager" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Workspace Number Card" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Workspace Quick List" msgstr "" +#. Label of a standard navbar item +#. Type: Action #. Name of a DocType -#: desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Workspace Shortcut" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1265 -msgid "Workspace {0} Created Successfully" +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:894 -msgid "Workspace {0} Deleted Successfully" -msgstr "" - -#: public/js/frappe/views/workspace/workspace.js:672 -msgid "Workspace {0} Edited Successfully" +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Workspaces" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Write" -msgstr "Menulis" +#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Write" -msgstr "Menulis" +#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Write" -msgstr "Menulis" +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "Membungkus" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "Menulis" +msgstr "" -#: model/base_document.py:840 +#: frappe/model/base_document.py:954 msgid "Wrong Fetch From value" msgstr "Nilai Ambil Dari Salah" -#: public/js/frappe/views/reports/report_view.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:490 msgid "X Axis Field" msgstr "Bidang Axis X" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "X Field" -msgstr "X Field" +msgstr "" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "XLSX" -msgstr "XLSX" +msgstr "" -#. Label of a Table field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" -msgstr "Y Axis" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:471 +#: frappe/public/js/frappe/views/reports/report_view.js:497 msgid "Y Axis Fields" msgstr "Bidang Sumbu Y" -#: public/js/frappe/views/reports/query_report.js:1132 +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" -msgstr "Y Field" - -#. Label of a Select field in DocType 'Dashboard Chart Field' -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json -msgctxt "Dashboard Chart Field" -msgid "Y Field" -msgstr "Y Field" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Yahoo Mail" -msgstr "Surat Yahoo" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "Yandex.Mail" +msgstr "" -#. Label of a Data field in DocType 'Company History' -#: website/doctype/company_history/company_history.json -msgctxt "Company History" +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json msgid "Year" msgstr "Tahun" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Year" -msgstr "Tahun" - -#: public/js/frappe/utils/common.js:403 -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 msgid "Yearly" msgstr "Tahunan" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Yellow" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Yellow" msgstr "" -#: integrations/doctype/webhook/webhook.py:127 -#: integrations/doctype/webhook/webhook.py:137 -#: public/js/form_builder/utils.js:336 -#: public/js/frappe/form/controls/link.js:471 -#: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 -#: website/doctype/help_article/templates/help_article.html:25 +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:92 +#: frappe/email/doctype/notification/notification.py:96 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:121 +#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:336 +#: frappe/public/js/frappe/form/controls/link.js:494 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ya" -#: public/js/frappe/ui/messages.js:32 +#: frappe/public/js/frappe/ui/messages.js:32 msgctxt "Approve confirmation dialog" msgid "Yes" msgstr "Ya" -#: public/js/frappe/ui/filters/filter.js:500 +#: frappe/public/js/frappe/ui/filters/filter.js:545 msgctxt "Checkbox is checked" msgid "Yes" msgstr "Ya" -#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP -#. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Yes" -msgstr "Ya" +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "" -#. Option for the 'Standard' (Select) field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Yes" -msgstr "Ya" - -#. Option for the 'Standard' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Yes" -msgstr "Ya" - -#. Option for the 'Is Standard' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Yes" -msgstr "Ya" - -#: public/js/frappe/utils/user.js:33 +#: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." msgid "You" msgstr "Anda" -#: public/js/frappe/form/footer/form_timeline.js:462 +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 msgid "You Liked" msgstr "" -#: public/js/frappe/dom.js:425 +#: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Anda terhubung ke internet." -#: permissions.py:417 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3}" -#: permissions.py:406 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" -#: public/js/frappe/views/kanban/kanban_board.bundle.js:69 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" msgstr "Anda tidak diizinkan untuk membuat kolom" -#: core/doctype/report/report.py:93 +#: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "Anda tidak diizinkan untuk menghapus Laporan Standar" -#: website/doctype/website_theme/website_theme.py:74 +#: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" msgstr "Anda tidak diizinkan menghapus Tema Website standar" -#: core/doctype/report/report.py:380 +#: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." msgstr "" -#: permissions.py:614 +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Anda tidak diizinkan mengekspor {} doctype" -#: public/js/frappe/views/treeview.js:431 +#: frappe/public/js/frappe/views/treeview.js:448 msgid "You are not allowed to print this report" msgstr "Anda tidak diizinkan untuk mencetak laporan ini" -#: public/js/frappe/views/communication.js:673 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini" -#: website/doctype/web_form/web_form.py:463 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini" -#: public/js/frappe/request.js:35 +#: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." msgstr "Anda tidak terhubung ke Internet. Coba lagi setelah beberapa saat." -#: public/js/frappe/web_form/webform_script.js:22 +#: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." msgstr "" -#: www/app.py:25 +#: frappe/www/app.py:27 msgid "You are not permitted to access this page." msgstr "Anda tidak diizinkan mengakses halaman ini." -#: __init__.py:834 -msgid "You are not permitted to access this resource." +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" msgstr "" -#: public/js/frappe/form/sidebar/document_follow.js:131 +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Anda sekarang mengikuti dokumen ini. Anda akan menerima pembaruan harian melalui email. Anda dapat mengubahnya di Pengaturan Pengguna." -#: core/doctype/installed_applications/installed_applications.py:59 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" -#: email/doctype/email_account/email_account.js:221 +#: frappe/email/doctype/email_account/email_account.js:284 msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:413 +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "You attached {0}" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:741 +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 msgid "You can add dynamic properties from the document by using Jinja templating." msgstr "Anda dapat menambahkan properti dinamis dari dokumen dengan menggunakan template Jinja." -#: templates/emails/new_user.html:22 +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 msgid "You can also copy-paste following link in your browser" msgstr "" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid "You can also copy-paste this " msgstr "Anda juga dapat menyalin-menempel ini" -#: templates/emails/delete_data_confirmation.html:11 +#: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Anda juga dapat menyalin-menempel ini {0} ke peramban Anda" -#: public/js/frappe/logtypes.js:21 +#: frappe/core/page/permission_manager/permission_manager_help.html:17 +msgid "You can change Submitted documents by cancelling them and then, amending them." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:199 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/file/file.py:684 +#: frappe/model/delete_doc.py:137 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:736 msgid "You can increase the limit from System Settings." msgstr "" -#: utils/synchronization.py:48 +#: frappe/utils/synchronization.py:48 msgid "You can manually remove the lock if you think it's safe: {}" msgstr "" -#: public/js/frappe/form/controls/markdown_editor.js:74 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" msgstr "" -#: core/doctype/user_type/user_type.py:103 +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: handler.py:226 -msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents." +#: frappe/handler.py:182 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" -#: core/doctype/data_export/exporter.py:201 +#: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" msgstr "Anda hanya dapat mengunggah hingga 5000 data sekaligus. (Mungkin kurang dalam beberapa kasus)" -#: desk/query_report.py:336 +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Anda dapat mencoba mengubah filter laporan Anda." -#: public/js/frappe/form/link_selector.js:30 +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" msgstr "" -#: custom/doctype/customize_form/customize_form.py:387 +#: frappe/custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Options' for field {0}" msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}" -#: custom/doctype/customize_form/customize_form.py:391 +#: frappe/custom/doctype/customize_form/customize_form.py:393 msgid "You can't set 'Translatable' for field {0}" msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:74 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" msgid "You cancelled this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:61 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 msgctxt "Form timeline" msgid "You cancelled this document {1}" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:417 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes" -#: social/doctype/energy_point_log/energy_point_log.py:44 -msgid "You cannot give review points to yourself" -msgstr "Anda tidak dapat memberikan poin ulasan untuk diri sendiri" - -#: custom/doctype/customize_form/customize_form.py:383 +#: frappe/custom/doctype/customize_form/customize_form.py:385 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:121 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:110 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:183 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:172 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:442 +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "You changed {0} to {1}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:138 -#: public/js/frappe/form/sidebar/form_sidebar.js:106 +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 msgid "You created this" msgstr "" -#: client.py:430 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" msgstr "" -#: public/js/frappe/request.js:174 +#: frappe/public/js/frappe/request.js:177 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Anda tidak memiliki izin yang cukup untuk mengakses sumber ini. Silahkan hubungi manajer Anda untuk mendapatkan akses." -#: app.py:355 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan" -#: public/js/frappe/form/sidebar/review.js:91 -msgid "You do not have enough points" -msgstr "Anda tidak memiliki poin yang cukup" - -#: social/doctype/energy_point_log/energy_point_log.py:296 -msgid "You do not have enough review points" -msgstr "Anda tidak memiliki poin ulasan yang cukup" - -#: www/printview.py:369 -msgid "You do not have permission to view this document" +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" msgstr "" -#: public/js/frappe/form/form.js:979 +#: frappe/desk/query_report.py:873 +msgid "You do not have permission to access {0}: {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan." -#: desk/query_report.py:39 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Anda tidak memiliki akses ke Laporan: {0}" -#: website/doctype/web_form/web_form.py:699 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: utils/response.py:278 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Anda tidak memiliki izin untuk mengakses file ini" -#: desk/query_report.py:45 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Anda tidak memiliki izin untuk mendapatkan laporan tentang: {0}" -#: website/doctype/web_form/web_form.py:167 +#: frappe/website/doctype/web_form/web_form.py:172 msgid "You don't have the permissions to access this document" msgstr "Anda tidak memiliki izin untuk mengakses dokumen ini" -#: social/doctype/energy_point_log/energy_point_log.py:156 -msgid "You gained {0} point" -msgstr "Anda mendapatkan poin {0}" - -#: social/doctype/energy_point_log/energy_point_log.py:158 -msgid "You gained {0} points" -msgstr "Anda mendapatkan {0} poin" - -#: templates/emails/new_message.html:1 +#: frappe/templates/emails/new_message.html:1 msgid "You have a new message from: " msgstr "Anda memiliki pesan baru dari:" -#: handler.py:123 +#: frappe/handler.py:118 msgid "You have been successfully logged out" msgstr "Anda telah berhasil keluar" -#: custom/doctype/customize_form/customize_form.py:240 +#: frappe/custom/doctype/customize_form/customize_form.py:244 msgid "You have hit the row size limit on database table: {0}" msgstr "" -#: public/js/frappe/list/bulk_operations.js:347 +#: frappe/public/js/frappe/list/bulk_operations.js:412 msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: templates/includes/likes/likes.py:31 +#: frappe/templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" msgstr "" -#: twofactor.py:455 +#: frappe/twofactor.py:432 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" -#: public/js/frappe/model/create_new.js:332 +#: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." msgstr "Anda belum menyimpan perubahan pada formulir ini. Silakan simpan sebelum Anda melanjutkan." -#: core/doctype/log_settings/log_settings.py:127 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" msgstr "Anda memiliki {0} yang tak terlihat" -#: public/js/frappe/list/list_view.js:468 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:498 msgid "You haven't created a {0} yet" msgstr "" -#: rate_limiter.py:150 +#: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:149 -#: public/js/frappe/form/sidebar/form_sidebar.js:95 +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 msgid "You last edited this" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:308 +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." msgstr "" -#: website/doctype/web_form/web_form.py:669 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: website/doctype/web_form/web_form.py:503 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Anda harus login untuk mengirimkan formulir ini" -#: desk/doctype/workspace/workspace.py:69 +#: frappe/model/document.py:358 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" msgstr "" -#: website/doctype/web_form/web_form.py:90 +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Anda perlu berada dalam mode developer untuk mengedit Formulir Web Standar" -#: utils/response.py:259 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up." -#: www/me.py:13 www/third_party_apps.py:10 +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 msgid "You need to be logged in to access this page" msgstr "Anda harus login untuk mengakses halaman ini" -#: website/doctype/web_form/web_form.py:158 +#: frappe/website/doctype/web_form/web_form.py:161 msgid "You need to be logged in to access this {0}." msgstr "Anda harus login untuk mengakses ini {0}." -#: www/login.html:73 +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first: " +msgstr "" + +#: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." msgstr "Anda harus mengaktifkan JavaScript agar aplikasi Anda berfungsi." -#: core/doctype/docshare/docshare.py:62 +#: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" msgstr "Anda harus memiliki izin \"Berbagi\"" -#: utils/print_format.py:156 +#: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" msgstr "Anda harus menginstal pycup untuk menggunakan fitur ini!" -#: email/doctype/email_account/email_account.py:140 +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 msgid "You need to set one IMAP folder for {0}" msgstr "" -#: model/rename_doc.py:385 -msgid "You need write permission to rename" -msgstr "Anda memerlukan izin tulis untuk mengubah nama" +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" -#: client.py:458 +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:418 +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:525 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Tampaknya Anda baik untuk pergi!" -#: public/js/frappe/list/bulk_operations.js:29 +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 msgid "You selected Draft or Cancelled documents" msgstr "Anda memilih dokumen yang masih bersifat Rancangan atau yang telah Dibatalkan" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:48 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" msgid "You submitted this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:35 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 msgctxt "Form timeline" msgid "You submitted this document {0}" msgstr "" -#: public/js/frappe/form/sidebar/document_follow.js:144 +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" msgstr "Anda berhenti mengikuti dokumen ini" -#: public/js/frappe/form/footer/form_timeline.js:182 +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:385 +#: frappe/public/js/frappe/desk.js:553 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" msgstr "Negara Anda" -#: desk/page/setup_wizard/setup_wizard.js:377 +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" msgstr "Bahasa Anda" -#: templates/includes/comments/comments.html:21 +#: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" msgstr "Nama Anda" -#: patches/v14_0/update_workspace2.py:34 +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" msgstr "Pintasan Anda" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 msgid "Your account has been deleted" msgstr "" -#: auth.py:465 +#: frappe/auth.py:514 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik" -#: desk/form/assign_to.py:268 +#: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Tugas Anda pada {0} {1} telah dihapus oleh {2}" -#: templates/pages/integrations/gcalendar-success.html:11 +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "" + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" msgstr "Permintaan koneksi Anda ke Google Kalender berhasil diterima" -#: www/contact.html:35 +#: frappe/www/contact.html:35 msgid "Your email address" msgstr "Alamat email anda" -#: public/js/frappe/web_form/web_form.js:424 +#: frappe/public/js/frappe/web_form/web_form.js:428 msgid "Your form has been successfully updated" msgstr "" -#: templates/emails/new_user.html:6 +#: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Id login Anda" -#: www/update-password.html:165 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: www/update-password.html:145 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "Nama dan alamat organisasi Anda untuk footer email." +msgstr "" -#: templates/emails/auto_reply.html:2 +#: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda memiliki informasi tambahan, silakan balas email ini." -#: app.py:346 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan" -#: templates/emails/verification_code.html:1 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" msgstr "" -#. Success message of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Your website is all set up!" -msgstr "" - -#: utils/data.py:1518 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Nol" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Zero means send records updated at anytime" -msgstr "Nol berarti mengirim pembaruan data kapan saja" +msgstr "" -#. Label of a Link field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "_doctype" +msgstr "" -#. Label of a Link field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_report" -msgstr "_laporan" +msgstr "" -#: utils/background_jobs.py:94 +#: frappe/database/database.py:360 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: frappe/utils/background_jobs.py:120 msgid "`job_id` paramater is required for deduplication." msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:219 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 msgid "added rows for {0}" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "adjust" -msgstr "penyesuaian" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "after_insert" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-center" -msgstr "rata-tengah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-justify" -msgstr "rata-kanan-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-left" -msgstr "rata-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-right" -msgstr "rata-kanan" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "amend" -msgstr "Merubah" +msgstr "" -#: public/js/frappe/utils/utils.js:396 utils/data.py:1528 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "dan" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-down" -msgstr "panah-bawah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-left" -msgstr "panah-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-right" -msgstr "panah-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-up" -msgstr "panah-atas" - -#: public/js/frappe/ui/sort_selector.js:48 +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "ascending" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "asterisk" -msgstr "asterisk" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "backward" -msgstr "mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ban-circle" -msgstr "lingkaran-larangan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "barcode" -msgstr "barcode" - -#: model/document.py:1337 -msgid "beginning with" -msgstr "dimulai dengan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bell" -msgstr "bel" - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "blue" -msgstr "biru" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bold" -msgstr "tebal" +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "book" -msgstr "buku" +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bookmark" -msgstr "penanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "briefcase" -msgstr "tas kantor" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bullhorn" -msgstr "pengeras suara" - -#: public/js/frappe/ui/toolbar/search_utils.js:270 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 msgid "calendar" msgstr "kalender" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "calendar" -msgstr "kalender" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "camera" -msgstr "kamera" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "cancel" -msgstr "Batalkan" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "certificate" -msgstr "sertifikat" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "check" -msgstr "Check" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-down" -msgstr "chevron-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-left" -msgstr "chevron-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-right" -msgstr "chevron-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-up" -msgstr "chevron-up" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-down" -msgstr "lingkaran-panah-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-left" -msgstr "lingkaran-panah-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-right" -msgstr "lingkaran-panah-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-up" -msgstr "lingkaran-panah-up" - -#: templates/includes/list/filters.html:19 +#: frappe/templates/includes/list/filters.html:19 msgid "clear" msgstr "jelas" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "cog" -msgstr "gigi" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "comment" -msgstr "komentar" +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "create" -msgstr "Buat" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "cyan" msgstr "" -#: public/js/frappe/utils/utils.js:1113 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "d" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "darkgrey" -msgstr "Abu-abu gelap" +msgstr "" -#: core/page/dashboard_view/dashboard_view.js:65 +#: frappe/core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" msgstr "dasbor" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "dd.mm.yyyy" -msgstr "dd.mm.yyyy" - -#. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "dd/mm/yyyy" -msgstr "hh / bb / tttt" - -#. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "default" msgstr "" +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "default" msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "Hapus" +msgstr "" -#: public/js/frappe/ui/sort_selector.js:48 +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "descending" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:163 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" msgstr "tipe dokumen ..., misalnya pelanggan" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "download" -msgstr "unduh" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "download-alt" -msgstr "mengunduh-alt" - #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "misalnya \"Support \",\" Penjualan \",\" Jerry Yang \"" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:183 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." msgstr "misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ..." #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "misalnya pop.gmail.com / imap.gmail.com" - #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "misalnya pop.gmail.com / imap.gmail.com" +msgstr "" #. Description of the 'Default Incoming' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "misalnya replies@yourcomany.com. Semua balasan akan datang ke inbox ini." +msgstr "" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "e.g. smtp.gmail.com" -msgstr "misalnya smtp.gmail.com" - #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. smtp.gmail.com" -msgstr "misalnya smtp.gmail.com" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:98 +#: frappe/custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" msgstr "misalnya:" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "edit" -msgstr "Ubah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eject" -msgstr "mengeluarkan" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "email" -msgstr "surel" - #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "email" -msgstr "surel" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:289 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "email inbox" msgstr "Kotak Masuk Surel" -#: permissions.py:411 permissions.py:422 -#: public/js/frappe/form/controls/link.js:479 +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "kosong" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "envelope" -msgstr "amplop" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "exclamation-sign" -msgstr "seru-sign" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "Ekspor" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eye-close" -msgstr "eye-close" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eye-open" -msgstr "eye-terbuka" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "facebook" -msgstr "facebook" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "facetime-video" -msgstr "facetime video" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "failed" msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "fairlogin" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fast-backward" -msgstr "cepat mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fast-forward" -msgstr "fast-forward" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "file" -msgstr "berkas" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "film" -msgstr "film" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "filter" -msgstr "Filter" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "finished" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fire" -msgstr "api" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "flag" -msgstr "tanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "folder-close" -msgstr "folder-close" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "folder-open" -msgstr "folder terbuka" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "font" -msgstr "fon" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "forward" -msgstr "depan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fullscreen" -msgstr "fullscreen" - -#: public/js/frappe/utils/energy_point_utils.js:61 -msgid "gained by {0} via automatic rule {1}" -msgstr "diperoleh sebesar {0} melalui aturan otomatis {1}" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "gift" -msgstr "hadiah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "glass" -msgstr "kaca" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "globe" -msgstr "di seluruh dunia." - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "gray" msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "green" -msgstr "hijau" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "grey" msgstr "" -#: utils/backups.py:375 +#: frappe/utils/backups.py:399 msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: public/js/frappe/utils/utils.js:1117 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "h" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-down" -msgstr "tangan-ke bawah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-left" -msgstr "tangan kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-right" -msgstr "tangan kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-up" -msgstr "tangan-ke atas" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hdd" -msgstr "hdd" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "headphones" -msgstr "headphone" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "heart" -msgstr "isinya dihati" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "home" -msgstr "rumah" - -#: public/js/frappe/ui/toolbar/search_utils.js:280 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" msgstr "pusat" -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "icon" -msgstr "icon" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "Impor" +msgstr "" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "in minutes" -msgstr "dalam menit" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "inbox" -msgstr "Kotak Masuk" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "indent-left" -msgstr "indent-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "indent-right" -msgstr "indent kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "info-sign" -msgstr "info-tanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "italic" -msgstr "italic" - -#: templates/signup.html:11 www/login.html:10 +#: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" -#: public/js/frappe/utils/pretty_date.js:46 +#: frappe/public/js/frappe/utils/pretty_date.js:46 msgid "just now" msgstr "baru saja" -#: desk/desktop.py:254 desk/query_report.py:279 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "leaf" -msgstr "cuti" - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "light-blue" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "link" -msgstr "Link" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "linkedin" -msgstr "linkedin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "list" -msgstr "daftar" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "list" -msgstr "daftar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "list-alt" -msgstr "daftar-alt" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "lock" -msgstr "mengunci" - -#: www/third_party_apps.html:41 +#: frappe/www/third_party_apps.html:43 msgid "logged in" msgstr "Login" +#: frappe/website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "" + #. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "long" -msgstr "" - #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "long" msgstr "" -#: public/js/frappe/utils/utils.js:1121 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "m" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "magnet" -msgstr "magnet" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "map-marker" -msgstr "peta-penanda" - -#: model/rename_doc.py:214 +#: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" msgstr "digabung {0} ke {1}" -#: website/doctype/blog_post/templates/blog_post.html:25 -#: website/doctype/blog_post/templates/blog_post_row.html:36 +#: frappe/website/doctype/blog_post/templates/blog_post.html:25 +#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 msgid "min read" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "minus" -msgstr "kurang" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "minus-sign" -msgstr "minus tanda" - +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "mm-dd-yyyy" -msgstr "mm-dd-yyyy" +msgstr "" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "mm/dd/yyyy" -msgstr "hh / bb / tttt" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "module" -msgstr "modul" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:178 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." msgstr "nama modul ..." -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "move" -msgstr "pindah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "music" -msgstr "musik" - -#: public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 msgid "new" msgstr "baru" -#: public/js/frappe/ui/toolbar/awesome_bar.js:158 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" msgstr "jenis baru dokumen" -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "no failed attempts" -msgstr "upaya tidak gagal" +msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" msgstr "" -#: model/document.py:1336 -msgid "none of" -msgstr "tidak ada" - -#. Label of a Check field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json msgid "notified" msgstr "" -#: public/js/frappe/utils/pretty_date.js:25 +#: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" msgstr "sekarang" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "off" -msgstr "lepas" +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok" -msgstr "ok" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok-circle" -msgstr "ok-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok-sign" -msgstr "ok-tanda" - -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "old_parent" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "on_cancel" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "dalam perubahan" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "on_submit" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "on_trash" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "on_update" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "on_update_after_submit" +msgstr "" -#: model/document.py:1335 -msgid "one of" -msgstr "Salah satu" - -#: utils/data.py:1535 -msgid "only." -msgstr "saja." - -#: public/js/frappe/utils/utils.js:393 www/login.html:87 +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 msgid "or" msgstr "atau" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "orange" -msgstr "jeruk" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "page" -msgstr "halaman" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "pause" -msgstr "jeda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "pencil" -msgstr "pensil" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "picture" -msgstr "gambar" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "pink" msgstr "" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "plain" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plane" -msgstr "pesawat" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "play" -msgstr "bermain" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "play-circle" -msgstr "bermain-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plus" -msgstr "plus" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plus-sign" -msgstr "tanda plus" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "print" -msgstr "mencetak" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "print" -msgstr "mencetak" - -#. Label of a HTML field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "processlist" msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "purple" -msgstr "ungu" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "qrcode" -msgstr "kode qr" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "query-report" -msgstr "laporan-query" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "question-sign" -msgstr "tanda tanya" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "queued" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "random" -msgstr "acak" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "Membaca" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "red" -msgstr "merah" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "refresh" -msgstr "menyegarkan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove" -msgstr "menghapus" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove-circle" -msgstr "hapus-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove-sign" -msgstr "hapus-tanda" - -#: public/js/frappe/form/footer/version_timeline_content_builder.js:221 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 msgid "removed rows for {0}" msgstr "" -#: model/rename_doc.py:217 +#: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "berganti nama dari {0} ke {1}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "repeat" -msgstr "ulangi" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "report" -msgstr "Laporan" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-full" -msgstr "mengubah ukuran-penuh" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-horizontal" -msgstr "resize-horisontal" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-small" -msgstr "resize-kecil" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-vertical" -msgstr "resize-vertikal" - -#. Label of a HTML field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json msgid "response" -msgstr "tanggapan" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:60 +#: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" msgstr "dipulihkan {0} sebagai {1}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "retweet" -msgstr "-retweet" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "road" -msgstr "jalan" - -#: public/js/frappe/utils/utils.js:1125 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "s" +msgstr "" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "screenshot" -msgstr "screenshot" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "search" -msgstr "Pencarian" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "Pilih" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "share" -msgstr "saham" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "share" -msgstr "saham" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "share-alt" -msgstr "share-alt" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "shopping-cart" -msgstr "shopping-cart" +msgstr "" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "short" -msgstr "" - #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "short" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "signal" -msgstr "sinyal" - -#: public/js/frappe/widgets/number_card_widget.js:265 +#: frappe/public/js/frappe/widgets/number_card_widget.js:298 msgid "since last month" msgstr "sejak bulan lalu" -#: public/js/frappe/widgets/number_card_widget.js:264 +#: frappe/public/js/frappe/widgets/number_card_widget.js:297 msgid "since last week" msgstr "sejak minggu lalu" -#: public/js/frappe/widgets/number_card_widget.js:266 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since last year" msgstr "sejak tahun lalu" -#: public/js/frappe/widgets/number_card_widget.js:263 +#: frappe/public/js/frappe/widgets/number_card_widget.js:296 msgid "since yesterday" msgstr "Dari Kemarin" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "star" -msgstr "bintang" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "star-empty" -msgstr "Bintang-kosong" - #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "started" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:194 +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "step-backward" -msgstr "langkah-mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "step-forward" -msgstr "langkah-maju" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "stop" -msgstr "berhenti" - #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. group" msgstr "" #. Description of the 'LDAP Group Member attribute' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. member" msgstr "" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "submit" -msgstr "Kirim" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tag" -msgstr "Label" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:173 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" msgstr "nama tag ..., misalnya #tag" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tags" -msgstr "tag" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tasks" -msgstr "tugas" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:168 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" msgstr "teks dalam tipe dokumen" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "text-height" -msgstr "text-height" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "text-width" -msgstr "text-width" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th" -msgstr "th" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th-large" -msgstr "th-besar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th-list" -msgstr "th-list" - -#: public/js/frappe/form/controls/data.js:35 +#: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" msgstr "" -#: tests/test_translate.py:158 +#: frappe/tests/test_translate.py:174 msgid "this shouldn't break" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "thumbs-down" -msgstr "thumbs-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "thumbs-up" -msgstr "thumbs-up" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "time" -msgstr "Durasi" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tint" -msgstr "warna" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "trash" -msgstr "sampah" - #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "twitter" -msgstr "Indonesia" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "upload" -msgstr "unggah" +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:340 +#: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "user" -msgstr "pengguna" - -#: public/js/frappe/ui/filters/filter.js:339 +#: frappe/public/js/frappe/ui/filters/filter.js:360 msgid "values separated by commas" msgstr "nilai-nilai dipisahkan oleh koma" -#. Label of a HTML field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json msgid "version_table" msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:386 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" msgstr "melalui Aturan Penugasan" -#: core/doctype/data_import/importer.py:259 -#: core/doctype/data_import/importer.py:280 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "via Auto Repeat" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 msgid "via Data Import" msgstr "melalui Impor Data" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/desk/doctype/event/event.json msgid "via Google Meet" msgstr "" -#: email/doctype/notification/notification.py:214 +#: frappe/email/doctype/notification/notification.py:361 msgid "via Notification" msgstr "melalui Notifikasi" -#: public/js/frappe/utils/energy_point_utils.js:46 -msgid "via automatic rule {0} on {1}" -msgstr "via aturan otomatis {0} pada {1}" - -#: public/js/frappe/form/footer/version_timeline_content_builder.js:17 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" msgstr "melalui {0}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-down" -msgstr "Volume-down" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-off" -msgstr "Volume-off" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-up" -msgstr "volume-up" - -#: templates/includes/oauth_confirmation.html:5 +#: frappe/templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "warning-sign" -msgstr "sinyal-peringatan" - #. Description of the 'Popover Element' (Check) field in DocType 'Form Tour #. Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "when clicked on element it will focus popover if present." msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "wrench" -msgstr "kunci" +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:622 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "Menulis" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "yellow" -msgstr "kuning" +msgstr "" -#: public/js/frappe/utils/pretty_date.js:58 +#: frappe/public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" msgstr "kemarin" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "zoom-in" -msgstr "perbesar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "zoom-out" -msgstr "perkecil" - -#: desk/doctype/event/event.js:83 -#: integrations/doctype/google_drive/google_drive.js:19 +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 msgid "{0}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:81 -#: public/js/frappe/ui/toolbar/search_utils.js:82 -msgid "{0} ${label}" -msgstr "" - -#: public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:182 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 msgid "{0} ${type}" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:77 -#: public/js/frappe/views/gantt/gantt_view.js:54 +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 msgid "{0} ({1})" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:76 +#: frappe/public/js/frappe/data_import/data_exporter.js:77 msgid "{0} ({1}) (1 row mandatory)" msgstr "{0} ({1}) (1 baris wajib)" -#: public/js/frappe/views/gantt/gantt_view.js:53 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 msgid "{0} ({1}) - {2}%" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:346 -#: public/js/frappe/ui/toolbar/awesome_bar.js:349 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 msgid "{0} = {1}" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:29 +#: frappe/public/js/frappe/views/calendar/calendar.js:30 msgid "{0} Calendar" msgstr "{0} Kalender" -#: public/js/frappe/views/reports/report_view.js:544 +#: frappe/public/js/frappe/views/reports/report_view.js:570 msgid "{0} Chart" msgstr "{0} Bagan" -#: core/page/dashboard_view/dashboard_view.js:67 -#: public/js/frappe/ui/toolbar/search_utils.js:331 -#: public/js/frappe/ui/toolbar/search_utils.js:332 -#: public/js/frappe/utils/utils.js:929 -#: public/js/frappe/views/dashboard/dashboard_view.js:10 +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Dasbor" -#: public/js/frappe/form/grid_row.js:456 -#: public/js/frappe/list/list_settings.js:224 -#: public/js/frappe/views/kanban/kanban_settings.js:178 +#: frappe/public/js/frappe/form/grid_row.js:470 +#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Bidang" -#: integrations/doctype/google_calendar/google_calendar.py:360 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 msgid "{0} Google Calendar Events synced." msgstr "{0} Acara Kalender Google disinkronkan." -#: integrations/doctype/google_contacts/google_contacts.py:190 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." msgstr "{0} Kontak Google disinkronkan." -#: public/js/frappe/form/footer/form_timeline.js:463 +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" msgstr "" -#: public/js/frappe/utils/utils.js:923 -#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 msgid "{0} List" msgstr "{0} Daftar" -#: public/js/frappe/utils/pretty_date.js:37 +#: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" -msgstr "{0} M" +msgstr "" -#: public/js/frappe/views/map/map_view.js:14 +#: frappe/public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" msgstr "" -#: public/js/frappe/utils/utils.js:926 -msgid "{0} Modules" -msgstr "{0} Modul" - -#: public/js/frappe/form/quick_entry.js:113 +#: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" msgstr "{0} Nama" -#: model/base_document.py:1027 +#: frappe/model/base_document.py:1154 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" -#: public/js/frappe/utils/utils.js:920 -#: public/js/frappe/widgets/chart_widget.js:325 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 msgid "{0} Report" msgstr "{0} Laporan" -#: public/js/frappe/list/list_settings.js:32 -#: public/js/frappe/views/kanban/kanban_settings.js:26 +#: frappe/public/js/frappe/views/reports/query_report.js:955 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:32 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Pengaturan" -#: public/js/frappe/views/treeview.js:139 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 msgid "{0} Tree" -msgstr "{0} Tree" - -#: public/js/frappe/list/base_list.js:206 -msgid "{0} View" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:126 -#: public/js/frappe/form/sidebar/form_sidebar.js:86 +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 msgid "{0} Web page views" msgstr "{0} Tampilan Halaman" -#: public/js/frappe/form/link_selector.js:225 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 msgid "{0} added" msgstr "{0} ditambahkan" -#: public/js/frappe/form/controls/data.js:203 +#: frappe/public/js/frappe/form/controls/data.js:204 msgid "{0} already exists. Select another name" msgstr "{0} sudah ada. Pilih nama lain" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:37 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" msgstr "{0} sudah berhenti berlangganan" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:50 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} sudah berhenti berlangganan untuk {1} {2}" -#: utils/data.py:1715 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} dan {1}" -#: public/js/frappe/utils/energy_point_utils.js:38 -msgid "{0} appreciated on {1}" -msgstr "{0} dihargai pada {1}" - -#: social/doctype/energy_point_log/energy_point_log.py:126 -#: social/doctype/energy_point_log/energy_point_log.py:163 -msgid "{0} appreciated your work on {1} with {2} point" -msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin" - -#: social/doctype/energy_point_log/energy_point_log.py:128 -#: social/doctype/energy_point_log/energy_point_log.py:165 -msgid "{0} appreciated your work on {1} with {2} points" -msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin" - -#: public/js/frappe/utils/energy_point_utils.js:53 -msgid "{0} appreciated {1}" -msgstr "{0} dihargai {1}" - -#: public/js/frappe/form/sidebar/review.js:148 -msgid "{0} appreciation point for {1}" -msgstr "" - -#: public/js/frappe/form/sidebar/review.js:150 -msgid "{0} appreciation points for {1}" -msgstr "" - -#: public/js/frappe/form/sidebar/form_sidebar_users.js:72 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" msgstr "{0} saat ini {1}" -#: printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} wajib diisi" -#: desk/form/assign_to.py:275 +#: frappe/desk/form/assign_to.py:286 msgid "{0} assigned a new task {1} {2} to you" msgstr "{0} menetapkan tugas baru {1} {2} untuk Anda" -#: desk/doctype/todo/todo.py:48 +#: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" msgstr "{0} ditugaskan {1}: {2}" -#: public/js/frappe/form/footer/form_timeline.js:414 +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:77 +#: frappe/core/doctype/system_settings/system_settings.py:150 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:68 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: public/js/form_builder/store.js:185 +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "" + +#: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:124 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:115 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:186 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:177 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:443 +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: website/doctype/blog_post/blog_post.py:380 +#: frappe/website/doctype/blog_post/blog_post.py:382 msgid "{0} comments" msgstr "{0} komentar" -#: public/js/frappe/views/interaction.js:261 +#: frappe/core/doctype/doctype/doctype.py:1605 +msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" msgstr "{0} berhasil dibuat" -#: public/js/frappe/form/footer/form_timeline.js:139 -#: public/js/frappe/form/sidebar/form_sidebar.js:107 +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" msgstr "" -#: public/js/frappe/form/sidebar/review.js:154 -msgid "{0} criticism point for {1}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +msgctxt "Form timeline" +msgid "{0} created this document {1}" msgstr "" -#: public/js/frappe/form/sidebar/review.js:156 -msgid "{0} criticism points for {1}" -msgstr "" - -#: public/js/frappe/utils/energy_point_utils.js:41 -msgid "{0} criticized on {1}" -msgstr "{0} dikritik pada {1}" - -#: social/doctype/energy_point_log/energy_point_log.py:132 -#: social/doctype/energy_point_log/energy_point_log.py:170 -msgid "{0} criticized your work on {1} with {2} point" -msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin" - -#: social/doctype/energy_point_log/energy_point_log.py:134 -#: social/doctype/energy_point_log/energy_point_log.py:172 -msgid "{0} criticized your work on {1} with {2} points" -msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin" - -#: public/js/frappe/utils/energy_point_utils.js:56 -msgid "{0} criticized {1}" -msgstr "{0} dikritik {1}" - -#: public/js/frappe/utils/pretty_date.js:33 +#: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" msgstr "{0} h" -#: public/js/frappe/utils/pretty_date.js:60 +#: frappe/public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" msgstr "{0} hari yang lalu" -#: website/doctype/website_settings/website_settings.py:96 -#: website/doctype/website_settings/website_settings.py:116 +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" msgstr "{0} tidak ada di baris {1}" -#: database/mariadb/schema.py:131 database/postgres/schema.py:184 +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik" -#: core/doctype/data_import/importer.py:1017 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:97 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:157 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:120 -msgid "{0} gained {1} point for {2} {3}" -msgstr "{0} diperoleh {1} poin untuk {2} {3}" - -#: templates/emails/energy_points_summary.html:8 -msgid "{0} gained {1} points" -msgstr "" - -#: social/doctype/energy_point_log/energy_point_log.py:122 -msgid "{0} gained {1} points for {2} {3}" -msgstr "{0} diperoleh {1} poin untuk {2} {3}" - -#: templates/emails/energy_points_summary.html:23 -msgid "{0} gave {1} points" -msgstr "" - -#: public/js/frappe/utils/pretty_date.js:29 +#: frappe/public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" msgstr "{0} j" -#: core/doctype/user_permission/user_permission.py:76 +#: frappe/core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." msgstr "{0} telah menetapkan nilai default untuk {1}." -#: email/doctype/newsletter/newsletter.py:382 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} telah berhasil ditambahkan ke Kelompok Email." - -#: email/queue.py:127 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} telah meninggalkan percakapan di {1} {2}" -#: __init__.py:2373 -msgid "{0} has no versions tracked." -msgstr "{0} tidak memiliki versi yang dilacak." - -#: public/js/frappe/utils/pretty_date.js:54 +#: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" msgstr "{0} jam yang lalu" -#: website/doctype/web_form/templates/web_form.html:145 +#: frappe/website/doctype/web_form/templates/web_form.html:148 msgid "{0} if you are not redirected within {1} seconds" msgstr "" -#: website/doctype/website_settings/website_settings.py:102 -#: website/doctype/website_settings/website_settings.py:122 +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan" -#: core/doctype/doctype/doctype.py:916 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "{0} is a mandatory field" msgstr "{0} adalah kolom wajib" -#: core/doctype/file/file.py:503 +#: frappe/core/doctype/file/file.py:544 msgid "{0} is a not a valid zip file" msgstr "" -#: core/doctype/doctype/doctype.py:1559 +#: frappe/core/doctype/doctype/doctype.py:1618 msgid "{0} is an invalid Data field." msgstr "{0} adalah bidang Data yang tidak valid." -#: automation/doctype/auto_repeat/auto_repeat.py:147 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} adalah alamat email yang tidak valid di 'Penerima'" -#: public/js/frappe/views/reports/report_view.js:1394 +#: frappe/public/js/frappe/views/reports/report_view.js:1468 msgid "{0} is between {1} and {2}" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar_users.js:41 -#: public/js/frappe/form/sidebar/form_sidebar_users.js:69 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 msgid "{0} is currently {1}" msgstr "{0} saat ini {1}" -#: public/js/frappe/views/reports/report_view.js:1363 +#: frappe/public/js/frappe/views/reports/report_view.js:1437 msgid "{0} is equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1383 +#: frappe/public/js/frappe/views/reports/report_view.js:1457 msgid "{0} is greater than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1373 +#: frappe/public/js/frappe/views/reports/report_view.js:1447 msgid "{0} is greater than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1388 +#: frappe/public/js/frappe/views/reports/report_view.js:1462 msgid "{0} is less than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1378 +#: frappe/public/js/frappe/views/reports/report_view.js:1452 msgid "{0} is less than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1413 +#: frappe/public/js/frappe/views/reports/report_view.js:1487 msgid "{0} is like {1}" msgstr "" -#: email/doctype/email_account/email_account.py:169 +#: frappe/email/doctype/email_account/email_account.py:193 msgid "{0} is mandatory" msgstr "{0} wajib diisi" -#: core/doctype/document_naming_rule/document_naming_rule.py:49 +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" -#: www/printview.py:350 +#: frappe/www/printview.py:384 msgid "{0} is not a raw printing format." msgstr "{0} bukan format pencetakan mentah." -#: public/js/frappe/views/calendar/calendar.js:81 +#: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." msgstr "" -#: public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} bukan DocType untuk Dynamic Link yang valid" -#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189 +#: frappe/email/doctype/email_group/email_group.py:131 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} bukan Alamat Email valid" -#: utils/__init__.py:157 +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} bukanlah Nama yang valid" -#: utils/__init__.py:136 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} bukan Nomor Telepon yang valid" -#: model/workflow.py:186 +#: frappe/model/workflow.py:189 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} bukan Status Alur Kerja yang valid. Perbarui Alur Kerja anda dan coba lagi." -#: permissions.py:795 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: permissions.py:815 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:109 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}" -#: core/doctype/file/file.py:483 +#: frappe/core/doctype/file/file.py:524 msgid "{0} is not a zip file" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1368 +#: frappe/public/js/frappe/views/reports/report_view.js:1442 msgid "{0} is not equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1415 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is not like {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1409 +#: frappe/public/js/frappe/views/reports/report_view.js:1483 msgid "{0} is not one of {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1419 +#: frappe/public/js/frappe/views/reports/report_view.js:1493 msgid "{0} is not set" msgstr "" -#: printing/doctype/print_format/print_format.py:166 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}" -#: public/js/frappe/views/reports/report_view.js:1402 +#: frappe/public/js/frappe/views/reports/report_view.js:1476 msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:263 model/naming.py:201 -#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131 +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:218 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} diperlukan" -#: public/js/frappe/views/reports/report_view.js:1418 +#: frappe/public/js/frappe/views/reports/report_view.js:1492 msgid "{0} is set" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1397 +#: frappe/public/js/frappe/views/reports/report_view.js:1471 msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1556 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} item dipilih" -#: public/js/frappe/form/footer/form_timeline.js:150 -#: public/js/frappe/form/sidebar/form_sidebar.js:96 +#: frappe/core/doctype/user/user.py:1384 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:152 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" msgstr "" -#: core/doctype/activity_log/feed.py:13 +#: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" msgstr "{0} Telah login" -#: core/doctype/activity_log/feed.py:19 +#: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" msgstr "{0} log out: {1}" -#: public/js/frappe/utils/pretty_date.js:27 +#: frappe/public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "{0} m" +msgstr "" -#: desk/notifications.py:373 +#: frappe/desk/notifications.py:408 msgid "{0} mentioned you in a comment in {1} {2}" msgstr "{0} menyebut Anda dalam komentar di {1} {2}" -#: public/js/frappe/utils/pretty_date.js:50 +#: frappe/public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" msgstr "{0} menit yang lalu" -#: public/js/frappe/utils/pretty_date.js:68 +#: frappe/public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" msgstr "{0} bulan yang lalu" -#: model/document.py:1564 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} harus setelah {1}" -#: utils/csvutils.py:136 +#: frappe/model/document.py:1560 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1558 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} harus merupakan salah satu {1}" -#: model/base_document.py:771 +#: frappe/model/base_document.py:876 msgid "{0} must be set first" msgstr "{0} harus diatur terlebih dahulu" -#: model/base_document.py:629 +#: frappe/model/base_document.py:729 msgid "{0} must be unique" msgstr "{0} harus merupakan kode unik" -#: core/doctype/language/language.py:42 -msgid "" -"{0} must begin and end with a letter and can only contain letters,\n" -"\t\t\t\thyphen or underscore." +#: frappe/model/document.py:1564 +msgid "{0} must be {1} {2}" msgstr "" -#: workflow/doctype/workflow/workflow.py:93 +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:90 msgid "{0} not a valid State" msgstr "{0} bukan Keadaan yang berlaku" -#: model/rename_doc.py:388 +#: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" msgstr "{0} tidak dapat dinamakan kembali" -#: desk/doctype/desktop_icon/desktop_icon.py:371 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" msgstr "{0} tidak ditemukan" -#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956 +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1068 msgid "{0} of {1}" msgstr "{0} dari {1}" -#: public/js/frappe/list/list_view.js:958 +#: frappe/public/js/frappe/list/list_view.js:1070 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} dari {1} ({2} baris dengan anak-anak)" -#: email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." msgstr "" -#: utils/data.py:1705 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} atau {1}" -#: core/doctype/user_permission/user_permission_list.js:177 +#: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" msgstr "{0} catatan dihapus" -#: public/js/frappe/logtypes.js:22 +#: frappe/public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." msgstr "" -#: public/js/frappe/logtypes.js:29 +#: frappe/public/js/frappe/logtypes.js:29 msgid "{0} records are retained for {1} days." msgstr "" -#: core/doctype/user_permission/user_permission_list.js:179 +#: frappe/core/doctype/user_permission/user_permission_list.js:179 msgid "{0} records deleted" msgstr "{0} catatan dihapus" -#: public/js/frappe/data_import/data_exporter.js:225 +#: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" msgstr "{0} catatan akan diekspor" -#: public/js/frappe/form/footer/form_timeline.js:419 +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" msgstr "" -#: desk/doctype/todo/todo.py:58 +#: frappe/desk/doctype/todo/todo.py:58 msgid "{0} removed their assignment." msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:139 -#: social/doctype/energy_point_log/energy_point_log.py:178 -msgid "{0} reverted your point on {1}" -msgstr "{0} mengembalikan poin Anda pada {1}" +#: frappe/public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:141 -#: social/doctype/energy_point_log/energy_point_log.py:180 -msgid "{0} reverted your points on {1}" -msgstr "{0} mengembalikan poin Anda pada {1}" +#: frappe/model/document.py:1794 +msgid "{0} row #{1}: " +msgstr "" -#: public/js/frappe/utils/energy_point_utils.js:44 -#: public/js/frappe/utils/energy_point_utils.js:59 -msgid "{0} reverted {1}" -msgstr "{0} dikembalikan {1}" - -#: desk/query_report.py:583 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} berhasil disimpan" -#: desk/doctype/todo/todo.py:44 +#: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" msgstr "{0} penugasan sendiri tugas ini: {1}" -#: share.py:238 +#: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" msgstr "{0} berbagi dokumen {1} {2} dengan Anda" -#: core/doctype/docshare/docshare.py:79 +#: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" msgstr "{0} berbagi dokumen ini dengan semua orang" -#: core/doctype/docshare/docshare.py:82 +#: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" msgstr "{0} berbagi dokumen ini dengan {1}" -#: core/doctype/doctype/doctype.py:320 +#: frappe/core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:136 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 msgid "{0} should not be same as {1}" msgstr "{0} tidak boleh sama dengan {1}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:51 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:42 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: email/doctype/email_group/email_group.py:61 -#: email/doctype/email_group/email_group.py:132 +#: frappe/email/doctype/email_group/email_group.py:62 +#: frappe/email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" msgstr "{0} Pelanggan telah ditambahkan" -#: email/queue.py:70 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} untuk berhenti menerima email jenis ini" -#: public/js/frappe/form/controls/date_range.js:46 -#: public/js/frappe/form/controls/date_range.js:62 -#: public/js/frappe/form/formatters.js:218 +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" msgstr "{0} sampai {1}" -#: core/doctype/docshare/docshare.py:91 +#: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" msgstr "{0} berhenti berbagi dokumen ini dengan {1}" -#: custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:253 msgid "{0} updated" msgstr "{0} diperbarui" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 msgid "{0} values selected" msgstr "{0} nilai dipilih" -#: public/js/frappe/form/footer/form_timeline.js:183 +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 msgid "{0} viewed this" msgstr "" -#: public/js/frappe/utils/pretty_date.js:35 +#: frappe/public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "{0} w" +msgstr "" -#: public/js/frappe/utils/pretty_date.js:64 +#: frappe/public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" msgstr "{0} minggu yang lalu" -#: public/js/frappe/utils/pretty_date.js:39 +#: frappe/public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" msgstr "{0} t" -#: public/js/frappe/utils/pretty_date.js:72 +#: frappe/public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" msgstr "{0} tahun lalu" -#: public/js/frappe/form/link_selector.js:219 +#: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" msgstr "{0} {1} ditambahkan" -#: public/js/frappe/utils/dashboard_utils.js:270 +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} ditambahkan ke Dasbor {2}" -#: model/base_document.py:562 model/rename_doc.py:112 +#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} sudah ada" -#: model/base_document.py:873 +#: frappe/model/base_document.py:987 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\"" -#: utils/nestedset.py:343 +#: frappe/utils/nestedset.py:340 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} tidak bisa menjadi node tumpuan karena memiliki node anak" -#: model/rename_doc.py:377 +#: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" msgstr "{0} {1} belum ada, pilih target baru untuk menggabungkan" -#: public/js/frappe/form/form.js:970 +#: frappe/public/js/frappe/form/form.js:951 msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}" -#: model/document.py:170 permissions.py:566 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} tidak ditemukan" -#: model/delete_doc.py:231 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu." -#: model/base_document.py:988 +#: frappe/model/base_document.py:1115 msgid "{0}, Row {1}" msgstr "{0}, Baris {1}" -#: model/base_document.py:993 +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1120 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) akan terpotong, karena karakter maksimum yang diizinkan adalah {2}" -#: core/doctype/doctype/doctype.py:1741 +#: frappe/core/doctype/doctype/doctype.py:1800 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu" -#: core/doctype/doctype/doctype.py:1759 +#: frappe/core/doctype/doctype/doctype.py:1818 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan" -#: core/doctype/doctype/doctype.py:1757 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable" -#: core/doctype/doctype/doctype.py:1736 +#: frappe/core/doctype/doctype/doctype.py:1795 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan" -#: core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1802 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu" -#: core/doctype/doctype/doctype.py:1739 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan" -#: core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1822 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor" -#: automation/doctype/auto_repeat/auto_repeat.py:393 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "{0}: Gagal melampirkan dokumen berulang baru. Untuk mengaktifkan melampirkan dokumen di email pemberitahuan ulangi otomatis, aktifkan {1} di Pengaturan Cetak" -#: core/doctype/doctype/doctype.py:1377 +#: frappe/core/doctype/doctype/doctype.py:1426 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Field '{1}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik" -#: core/doctype/doctype/doctype.py:1285 +#: frappe/core/doctype/doctype/doctype.py:1334 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Bidang {1} berturut-turut {2} tidak dapat disembunyikan dan wajib tanpa default" -#: core/doctype/doctype/doctype.py:1244 +#: frappe/core/doctype/doctype/doctype.py:1293 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Bidang {1} dari tipe {2} tidak boleh wajib" -#: core/doctype/doctype/doctype.py:1232 +#: frappe/core/doctype/doctype/doctype.py:1281 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Fieldname {1} muncul beberapa kali dalam baris {2}" -#: core/doctype/doctype/doctype.py:1362 +#: frappe/core/doctype/doctype/doctype.py:1413 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik" -#: core/doctype/doctype/doctype.py:1698 +#: frappe/core/doctype/doctype/doctype.py:1755 msgid "{0}: No basic permissions set" msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan" -#: core/doctype/doctype/doctype.py:1712 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}" -#: core/doctype/doctype/doctype.py:1266 +#: frappe/core/doctype/doctype/doctype.py:1315 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Opsi harus berupa DocType yang valid untuk bidang {1} di baris {2}" -#: core/doctype/doctype/doctype.py:1255 +#: frappe/core/doctype/doctype/doctype.py:1304 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Opsi yang diperlukan untuk bidang jenis Tautan atau jenis tabel {1} di baris {2}" -#: core/doctype/doctype/doctype.py:1273 +#: frappe/core/doctype/doctype/doctype.py:1322 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Opsi {1} harus sama dengan nama doctype {2} untuk isian {3}" -#: core/doctype/doctype/doctype.py:1727 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1784 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan" -#: public/js/frappe/form/controls/data.js:50 +#: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1219 +#: frappe/core/doctype/doctype/doctype.py:1268 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" -#: contacts/doctype/address/address.js:35 -#: contacts/doctype/contact/contact.js:78 -#: public/js/frappe/views/workspace/workspace.js:169 +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 msgid "{0}: {1}" msgstr "" -#: workflow/doctype/workflow_action/workflow_action.py:172 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} diatur untuk menyatakan {2}" -#: public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" -msgstr "{0}: {1} vs {2}" +msgstr "" -#: core/doctype/doctype/doctype.py:1385 +#: frappe/core/doctype/doctype/doctype.py:1434 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: Fieldtype {1} untuk {2} tidak dapat diindeks" -#: public/js/frappe/utils/datatable.js:12 +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" msgstr "" -#: public/js/frappe/utils/datatable.js:13 +#: frappe/public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" msgstr "" -#: public/js/frappe/utils/datatable.js:16 +#: frappe/public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" msgstr "" -#: public/js/frappe/utils/datatable.js:17 +#: frappe/public/js/frappe/utils/datatable.js:17 msgid "{count} rows selected" msgstr "" -#: core/doctype/doctype/doctype.py:1439 +#: frappe/core/doctype/doctype/doctype.py:1488 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}." -#: public/js/frappe/form/form.js:553 +#: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" msgstr "{} Selesai" -#: utils/data.py:2418 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: utils/data.py:2427 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" -#: core/doctype/log_settings/log_settings.py:54 +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 msgid "{} does not support automated log clearing." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:40 +#: frappe/core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." msgstr "" -#: email/doctype/email_account/email_account.py:193 -#: email/doctype/email_account/email_account.py:200 +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: utils/data.py:123 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} bukan string tanggal yang valid." -#: commands/utils.py:519 +#: frappe/commands/utils.py:562 msgid "{} not found in PATH! This is required to access the console." msgstr "" -#: database/db_manager.py:81 +#: frappe/database/db_manager.py:99 msgid "{} not found in PATH! This is required to restore the database." msgstr "" -#: utils/backups.py:441 +#: frappe/utils/backups.py:466 msgid "{} not found in PATH! This is required to take a backup." msgstr "" +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po index a74b2c56da..1400f4927b 100644 --- a/frappe/locale/pl.po +++ b/frappe/locale/pl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -1632,7 +1632,7 @@ msgstr "Zezwól na dużą liczbę edycji" #. Label of the allow_edit (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow Bulk Editing" -msgstr "" +msgstr "Zezwalaj na masową edycję" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' @@ -1780,7 +1780,8 @@ msgstr "" #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow editing even if the doctype has a workflow set up.\n\n" "Does nothing if a workflow isn't set up." -msgstr "" +msgstr "Opcja \"Zezwalaj na masową edycję\" pozwala na edycję wielu rekordów naraz, nawet jeśli dany typ dokumentu ma zdefiniowany obieg pracy.\n" +"Jeśli obieg pracy nie jest ustawiony, opcja ta nie ma żadnego wpływu." #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -7122,7 +7123,7 @@ msgstr "Wyłącz automatyczne odświeżanie" #. 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Automatic Recency Filters" -msgstr "" +msgstr "Wyłącz automatyczne filtry aktualności" #. Label of the disable_change_log_notification (Check) field in DocType #. 'System Settings' diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po index 144f3b0b53..eaa758a7b2 100644 --- a/frappe/locale/pt_BR.po +++ b/frappe/locale/pt_BR.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -3043,7 +3043,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "" +msgstr "CCO" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 @@ -3691,7 +3691,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "Cc" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po index 2072a76fdc..19aa178092 100644 --- a/frappe/locale/sv.po +++ b/frappe/locale/sv.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -20257,12 +20257,12 @@ msgstr "Lila" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "Tryck ut Avisering Inställningar" +msgstr "Skicka ut Avisering Inställningar" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notifications" -msgstr "Tryck ut Aviseringar" +msgstr "Skicka ut Aviseringar" #. Label of the push_to_google_calendar (Check) field in DocType 'Google #. Calendar' @@ -25966,7 +25966,7 @@ msgstr "Nästa Schemalagda datum kan inte vara senare än Slut Datum." #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" -msgstr "Tryck ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration" +msgstr "Skicka ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." diff --git a/frappe/locale/th.po b/frappe/locale/th.po index 20a0efc090..2fe8ca9cc7 100644 --- a/frappe/locale/th.po +++ b/frappe/locale/th.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -3043,7 +3043,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "" +msgstr "BCC" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 @@ -7242,7 +7242,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "" +msgstr "ยกเลิก" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" From 74683428cf0af9c9d75533cc0638913f10367a53 Mon Sep 17 00:00:00 2001 From: "Kitti U. @ Ecosoft" Date: Wed, 23 Jul 2025 12:15:39 +0700 Subject: [PATCH 185/211] feat: Add hook on print pdf (#33387) --- frappe/utils/print_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/utils/print_utils.py b/frappe/utils/print_utils.py index db14eb94e1..f32f38771a 100644 --- a/frappe/utils/print_utils.py +++ b/frappe/utils/print_utils.py @@ -87,6 +87,9 @@ def get_print( if pdf: return pdf + for hook in frappe.get_hooks("on_print_pdf"): + frappe.call(hook, doctype=doctype, name=name, print_format=print_format) + return get_pdf(html, options=pdf_options, output=output) From 93b47008995cba96fb087f4f7805084b456798ce Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:41:51 +0200 Subject: [PATCH 186/211] fix: make labels in error message translatable (#33166) --- frappe/model/base_document.py | 4 ++-- frappe/model/document.py | 4 ++-- frappe/utils/data.py | 4 +++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 7797b4d9ce..2480d13375 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -873,7 +873,7 @@ class BaseDocument: assert df.fieldtype == "Dynamic Link" doctype = self.get(df.options) if not doctype: - frappe.throw(_("{0} must be set first").format(self.meta.get_label(df.options))) + frappe.throw(_("{0} must be set first").format(_(self.meta.get_label(df.options)))) invalidate_distinct_link_doctypes(df.parent, df.options, doctype) meta = frappe.get_meta(doctype) @@ -1051,7 +1051,7 @@ class BaseDocument: if self.get(fieldname) != value: frappe.throw( - _("Value cannot be changed for {0}").format(self.meta.get_label(fieldname)), + _("Value cannot be changed for {0}").format(_(self.meta.get_label(fieldname))), frappe.CannotChangeConstantError, ) diff --git a/frappe/model/document.py b/frappe/model/document.py index 3c2d601d1d..148ecf2d9e 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -833,7 +833,7 @@ class Document(BaseDocument): if fail: frappe.throw( _("Value cannot be changed for {0}").format( - frappe.bold(self.meta.get_label(field.fieldname)) + frappe.bold(_(self.meta.get_label(field.fieldname))) ), exc=frappe.CannotChangeConstantError, ) @@ -1569,7 +1569,7 @@ class Document(BaseDocument): def validate_table_has_rows(self, parentfield, raise_exception=None): """Raise exception if Table field is empty.""" if not (isinstance(self.get(parentfield), list) and len(self.get(parentfield)) > 0): - label = self.meta.get_label(parentfield) + label = _(self.meta.get_label(parentfield)) frappe.throw( _("Table {0} cannot be empty").format(label), raise_exception or frappe.EmptyTableError ) diff --git a/frappe/utils/data.py b/frappe/utils/data.py index d7c6cc3374..5cbab86cce 100644 --- a/frappe/utils/data.py +++ b/frappe/utils/data.py @@ -1911,8 +1911,10 @@ def get_link_to_report( e.g. get_link_to_report("Revenue Report", "Link Label") returns: 'Link Label'. """ + from frappe import _ + if not label: - label = name + label = _(name) if filters: conditions = [] From 3efc476da92cc08f4c45a5a39b9812fb80bc3686 Mon Sep 17 00:00:00 2001 From: mahsem <137205921+mahsem@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:44:33 +0200 Subject: [PATCH 187/211] fix: web_form_context_title_translation (#33173) --- frappe/website/doctype/web_form/web_form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py index a02afab0c0..07bc9038d4 100644 --- a/frappe/website/doctype/web_form/web_form.py +++ b/frappe/website/doctype/web_form/web_form.py @@ -401,7 +401,7 @@ def get_context(context): context.parents = frappe.safe_eval(self.breadcrumbs, {"_": _}) if self.show_list and frappe.form_dict.is_new: - context.title = _("New {0}").format(context.title) + context.title = _("New {0}").format(_(context.title)) context.has_header = (frappe.form_dict.name or frappe.form_dict.is_new) and ( frappe.session.user != "Guest" or not self.login_required From aca28018973ff9f10c176321516a76109673b548 Mon Sep 17 00:00:00 2001 From: Niraj Gautam Date: Wed, 23 Jul 2025 18:19:52 +0530 Subject: [PATCH 188/211] Parse html to text in export_query (#32794) * fix: Parse html to text in export_query * chore: Use xlsx data for csv content --- frappe/desk/query_report.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 00974c8169..2e17eccea5 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -356,7 +356,12 @@ def export_query(): ) if file_format_type == "CSV": - content = get_csv_bytes(xlsx_data, csv_params) + from frappe.utils.xlsxutils import handle_html + + content = get_csv_bytes( + [[handle_html(frappe.as_unicode(v)) if isinstance(v, str) else v for v in r] for r in xlsx_data], + csv_params, + ) file_extension = "csv" elif file_format_type == "Excel": from frappe.utils.xlsxutils import make_xlsx From 6174af97551d8ce7306548191c32b267a9bccac3 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Thu, 24 Jul 2025 03:23:13 +0530 Subject: [PATCH 189/211] fix: Serbian (Latin) translations --- frappe/locale/sr_CS.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 90f6b66b1f..230c038287 100644 --- a/frappe/locale/sr_CS.po +++ b/frappe/locale/sr_CS.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-23 21:53\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -11911,7 +11911,7 @@ msgstr "Sakrivena polja" #: frappe/public/js/frappe/views/reports/query_report.js:1641 msgid "Hidden columns include: {0}" -msgstr "" +msgstr "Sakrivene kolone uključuju: {0}" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -12864,7 +12864,7 @@ msgstr "Uključi filtere" #: frappe/public/js/frappe/views/reports/query_report.js:1639 msgid "Include hidden columns" -msgstr "" +msgstr "Uključi sakrivene kolone" #: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" @@ -27321,7 +27321,7 @@ msgstr "Prevodi" #. Name of a role #: frappe/core/doctype/translation/translation.json msgid "Translator" -msgstr "" +msgstr "Prevodilac" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json From f08776b208a0d2893b7c3a92852dd8ba33eb622f Mon Sep 17 00:00:00 2001 From: MochaMind Date: Thu, 24 Jul 2025 03:23:15 +0530 Subject: [PATCH 190/211] fix: Serbian (Cyrillic) translations --- frappe/locale/sr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index 2d0d68650b..ac1562971f 100644 --- a/frappe/locale/sr.po +++ b/frappe/locale/sr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"PO-Revision-Date: 2025-07-23 21:53\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -11910,7 +11910,7 @@ msgstr "Сакривена поља" #: frappe/public/js/frappe/views/reports/query_report.js:1641 msgid "Hidden columns include: {0}" -msgstr "" +msgstr "Сакривене колоне укључују: {0}" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -12863,7 +12863,7 @@ msgstr "Укључи филтере" #: frappe/public/js/frappe/views/reports/query_report.js:1639 msgid "Include hidden columns" -msgstr "" +msgstr "Укључи сакривене колоне" #: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" @@ -27320,7 +27320,7 @@ msgstr "Преводи" #. Name of a role #: frappe/core/doctype/translation/translation.json msgid "Translator" -msgstr "" +msgstr "Преводилац" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json From 5877b980a53b1db14e1f1aa04bf8cae8c7b9730e Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 24 Jul 2025 10:17:17 +0530 Subject: [PATCH 191/211] fix: restrict workflow actions in report view --- frappe/public/js/frappe/views/reports/report_view.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/public/js/frappe/views/reports/report_view.js b/frappe/public/js/frappe/views/reports/report_view.js index 550fd4a419..414785e22d 100644 --- a/frappe/public/js/frappe/views/reports/report_view.js +++ b/frappe/public/js/frappe/views/reports/report_view.js @@ -59,11 +59,15 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView { } setup_events() { + const me = this; if (this.list_view_settings?.disable_auto_refresh) { return; } frappe.realtime.doctype_subscribe(this.doctype); frappe.realtime.on("list_update", (data) => this.on_update(data)); + this.page.actions_btn_group.on("show.bs.dropdown", () => { + me.toggle_workflow_actions(); + }); } setup_page() { From c6a2e6595abebfbd35d11fbf69ed5c14707db886 Mon Sep 17 00:00:00 2001 From: Vehbi Unal <126095007+vehbiu@users.noreply.github.com> Date: Wed, 23 Jul 2025 13:11:59 -0500 Subject: [PATCH 192/211] fix(utils): convert phone numbers passed into validate_phone_number to strings --- frappe/utils/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py index 7cb5decb3b..c1362bb33b 100644 --- a/frappe/utils/__init__.py +++ b/frappe/utils/__init__.py @@ -142,6 +142,9 @@ def validate_phone_number(phone_number, throw=False): if not phone_number: return False + if not isinstance(phone_number, str): + phone_number = str(phone_number) + phone_number = phone_number.strip() match = PHONE_NUMBER_PATTERN.match(phone_number) From d0006d1fd742bf9bee8f2c8c7c726c9814cdb1d4 Mon Sep 17 00:00:00 2001 From: marination <25857446+marination@users.noreply.github.com> Date: Thu, 24 Jul 2025 19:20:52 +0200 Subject: [PATCH 193/211] fix: Cut long list view button labels with ellipsis and tooltip --- frappe/public/js/frappe/list/list_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 3c99298830..ad4e2cef19 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -998,7 +998,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { let button_container = ""; if (this.settings.button) { const button_html = ` - -
- -{% endblock %} - -{% block script %} - -{% endblock %} diff --git a/frappe/website/doctype/blog_post/templates/blog_post_row.html b/frappe/website/doctype/blog_post/templates/blog_post_row.html deleted file mode 100644 index 91beeb12e9..0000000000 --- a/frappe/website/doctype/blog_post/templates/blog_post_row.html +++ /dev/null @@ -1,43 +0,0 @@ -{% from "frappe/templates/includes/avatar_macro.html" import avatar %} - -{%- set post = doc -%} -
-
-
- {% if post.cover_image %} - {{post.title}} - Cover Image - {% else %} -
- {{ post.title }} -
- {% endif %} -
-
-
-
- {%- if post.featured -%} - {{ _('Featured') }} · - {%- endif -%} - {{ post.category.title }} -
- {%- if post.featured -%} -
{{ post.title }}
- {%- else -%} -
{{ post.title }}
- {%- endif -%} -

{{ post.intro }}

-
- -
- -
-
diff --git a/frappe/website/doctype/blog_post/test_blog_post.py b/frappe/website/doctype/blog_post/test_blog_post.py deleted file mode 100644 index 4d66938159..0000000000 --- a/frappe/website/doctype/blog_post/test_blog_post.py +++ /dev/null @@ -1,191 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: MIT. See LICENSE -import re - -from bs4 import BeautifulSoup - -import frappe -from frappe.custom.doctype.customize_form.customize_form import reset_customization -from frappe.tests import IntegrationTestCase -from frappe.utils import random_string, set_request -from frappe.website.doctype.blog_post.blog_post import get_blog_list -from frappe.website.serve import get_response -from frappe.website.utils import clear_website_cache -from frappe.website.website_generator import WebsiteGenerator - -EXTRA_TEST_RECORD_DEPENDENCIES = ["Blog Post"] - - -class TestBlogPost(IntegrationTestCase): - def setUp(self): - reset_customization("Blog Post") - - def tearDown(self): - if hasattr(frappe.local, "request"): - delattr(frappe.local, "request") - - def test_generator_view(self): - pages = frappe.get_all( - "Blog Post", fields=["name", "route"], filters={"published": 1, "route": ("!=", "")}, limit=1 - ) - - set_request(path=pages[0].route) - response = get_response() - - self.assertTrue(response.status_code, 200) - - html = response.get_data().decode() - self.assertTrue( - '
' in html - ) - - def test_generator_not_found(self): - pages = frappe.get_all("Blog Post", fields=["name", "route"], filters={"published": 0}, limit=1) - - route = f"test-route-{frappe.generate_hash(length=5)}" - - frappe.db.set_value("Blog Post", pages[0].name, "route", route) - - set_request(path=route) - response = get_response() - - self.assertTrue(response.status_code, 404) - - def test_category_link(self): - # Make a temporary Blog Post (and a Blog Category) - blog = make_test_blog("Test Category Link") - - # Visit the blog post page - set_request(path=blog.route) - blog_page_response = get_response() - blog_page_html = frappe.safe_decode(blog_page_response.get_data()) - - # On blog post page find link to the category page - soup = BeautifulSoup(blog_page_html, "html.parser") - category_page_link = next(iter(soup.find_all("a", href=re.compile(blog.blog_category)))) - category_page_url = category_page_link["href"] - - # Visit the category page (by following the link found in above stage) - set_request(path=category_page_url) - category_page_response = get_response() - category_page_html = frappe.safe_decode(category_page_response.get_data()) - # Category page should contain the blog post title - self.assertIn(blog.title, category_page_html) - - # Cleanup - frappe.delete_doc("Blog Post", blog.name) - frappe.delete_doc("Blog Category", blog.blog_category) - - def test_blog_pagination(self): - # Create some Blog Posts for a Blog Category - category_title, blogs, BLOG_COUNT = "List Category", [], 4 - - for _ in range(BLOG_COUNT): - blog = make_test_blog(category_title) - blogs.append(blog) - - filters = frappe._dict({"blog_category": scrub(category_title)}) - # Assert that get_blog_list returns results as expected - - self.assertEqual(len(get_blog_list(None, None, filters, 0, 3)), 3) - self.assertEqual(len(get_blog_list(None, None, filters, 0, BLOG_COUNT)), BLOG_COUNT) - self.assertEqual(len(get_blog_list(None, None, filters, 0, 2)), 2) - self.assertEqual(len(get_blog_list(None, None, filters, 2, BLOG_COUNT)), 2) - - # Cleanup Blog Post and linked Blog Category - for blog in blogs: - frappe.delete_doc(blog.doctype, blog.name) - frappe.delete_doc("Blog Category", blogs[0].blog_category) - - def test_caching(self): - # to enable caching - frappe.flags.force_website_cache = True - print(frappe.session.user) - - clear_website_cache() - # first response no-cache - pages = frappe.get_all( - "Blog Post", - fields=["name", "route"], - filters={"published": 1, "title": "_Test Blog Post"}, - limit=1, - ) - - route = pages[0].route - set_request(path=route) - # response = get_response() - response = get_response() - # TODO: enable this assert - # self.assertIn(('X-From-Cache', 'False'), list(response.headers)) - - set_request(path=route) - response = get_response() - self.assertIn(("X-From-Cache", "True"), list(response.headers)) - - frappe.flags.force_website_cache = True - - def test_spam_comments(self): - # Make a temporary Blog Post (and a Blog Category) - blog = make_test_blog("Test Spam Comment") - - # Create a spam comment - frappe.get_doc( - doctype="Comment", - comment_type="Comment", - reference_doctype="Blog Post", - reference_name=blog.name, - comment_email='spam', - comment_by='spam', - published=1, - content='More spam content. spam with link.', - ).insert() - - # Visit the blog post page - set_request(path=blog.route) - blog_page_response = get_response() - blog_page_html = frappe.safe_decode(blog_page_response.get_data()) - - self.assertNotIn('spam', blog_page_html) - self.assertIn("More spam content. spam with link.", blog_page_html) - - # Cleanup - frappe.delete_doc("Blog Post", blog.name) - frappe.delete_doc("Blog Category", blog.blog_category) - - def test_like_dislike(self): - test_blog = make_test_blog() - - frappe.db.delete("Comment", {"comment_type": "Like", "reference_doctype": "Blog Post"}) - - from frappe.templates.includes.likes.likes import like - - liked = like("Blog Post", test_blog.name, True) - self.assertEqual(liked, True) - - disliked = like("Blog Post", test_blog.name, False) - self.assertEqual(disliked, False) - - frappe.db.delete("Comment", {"comment_type": "Like", "reference_doctype": "Blog Post"}) - test_blog.delete() - - -def scrub(text): - return WebsiteGenerator.scrub(None, text) - - -def make_test_blog(category_title="Test Blog Category"): - category_name = scrub(category_title) - if not frappe.db.exists("Blog Category", category_name): - frappe.get_doc(doctype="Blog Category", title=category_title).insert() - if not frappe.db.exists("Blogger", "test-blogger"): - frappe.get_doc(doctype="Blogger", short_name="test-blogger", full_name="Test Blogger").insert() - - return frappe.get_doc( - doctype="Blog Post", - blog_category=category_name, - blogger="test-blogger", - title=random_string(20), - route=random_string(20), - content=random_string(20), - published=1, - ).insert() diff --git a/frappe/website/doctype/blog_post/test_records.json b/frappe/website/doctype/blog_post/test_records.json deleted file mode 100644 index 4b29eadfa4..0000000000 --- a/frappe/website/doctype/blog_post/test_records.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "blog_category": "-test-blog-category", - "blog_intro": "Test Blog Intro", - "blogger": "_Test Blogger", - "content": "Test Blog Content", - "doctype": "Blog Post", - "title": "_Test Blog Post", - "published": 1 - }, - { - "blog_category": "-test-blog-category-1", - "blog_intro": "Test Blog Intro", - "blogger": "_Test Blogger", - "content": "Test Blog Content", - "doctype": "Blog Post", - "title": "_Test Blog Post 1", - "published": 1 - }, - { - "blog_category": "-test-blog-category-1", - "blog_intro": "Test Blog Intro", - "blogger": "_Test Blogger 1", - "content": "Test Blog Content", - "doctype": "Blog Post", - "title": "_Test Blog Post 2", - "published": 0 - }, - { - "blog_category": "-test-blog-category-1", - "blog_intro": "Test Blog Intro", - "blogger": "_Test Blogger 2", - "content": "Test Blog Content", - "doctype": "Blog Post", - "title": "_Test Blog Post 3", - "published": 0 - } -] diff --git a/frappe/website/doctype/blog_settings/README.md b/frappe/website/doctype/blog_settings/README.md deleted file mode 100644 index 0a76d4e261..0000000000 --- a/frappe/website/doctype/blog_settings/README.md +++ /dev/null @@ -1 +0,0 @@ -Blog titles and introduction texts. \ No newline at end of file diff --git a/frappe/website/doctype/blog_settings/__init__.py b/frappe/website/doctype/blog_settings/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/website/doctype/blog_settings/blog_settings.js b/frappe/website/doctype/blog_settings/blog_settings.js deleted file mode 100644 index 7be9b2c28b..0000000000 --- a/frappe/website/doctype/blog_settings/blog_settings.js +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright (c) 2016, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Blog Settings", { - refresh: function (frm) {}, -}); diff --git a/frappe/website/doctype/blog_settings/blog_settings.json b/frappe/website/doctype/blog_settings/blog_settings.json deleted file mode 100644 index be0dd749ed..0000000000 --- a/frappe/website/doctype/blog_settings/blog_settings.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "actions": [], - "creation": "2013-03-11 17:48:16", - "description": "Settings to control blog categories and interactions like comments and likes", - "doctype": "DocType", - "engine": "InnoDB", - "field_order": [ - "blog_title", - "blog_introduction", - "preview_image", - "column_break", - "enable_social_sharing", - "allow_guest_to_comment", - "browse_by_category", - "show_cta_in_blog", - "cta_section", - "title", - "subtitle", - "column_break_11", - "cta_label", - "cta_url", - "section_break_12", - "like_limit", - "column_break_14", - "comment_limit" - ], - "fields": [ - { - "fieldname": "blog_title", - "fieldtype": "Data", - "label": "Blog Title" - }, - { - "fieldname": "blog_introduction", - "fieldtype": "Small Text", - "label": "Blog Introduction" - }, - { - "default": "0", - "fieldname": "enable_social_sharing", - "fieldtype": "Check", - "label": "Enable Social Sharing" - }, - { - "collapsible": 1, - "fieldname": "column_break", - "fieldtype": "Column Break" - }, - { - "default": "0", - "fieldname": "show_cta_in_blog", - "fieldtype": "Check", - "label": "Show \"Call to Action\" in Blog" - }, - { - "depends_on": "eval:doc.show_cta_in_blog", - "fieldname": "cta_section", - "fieldtype": "Section Break", - "label": "Call to Action" - }, - { - "fieldname": "title", - "fieldtype": "Data", - "label": "Title", - "mandatory_depends_on": "eval:doc.show_cta_in_blog" - }, - { - "fieldname": "subtitle", - "fieldtype": "Data", - "label": "Subtitle", - "mandatory_depends_on": "eval:doc.show_cta_in_blog" - }, - { - "fieldname": "cta_label", - "fieldtype": "Data", - "label": "CTA Label", - "mandatory_depends_on": "eval:doc.show_cta_in_blog" - }, - { - "fieldname": "cta_url", - "fieldtype": "Data", - "label": "CTA URL", - "mandatory_depends_on": "eval:doc.show_cta_in_blog" - }, - { - "fieldname": "column_break_11", - "fieldtype": "Column Break" - }, - { - "fieldname": "section_break_12", - "fieldtype": "Section Break", - "label": "Rate Limits" - }, - { - "default": "5", - "description": "Comment limit per hour", - "fieldname": "comment_limit", - "fieldtype": "Int", - "label": "Comment limit" - }, - { - "fieldname": "column_break_14", - "fieldtype": "Column Break" - }, - { - "default": "1", - "fieldname": "allow_guest_to_comment", - "fieldtype": "Check", - "label": "Allow Guest to comment" - }, - { - "default": "0", - "fieldname": "browse_by_category", - "fieldtype": "Check", - "label": "Browse by category" - }, - { - "default": "5", - "description": "Like limit per hour", - "fieldname": "like_limit", - "fieldtype": "Int", - "label": "Like limit" - }, - { - "fieldname": "preview_image", - "fieldtype": "Attach Image", - "label": "Preview Image" - } - ], - "icon": "fa fa-cog", - "idx": 1, - "issingle": 1, - "links": [], - "modified": "2024-03-23 16:01:29.318488", - "modified_by": "Administrator", - "module": "Website", - "name": "Blog Settings", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "email": 1, - "print": 1, - "read": 1, - "role": "Website Manager", - "share": 1, - "write": 1 - }, - { - "email": 1, - "print": 1, - "read": 1, - "role": "Blogger", - "share": 1 - } - ], - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/website/doctype/blog_settings/blog_settings.py b/frappe/website/doctype/blog_settings/blog_settings.py deleted file mode 100644 index 2864eebc2c..0000000000 --- a/frappe/website/doctype/blog_settings/blog_settings.py +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: MIT. See LICENSE - -# License: MIT. See LICENSE - -import frappe -from frappe.model.document import Document - - -class BlogSettings(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - allow_guest_to_comment: DF.Check - blog_introduction: DF.SmallText | None - blog_title: DF.Data | None - browse_by_category: DF.Check - comment_limit: DF.Int - cta_label: DF.Data | None - cta_url: DF.Data | None - enable_social_sharing: DF.Check - like_limit: DF.Int - preview_image: DF.AttachImage | None - show_cta_in_blog: DF.Check - subtitle: DF.Data | None - title: DF.Data | None - # end: auto-generated types - - def on_update(self): - from frappe.website.utils import clear_cache - - clear_cache("blog") - clear_cache("writers") - - -def get_like_limit(): - return frappe.get_single_value("Blog Settings", "like_limit") or 5 - - -def get_comment_limit(): - return frappe.get_single_value("Blog Settings", "comment_limit") or 5 diff --git a/frappe/website/doctype/blog_settings/test_blog_settings.py b/frappe/website/doctype/blog_settings/test_blog_settings.py deleted file mode 100644 index 653f68c1bb..0000000000 --- a/frappe/website/doctype/blog_settings/test_blog_settings.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2020, Frappe Technologies and Contributors -# License: MIT. See LICENSE -# import frappe -from frappe.tests import IntegrationTestCase - - -class TestBlogSettings(IntegrationTestCase): - pass diff --git a/frappe/website/doctype/blogger/README.md b/frappe/website/doctype/blogger/README.md deleted file mode 100644 index 994e686ad2..0000000000 --- a/frappe/website/doctype/blogger/README.md +++ /dev/null @@ -1 +0,0 @@ -User of blog writer in "Blog" section. \ No newline at end of file diff --git a/frappe/website/doctype/blogger/__init__.py b/frappe/website/doctype/blogger/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/website/doctype/blogger/blogger.js b/frappe/website/doctype/blogger/blogger.js deleted file mode 100644 index 29afdb6298..0000000000 --- a/frappe/website/doctype/blogger/blogger.js +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright (c) 2016, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Blogger", { - refresh: function (frm) {}, -}); diff --git a/frappe/website/doctype/blogger/blogger.json b/frappe/website/doctype/blogger/blogger.json deleted file mode 100644 index cbc1dfe467..0000000000 --- a/frappe/website/doctype/blogger/blogger.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "actions": [], - "allow_import": 1, - "autoname": "field:short_name", - "creation": "2013-03-25 16:00:51", - "description": "User ID of a Blogger", - "doctype": "DocType", - "document_type": "Setup", - "engine": "InnoDB", - "field_order": [ - "disabled", - "short_name", - "full_name", - "user", - "bio", - "avatar" - ], - "fields": [ - { - "default": "0", - "fieldname": "disabled", - "fieldtype": "Check", - "label": "Disabled" - }, - { - "description": "Will be used in url (usually first name).", - "fieldname": "short_name", - "fieldtype": "Data", - "label": "Short Name", - "reqd": 1, - "unique": 1 - }, - { - "fieldname": "full_name", - "fieldtype": "Data", - "in_list_view": 1, - "label": "Full Name", - "reqd": 1 - }, - { - "fieldname": "user", - "fieldtype": "Link", - "label": "User", - "options": "User" - }, - { - "fieldname": "bio", - "fieldtype": "Small Text", - "label": "Bio" - }, - { - "fieldname": "avatar", - "fieldtype": "Attach Image", - "label": "Avatar" - } - ], - "icon": "fa fa-user", - "idx": 1, - "image_field": "avatar", - "links": [ - { - "link_doctype": "Blog Post", - "link_fieldname": "blogger" - } - ], - "make_attachments_public": 1, - "max_attachments": 1, - "modified": "2024-03-23 16:01:29.432477", - "modified_by": "Administrator", - "module": "Website", - "name": "Blogger", - "naming_rule": "By fieldname", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "import": 1, - "print": 1, - "read": 1, - "report": 1, - "role": "Website Manager", - "share": 1, - "write": 1 - }, - { - "email": 1, - "print": 1, - "read": 1, - "role": "Blogger", - "share": 1, - "write": 1 - } - ], - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "title_field": "full_name", - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/website/doctype/blogger/blogger.py b/frappe/website/doctype/blogger/blogger.py deleted file mode 100644 index 2bd7b75fe8..0000000000 --- a/frappe/website/doctype/blogger/blogger.py +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: MIT. See LICENSE - -# License: MIT. See LICENSE - -import frappe -from frappe import _ -from frappe.model.document import Document - - -class Blogger(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - avatar: DF.AttachImage | None - bio: DF.SmallText | None - disabled: DF.Check - full_name: DF.Data - short_name: DF.Data - user: DF.Link | None - # end: auto-generated types - - def validate(self): - if self.user and not frappe.db.exists("User", self.user): - # for data import - frappe.get_doc( - {"doctype": "User", "email": self.user, "first_name": self.user.split("@", 1)[0]} - ).insert() - - def on_update(self): - "if user is set, then update all older blogs" - - from frappe.website.doctype.blog_post.blog_post import clear_blog_cache - - clear_blog_cache() - - if self.user: - for blog in frappe.db.sql_list( - """select name from `tabBlog Post` where owner=%s - and ifnull(blogger,'')=''""", - self.user, - ): - b = frappe.get_doc("Blog Post", blog) - b.blogger = self.name - b.save() - - frappe.permissions.add_user_permission("Blogger", self.name, self.user) diff --git a/frappe/website/doctype/blogger/test_blogger.py b/frappe/website/doctype/blogger/test_blogger.py deleted file mode 100644 index c694c81314..0000000000 --- a/frappe/website/doctype/blogger/test_blogger.py +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: MIT. See LICENSE - -import frappe diff --git a/frappe/website/doctype/blogger/test_records.json b/frappe/website/doctype/blogger/test_records.json deleted file mode 100644 index 4ccb7fed32..0000000000 --- a/frappe/website/doctype/blogger/test_records.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "doctype": "Blogger", - "full_name": "_Test Blogger", - "short_name": "_Test Blogger" - }, - { - "doctype": "Blogger", - "full_name": "_Test Blogger 1", - "short_name": "_Test Blogger 1" - }, - { - "doctype": "Blogger", - "full_name": "_Test Blogger 2", - "short_name": "_Test Blogger 2" - } -] \ No newline at end of file diff --git a/frappe/website/doctype/website_route_meta/test_website_route_meta.py b/frappe/website/doctype/website_route_meta/test_website_route_meta.py index 9008532075..18fabbff26 100644 --- a/frappe/website/doctype/website_route_meta/test_website_route_meta.py +++ b/frappe/website/doctype/website_route_meta/test_website_route_meta.py @@ -5,21 +5,21 @@ from frappe.tests import IntegrationTestCase from frappe.utils import set_request from frappe.website.serve import get_response -EXTRA_TEST_RECORD_DEPENDENCIES = ["Blog Post"] +EXTRA_TEST_RECORD_DEPENDENCIES = ["Web Page"] class TestWebsiteRouteMeta(IntegrationTestCase): def test_meta_tag_generation(self): blogs = frappe.get_all( - "Blog Post", fields=["name", "route"], filters={"published": 1, "route": ("!=", "")}, limit=1 + "Web Page", fields=["name", "route"], filters={"published": 1, "route": ("!=", "")}, limit=1 ) blog = blogs[0] # create meta tags for this route doc = frappe.new_doc("Website Route Meta") - doc.append("meta_tags", {"key": "type", "value": "blog_post"}) - doc.append("meta_tags", {"key": "og:title", "value": "My Blog"}) + doc.append("meta_tags", {"key": "type", "value": "web_page"}) + doc.append("meta_tags", {"key": "og:title", "value": "My Web Page"}) doc.name = blog.route doc.insert() @@ -31,8 +31,8 @@ class TestWebsiteRouteMeta(IntegrationTestCase): html = self.normalize_html(response.get_data().decode()) - self.assertIn(self.normalize_html(""""""), html) - self.assertIn(self.normalize_html(""""""), html) + self.assertIn(self.normalize_html(""""""), html) + self.assertIn(self.normalize_html(""""""), html) def tearDown(self): frappe.db.rollback() diff --git a/frappe/website/workspace/website/website.json b/frappe/website/workspace/website/website.json index bcbbcb74ad..d3eb13496c 100644 --- a/frappe/website/workspace/website/website.json +++ b/frappe/website/workspace/website/website.json @@ -1,6 +1,6 @@ { "charts": [], - "content": "[{\"id\":\"yq1JKyNTFg\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Web Page\",\"col\":3}},{\"id\":\"5GuZo0uP_K\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Web Form\",\"col\":3}},{\"id\":\"292vrD2W3o\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Blog Post\",\"col\":3}},{\"id\":\"xAkA6ItB7O\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"k8RquSngSk\",\"type\":\"card\",\"data\":{\"card_name\":\"Blog\",\"col\":4}},{\"id\":\"qEHBG-BEBI\",\"type\":\"card\",\"data\":{\"card_name\":\"Web Site\",\"col\":4}},{\"id\":\"oUox7d-8lQ\",\"type\":\"card\",\"data\":{\"card_name\":\"Knowledge Base\",\"col\":4}},{\"id\":\"96xAe0QVaV\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"ZvrzvEoYtc\",\"type\":\"card\",\"data\":{\"card_name\":\"Settings\",\"col\":4}},{\"id\":\"FVMFcgsiyK\",\"type\":\"card\",\"data\":{\"card_name\":\"Tracking\",\"col\":4}}]", + "content": "[{\"id\":\"yq1JKyNTFg\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Web Page\",\"col\":3}},{\"id\":\"5GuZo0uP_K\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Web Form\",\"col\":3}},{\"id\":\"xAkA6ItB7O\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"qEHBG-BEBI\",\"type\":\"card\",\"data\":{\"card_name\":\"Web Site\",\"col\":4}},{\"id\":\"oUox7d-8lQ\",\"type\":\"card\",\"data\":{\"card_name\":\"Knowledge Base\",\"col\":4}},{\"id\":\"96xAe0QVaV\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"ZvrzvEoYtc\",\"type\":\"card\",\"data\":{\"card_name\":\"Settings\",\"col\":4}},{\"id\":\"FVMFcgsiyK\",\"type\":\"card\",\"data\":{\"card_name\":\"Tracking\",\"col\":4}}]", "creation": "2020-03-02 14:13:51.089373", "custom_blocks": [], "docstatus": 0, @@ -67,48 +67,6 @@ "onboard": 0, "type": "Link" }, - { - "hidden": 0, - "icon": "", - "is_query_report": 0, - "label": "Blog", - "link_count": 0, - "onboard": 0, - "type": "Card Break" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Blog Post", - "link_count": 0, - "link_to": "Blog Post", - "link_type": "DocType", - "onboard": 1, - "type": "Link" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Blogger", - "link_count": 0, - "link_to": "Blogger", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Blog Category", - "link_count": 0, - "link_to": "Blog Category", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, { "hidden": 0, "icon": "project", @@ -279,14 +237,6 @@ "roles": [], "sequence_id": 14.0, "shortcuts": [ - { - "color": "Green", - "format": "{} Published", - "label": "Blog Post", - "link_to": "Blog Post", - "stats_filter": "{\"published\":\"1\"}", - "type": "DocType" - }, { "color": "Green", "format": "{} Published", diff --git a/frappe/www/rss.py b/frappe/www/rss.py deleted file mode 100644 index e275893204..0000000000 --- a/frappe/www/rss.py +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: MIT. See LICENSE - -from urllib.parse import quote, urljoin - -import frappe -from frappe.utils import cstr, escape_html, get_request_site_address, now - -no_cache = 1 -base_template_path = "www/rss.xml" - - -def get_context(context): - """generate rss feed""" - - host = get_request_site_address() - - blog_list = frappe.get_all( - "Blog Post", - fields=["name", "published_on", "modified", "title", "blog_intro", "route"], - filters={"published": 1}, - order_by="published_on desc", - limit=20, - ) - - for blog in blog_list: - blog.link = urljoin(host, blog.route) - blog.blog_intro = escape_html(blog.blog_intro or "") - blog.title = escape_html(blog.title or "") - - if blog_list: - modified = max(blog["modified"] for blog in blog_list) - else: - modified = now() - - blog_settings = frappe.get_doc("Blog Settings", "Blog Settings") - - context = { - "title": blog_settings.blog_title or "Blog", - "description": blog_settings.blog_introduction or "", - "modified": modified, - "items": blog_list, - "link": host + "/blog", - } - - # print context - return context diff --git a/frappe/www/rss.xml b/frappe/www/rss.xml deleted file mode 100644 index 8752896370..0000000000 --- a/frappe/www/rss.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - {{ title }} - {{ description }} - {{ link }} - {{ modified }} - {{ modified }} - 1800 - {% for i in items %} - {{ i.title }} - {{ i.blog_intro }} - {{ i.link }} - {{ i.name }} - {{ i.published_on }} - {% endfor %} - - From 6d1008933f9ba3d2a9801615ec3bade92bc1aaff Mon Sep 17 00:00:00 2001 From: Elton Lobo <62232730+EltonLobo07@users.noreply.github.com> Date: Mon, 28 Jul 2025 16:25:53 +0530 Subject: [PATCH 199/211] feat: add user invitation doctype & related public methods (#33308) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add user invitation doctype & related public methods * style(user-invitation): execute formatters & add semgrep comments * refactor(user-invitation): use `is` to compare `None` values * fix(user-invitation): skip fetching `after_accept` for default app * fix(user-invitation): translate email templates * fix(user-invitaton): return pending invites from invite by email api * refactor(user-invitation): improve code quality * fix(user-invitation): translate all error messages * refactor(user-invitation): improve security & readability Improvements: - move invite expiration check to `daily_maintenance` - explicitly import all of the used packages - specify methods for all security-critical endpoints - improve error messages and give them suitable titles - remove unnecessary utility functions - make invitation key management secure - translate all of the subjects of the sent emails - use the `app_title` hook to create email titles - commit the work done after each iteration of the background invitation expiry checker - restructure code to improve readability - use `user.reset_password` to generate the target link - use clear long names to name identifiers - add document states with relevant colors (User Invitation doctype) - differ `sendmail` emails whenever possible - send an email to the invitation creator instead of the invitee after the invite has expired - remove `User Invitation Manager` role * fix(user-invitation): use valid emails to test doctype & related code * feat(user-invitation): support adding multiple roles * refactor(user-invitation): mark relevant fields `set only once` * feat(user-invitation): add `Cancelled` status * test(user-invitation): correct broken tests * test(user-invitation): form valid f-strings & run code formatter * feat(user-invitation): make doctype usable from desk * fix(user-invitation): remove delete permission from invitation doctype * feat(user-invitation): pass user inserted info to `after_accept` hook * refactor(user-invitation): improve custom action methods & errors Improvements: - trigger actions only when the invitation is in the `Pending` state - use lowercase letters to start error messages - handle cases where `user_invitation_hook` is not defined * refactor(user-invitation): remove site name from email templates * docs(user-invitation): add internal documentation * feat(user-invitation): add 'get pending' & cancel invites apis * fix(user-invitation): make invitation app specific * refactor(user-invitation): avoid mixing function programming * fix(user-invitation): make apis usable for app specific valid users * fix(user-invitation): allow app specific invites * feat(user-invitation): make list view & permission checks app specific * refactor(user-invitation): convert class methods to static when possible * feat(user-invitation): add `app_only_for` method to the doc * fix(user-invitation): f-string syntax error in `get_permission_query_conditions` * docs(user-invitation): add examples & improve the internal doc * refactor: rename method name static_ is unnecessary only_for doesn't make sense in this context when arguments are not roles * fix: Support POST request too We dont follow REST semantics 100%, anything that modifies something should ideally be doable with POST too. * chore: cap * fix: Avoid ignore_permissions as user arg --------- Co-authored-by: Ankush Menat --- frappe/core/api/user_invitation.py | 126 +++++++++ .../core/doctype/user_invitation/__init__.py | 0 .../cancel_invitation_api_example.png | Bin 0 -> 194914 bytes .../get_pending_invitations_api_example.png | Bin 0 -> 222530 bytes .../user_invitation/internal_doc/index.md | 106 ++++++++ .../invite_by_email_api_example.png | Bin 0 -> 288575 bytes .../role_doc_role_permissions_manager.png | Bin 0 -> 120632 bytes ...nvitation_doc_role_permissions_manager.png | Bin 0 -> 123424 bytes .../user_invitation_hooks_example.png | Bin 0 -> 104928 bytes .../user_invitation/test_user_invitation.py | 254 ++++++++++++++++++ .../user_invitation/user_invitation.js | 23 ++ .../user_invitation/user_invitation.json | 143 ++++++++++ .../user_invitation/user_invitation.py | 241 +++++++++++++++++ frappe/core/doctype/user_role/__init__.py | 0 frappe/core/doctype/user_role/user_role.json | 35 +++ frappe/core/doctype/user_role/user_role.py | 23 ++ frappe/hooks.py | 7 + frappe/templates/emails/user_invitation.html | 20 ++ .../emails/user_invitation_cancelled.html | 9 + .../emails/user_invitation_expired.html | 9 + 20 files changed, 996 insertions(+) create mode 100644 frappe/core/api/user_invitation.py create mode 100644 frappe/core/doctype/user_invitation/__init__.py create mode 100644 frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png create mode 100644 frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png create mode 100644 frappe/core/doctype/user_invitation/internal_doc/index.md create mode 100644 frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png create mode 100644 frappe/core/doctype/user_invitation/internal_doc/role_doc_role_permissions_manager.png create mode 100644 frappe/core/doctype/user_invitation/internal_doc/user_invitation_doc_role_permissions_manager.png create mode 100644 frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png create mode 100644 frappe/core/doctype/user_invitation/test_user_invitation.py create mode 100644 frappe/core/doctype/user_invitation/user_invitation.js create mode 100644 frappe/core/doctype/user_invitation/user_invitation.json create mode 100644 frappe/core/doctype/user_invitation/user_invitation.py create mode 100644 frappe/core/doctype/user_role/__init__.py create mode 100644 frappe/core/doctype/user_role/user_role.json create mode 100644 frappe/core/doctype/user_role/user_role.py create mode 100644 frappe/templates/emails/user_invitation.html create mode 100644 frappe/templates/emails/user_invitation_cancelled.html create mode 100644 frappe/templates/emails/user_invitation_expired.html diff --git a/frappe/core/api/user_invitation.py b/frappe/core/api/user_invitation.py new file mode 100644 index 0000000000..09811a9ace --- /dev/null +++ b/frappe/core/api/user_invitation.py @@ -0,0 +1,126 @@ +import frappe +import frappe.utils +from frappe import _ +from frappe.core.doctype.user_invitation.user_invitation import UserInvitation + + +@frappe.whitelist(methods=["POST"]) +def invite_by_email( + emails: str, roles: list[str], redirect_to_path: str, app_name: str = "frappe" +) -> dict[str, list[str]]: + UserInvitation.validate_role(app_name) + + # validate emails + frappe.utils.validate_email_address(emails, throw=True) + email_list = frappe.utils.split_emails(emails) + if not email_list: + frappe.throw(title=_("Invalid input"), msg=_("No email addresses to invite")) + + # get relevant data from the database + accepted_invite_emails = frappe.db.get_all( + "User Invitation", + filters={"email": ["in", email_list], "status": "Accepted", "app_name": app_name}, + pluck="email", + ) + pending_invite_emails = frappe.db.get_all( + "User Invitation", + filters={"email": ["in", email_list], "status": "Pending", "app_name": app_name}, + pluck="email", + ) + + # create invitation documents + to_invite = list(set(email_list) - set(accepted_invite_emails) - set(pending_invite_emails)) + for email in to_invite: + frappe.get_doc( + doctype="User Invitation", + email=email, + roles=[dict(role=role) for role in roles], + app_name=app_name, + redirect_to_path=redirect_to_path, + ).insert(ignore_permissions=True) + + return { + "accepted_invite_emails": accepted_invite_emails, + "pending_invite_emails": pending_invite_emails, + "invited_emails": to_invite, + } + + +@frappe.whitelist(allow_guest=True, methods=["GET"]) +def accept_invitation(key: str) -> None: + _accept_invitation(key, False) + + +# `app_name` is required for security +@frappe.whitelist(methods=["PATCH", "POST"]) +def cancel_invitation(name: str, app_name: str): + UserInvitation.validate_role(app_name) + + if not frappe.db.exists("User Invitation", name): + frappe.throw(title=_("Error"), msg=_("Invitation not found")) + + invitation = frappe.get_doc("User Invitation", name) + if invitation.app_name != app_name: + # message is not specific enough for security + frappe.throw(title=_("Error"), msg=_("Invitation not found")) + + if invitation.status == "Cancelled": + return {"cancelled_now": False} + + if invitation.status != "Pending": + frappe.throw(title=_("Error"), msg=_("Invitation cannot be cancelled")) + + invitation.flags.ignore_permissions = True + return {"cancelled_now": invitation.cancel_invite()} + + +@frappe.whitelist(methods=["GET"]) +def get_pending_invitations(app_name: str): + UserInvitation.validate_role(app_name) + + pending_invitations = frappe.db.get_all( + "User Invitation", fields=["name", "email"], filters={"status": "Pending", "app_name": app_name} + ) + res = [] + for pending_invitation in pending_invitations: + roles = frappe.db.get_all("User Role", fields=["role"], filters={"parent": pending_invitation.name}) + res.append( + { + "name": pending_invitation.name, + "email": pending_invitation.email, + "roles": [r.role for r in roles], + } + ) + return res + + +def _accept_invitation(key: str, in_test: bool) -> None: + # get invitation + hashed_key = frappe.utils.sha256_hash(key) + invitation_name = frappe.db.get_value("User Invitation", filters={"key": hashed_key}) + if not invitation_name: + frappe.throw(title=_("Error"), msg=_("Invalid key")) + invitation = frappe.get_doc("User Invitation", invitation_name) + + # accept invitation + invitation.accept(ignore_permissions=True) + + user = frappe.get_doc("User", invitation.email) + should_update_password = not user.last_password_reset_date and not bool( + frappe.get_system_settings("disable_user_pass_login") + ) + + # set redirect_to + redirect_to = frappe.utils.get_url(invitation.get_redirect_to_path()) + if should_update_password: + redirect_to = f"{user.reset_password()}&redirect_to=/{invitation.get_redirect_to_path()}" + + # GET requests do not cause an implicit commit + frappe.db.commit() # nosemgrep + + if not in_test and not should_update_password: + frappe.local.login_manager.login_as(invitation.email) + + # set response + frappe.local.response["type"] = "redirect" + frappe.local.response["location"] = redirect_to diff --git a/frappe/core/doctype/user_invitation/__init__.py b/frappe/core/doctype/user_invitation/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png new file mode 100644 index 0000000000000000000000000000000000000000..b1cdc73a692337494947f8914dd1a9a6e78c3058 GIT binary patch literal 194914 zcmbTebyyrr(>{y^2@U~5a0?LJ-5mmiAi>?;eR0=7aEAm-aCevB?(V+0+iy6}^S1Ox=Kl%(iq2nYmy2ngsNcv#?!L8KiR z0^)U z@bvg<4cljP!wIi`y7l>4M>eu|WDN>Jj5MudV9l7s6aN%dvz#0UVv>a1x{31(?T&T; z8@Z$}yg-b@Jh^wQLqE)SDNHUV1=;{Jh*c^4C~{COExQRcf>=*vXVMJ809(io zZ8fzy-T)pnb_x3~_<>7YYVR?r`&8pF;cuN%iYJ@u?~#rvf1@LE$vlr7-K-=~#K{c_ zNux`av3i8L;kTj%Mltd_ zhAF;+48s?q=P?eu<$4-Zr0t9PJec}Hk10QiEV)D|1@~7-{`uVN$A^og8|q=qu0R^| zfe4i3VLj?~46`_WI!}eH89&F2;J|)Z=W-hhvv7z>b-0_C>?Sm}^&`uFTPDbkMoJIKiWc^8 z22GsUO8%t%g2WQ7T+%f6=dRKKM)v zQ+%RUf;TRy+(BZC#7iXSkJEl@ zOVWf+A8fHIVvFdB-ST=R!01HA_06kK(o`S%(Tx1{vs4SD;`Ifr$zDKeB8?ZNE2$KZgwO{#@=@M8giB8Zy*I-)Y?j?qJs&(Y-J8 zpH;v|$&ak;a9by}#n+@Sfv?4Mfp>W~6OGpa>Y!OeK0&#G@Wjv#(D7&JBxKUbqv*#&;@3t-OJPZRNLhthf*u5KAj(FXzAF_$VvP0$b09Rb3$Y8X%SBpRT3p&% z+93```d3_kd=!<|=Xam(K7OWDi&g#MMow);Rv6_NM<< zE&A;@X0bVyXOPpiYKQ>v`ZL1TGl_ZBARHe=RPUIqTs<&(+ZD^*QuhhL?C zVPP|NAKVfU<|5tsKJ~+s%^9>wI;G`?P*zhD)!HXp2;3x3nH6i zYO~8VNZr7rq@iq?u+HZhezU{4<20N;yrQY8MNS_{-&yj$q_0G|q!#yGgk%qF4+Td= zYUzS>ElTYOm>ygYmRNeeC_DXq!MS_t$qr)ozIvMT&k)bRA8F2DW=Q!`F+<3ZT$|0& z+t_no9$k()l0UtJJK>ky&fDdAWU)hYYIXJa+unrEB>hz6_SGHM{pHQC``)`RHv+F2 zUrQpI!oNjuMA5`{eGiZM2BV5%mt7-z$Y`cg!cWUT5iS#zBv3S1DS#KH8Yw=YCb(U% zT~DKvFd#K3yhDRb5QazJqN`KVeKY5`&W`Sm=x|}$Icq=vPvW06DHzR+ce)qBZ J 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

F>QNGJN*%?c?N9+vCnTvL*|Aj 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

    X{}{;>rI6~L`+4Ifnh-8Tcg8av7) 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
    sdY{S{&n$5`@2+ZVTD8T})AQ3w*! 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
    OEh?+8Nxhe+ z{yD*Kr>K)B%}@KWy0#%~14xRp_d2*Hc2ZUOmyBf_z${dPAjiiWg z{h(?##?ssDm*N1o)e00XEMNF-72c#2i*>z1r7zy=CsY_LbX47;VZo4VG|#33pN`|>8%oY8%$ad3v((!IW=i0!w#R;}49c0+UKQTVpD^QKcd zb)dlBE%7HPu@76pN6Wp`7feB(HDi$WQ<$pX)1lj@ul`ZG1X|LQ@#M=cEo-JZXV@Ke z*K28S@Wz@4Q{B#}5FfQ;h}~KJF|iSK>FU&PYQ?llRE|1H;t9!Lf-GoSDUZ!3fa>={;e@2msXC^o6jwQ@rgreem{&x8FdfIaxNv zQhK;Fk7}N)(G3c-PU^$j0h*T4D*Oj=J1DJCYo2#SpK-|0c7zsx&3Lq7TY_GOzg5$!AT~3U z3kxdhWDp^E9jN{NHGRb^uYzMW$EwS8KsJm))I}S_e|zhXlI!lNRTacD$LtCI%`sRu zXz6-jS)X1#p8j)8e36kQw|@FMqW{HB8yjRDBHrpkw#=VzANMpR@9ei%Mfq6ZyB5VIDQUlJQt93aj0p-=K&ZD;X8ay8PcA zp8$J8emi`JhCvKKp+Tij%&zP9vShq)_okx=&5|^`1kgnX9KaP`G50`uArq_4N9@uJ zlm{G2UW>}TPD;s{OSkN;2cU$SscCGKni(JV_xDj!e!hNB8D}j0HP5#KM_DJ$o{fNn zLh$Iy-T_`prdn(+K&CCcu70`hJm8soFq2aM+*u&CzO1k3(-~aGz@1zPu*(_2QO1Cx z#m6~IJ#VA&@)?3roD3~`z-NNe@pjrKTzR3Vi$APAoGBo^ZS+XG6R&p^C&3rz-qv0t zUZ2zKP(8o#Cfz%Ilj|W_$4Wya$--6GGV-*9`Ur>95q>YP=NC7by}mBhk0})1ctO`@ zjgtX|_cz@~zGzvoZpmlA`IgT-;FH9p-umrglj#F( z-xqshk|)=8Z>OXbbR|XT&Qa7q>XWefU1Y?a;BSya>6(!mQ?!D11C2PF0b~J4-VYz1 z%p;TY$v6)rNF2efE~+X29LUh0)?x>#h$Ax_8_O(kbinkSWt~xu&!RC=dgR_=4FXC! zu^7V6+Wo4ne=mLOzLi=^Z=4qUyYcq1rl!XGaZl1Y{rE0_bir6D;ESfvN-+rJ9J{fY zW;f_EH>+xDnZv#7sFT0g$>$o(>6(prxwGzlFixx5Nv|kO?l)}-+}xY|$E*&eMCzDk z;rf;z9lkaQ-!_%;Co`@zVNatVq|(JUqjVjMSzZf19k}c;mQsGi^hEcfo#x5_>4jg| zxXN|>_TsJpm+6nD`)Cp9llbA@v%ewCzt`~zh3Ti=cb3Fk+aaD+Kzk1WFfIGmO_2sW#Jhe7m^0Y?pl|h0$Kpj&Y8VKmzW$%_7cKD7U_J z(LFjw$TC=WxaVvBHjdvhzfHRe0&;T;BX6A8(V+}fH0RW-XoXn`4i>;K2znmU+9{dV zZ^s|*bldCpm9)8x!1ZPw?Pfg|V@0(#J9j2?>tgktC$tI-jyHm6z=q@8tf~VLxoLUW ziM%2;Y2bbz_IwhB*^Who3QTp*A>HBTWE1|iZ!R@*JYHHW_uJ%&-?wGY_FroYuQ*lo zO47Z8S^|C%U-eHGX}A>pG&ely}Z8lR3tC1+$FN$ir+% zIha≀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 Z1NxBvwJRU*Ug2N>0#8>zmvv4FO#nnwQNjQK literal 0 HcmV?d00001 diff --git a/frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png new file mode 100644 index 0000000000000000000000000000000000000000..f5994fa6dff1dd7a22c9c5fe7eb286f4cb85b912 GIT binary patch literal 222530 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 z

    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 z zCM!W2`X(4Jwr>YY(le8GGuYZ%1AVHHFxaQ7xzbJokf8UO<5AN3vNQj)u^i(SFi zcP~0_HtwTD#aBhOCM+f`iUHpeseaP?TAVzVK0-#w7u|%4qfRvPC`eL6G^)I%)DEGx z)Q~hNKqDymKo%GC0C=;zOoEJh=e5sX@xg)fxa2JvNkn{Hc={v5iV#I#YLz8$3R3Kl z14q4e$lJFfpQPyhMkLDyFOoGX84j}ZS2vftM4gtppIP7+A%im+iIKNrE}Qyx1Nog1 zOqpqpvQuA{{Hko~;Xy)~^u(Eg&TaMRc-_YwIh?{YG)Y_ z*-W=SYgFZnLIg!W{rhmC&zFJJY&;u(TigC+CXkOHH5`I&lL; z=!xv9KJkjPiQz3#D1DV_S{4KPB)tPFNb|4}2rFQeOs+g4Hcr#q!YZy;iqIny63|}I z`cPxY0K0-}(U1$ss^NpjV0pVA_SIXXx5o$7ZGS(i8D|A))wVvvNnhfh=bKZ?Jp^9L z(JxVu5R@<|^YS_T?!_u}W-m8duK03_37(GMx2UqA=@*|?NPy}^`!WRH-WJkLdL;vv zpel#U$4rm(?Pad+*68_qg46ldFufu&3dzqeKd;{l?t^Z(8~PEXNbxSM65q_jQz3f>@@ zKBjJS1uw~;TY?{3)39RYMpKhwit34&7|3@3qL(7YHPg+%?7sfCzlQ~xmY;mZ+1)}s zFzr*4rYahMTI8d8=IDht7~ypCjfUiDGPC=BOcUil02Fd`@ZxpV&bd-Bv0x>>8 z;Fb;JRcdXT;MfcqkYvWkO*#SnY}3IMJOF#t+%YXoT~@k3aL2W`rL{?GwFIj5A$!2c zwOO4$T8Vt1b3VNHY!d#~7}%m|{`v^{nlP0c$qx_)W1KRb8-E-R72?Hei!kCvfsLJ5 ztjV*2&9pN?9o%H@7=CB=V2<)q!5qt61F|8YF_=zvrP$%A`AV0B4)x=5VoWXeWUbGr zifyK-3I2NxgeKV`wLT)hfVTM}RIDRXwXf}Nz|(9ZvvNYX>FE6ObX`(f!-b>og z!DND*9qEBqCRU*_Qem zIG>Q6<>s)4H%rVUU$0*Q7qbZ;s8pPu1!R0EP(@|qC@D_3iK9g3+4~rm7@hsQB*WaF zpYk9~5HD?n;=>d79pxz`ZiwE{7~Q9rT8j*6tk-e?gy?k^;MBsJnqF6$@5EQ7V#l)e z;u4qX?ZIU&e4p$$1_Y|TguO9g=N!x+_f80__077WF~6Ue7^Cs6K93ACe%Un79~>xO zHC=I2rlwa!$dG;PGZiDZp`r34m7?)z>Cc@yo z;M<6rNn&KA7`>wxqx{I`av3tXI&MZsNz$|5D;BvD2EoqP{ZFqo#=+b5?&xB`M8f5y zizXpmtsD`m@|cC&bnGpJ;0-FI27UDaEPCJdWseKzhq%0+bTNT^*JCf0YY8==Z#{&) z!$SG&?)gXgCjLh~)~uR`jm)~S|H~|O`aXb6_Vf$WQ%9bX^9^x)sZQT=Kp(~7X@lTt zF;eB;&?!}xGA^4Gx8gH^nXYnzMx-w(D^K{~f8y|Rzk*6H1y-1#n|&?_1Wqhma%E%C zAyT1EY=4@bgFj=pjlz1FV7De1gYM@acuGSggifeIiK`mkNfFVS4h+ei4?=AWqx=5squl2S#JVH{wCZ}WnNU zG$ChFDc+zZawir21jG8)n{Slx_)?6)8sWFR%b2R2{7U7T`@j&o!W>s${b9biQB^!Q z4=#)AyB(upKDK?zG@SwA{Ny2P6NQYrb_5K9a__C+m!)c1oyCdv2D2Vq*zk9D!hkb~ z06M2BP+9R>PT8xmHAK~Entk+vn57O^CkB1oS*1HO>54656DQJ|F3wG}zSU~AK`KBt z^A+x!BV@QIa-$W}P0#LFU;f6;{GVVdEEcqw`Lnd&*^=J3p;I#U9);hUs3|~?ar%FU za&1icxdei32H{i`4_FKL=P~#ZTPkuI(?)PKy_ok4;U16*oQQPjy>de`?>2bqCHGWLg`*|SA8BS3moC@8%3PU1sMXfdXDApj zu+H=_7YU5rRH}nNmVFcNiFPD~Zj_>!zovL%cs7`A=}LZY3xo@9bbRD(TzPc%*=f?i zTjjjT!nOvt;7NkSQ5s2cIQURsr?8zxDq--4N>@EMxCeh{hzrz}-NJ&x>&F@ga5G@} zZtr;uWhYN#7pCMeXcz}ds{@@8J4ic8XC=ww8!n<_8UTbx1dHK$k&R@gtU)o?xTh6` zb?9=_<&6ff90~A5b|dEwWHyicK$0|+4&TW{&lfKh;NDuhSCcWgeWZQ`Nk!2f3X+kz z)PWBZYg4v@Zj}7#M;I)v5CiXZiUo_J`b3VQVQ{oMYw6b9-VvVsYDI_kFfA0{Viqm( zQeCZ$RZH<`p!sg&!Yt6OCp;&f(r^xh@XFlr@_AgYkxg0n1WwZ+oYD=0W#X0Rc;kg-1xudEKt<~pl!z5QrmYu|fJ#Z@s=-zZB< z)%8Q}d$)J&Tfu2;g@VY|vutr%xoV$K<^XIj z@{C?Z(7cWyd9j~626bF8tRw3RgPgo+VTAG|DSfUfqWU-->|hod)>k->7I27t|CmTv zl1Z3Vb$f@oyCd}PFevK4Hfqq#)Hy{(Q~#)=<79Yp7h;G$;z^KaI-8M0>5jpxU+73 zQ||*WjHKjv62cC4u%v!i8863}F8LD@qrPi8}<-n~6B~ zty+hdUmRvoW88iW|*f4WRYrJfi zRu@fUb`2l#q<%=|zo}>A)Irrg1GnaL`~Xc9vVykW!He+hxTMH%FPszVy#ZNt2$dzagkH9XA<_b)1Al`IRIZj$#-r7-Iz8sOiXMBj z-lu%D5qRsJsWs*kUBW z7;~0yPx%|SU8rEIP_f!YsB4svY3yaHkkLbo)OHsqZ>2jw-gEj+a%_YHX&vf#^-!u$ zmWqdhSWRqP@}j&xFs~DAphem7?Yt%`c2F|*KNc29wtGxBWpEFcD;_?MBgXiKI;RKR z+|dT#@0R+b)~r!c88rVkD*A)Wm|X#tb!AKTg>W&#$5*182xmW3vm6bJSF37H_WiQ9 zQlBiG&Gu{+GFEP-81}N-i%P3mWw)VMw{uYjCLp4qXA=AxM9ea?mUuMDl00dKE34?X z{uD-H&%oILThkd6bfr6}*>?x)gOZOmp4D+zZ{*Zwg7I%-K0<13=IP*?B^yF*ttf3J zn6z_7Ha~#T&iA7{pY^|-$|}Iis>CdpZDe{=4oP^_l+2t`!YgVhL+;k^G%kSOqPiE} z`yJ&XUe4sec0tTgWCa9A*1uo@g=^0cmR*HQnqcNwqq4GsBLT8TTp&gV3F%ltWq_v~AtX(^k@n-P9PBh>rruwLtx!n>+shGj7z zmR=;%F0rU4r|-4fo9q-gyc}tL3~pod5ig=_XA^DT*LRtQ@|qYo1g^8PJO%4R@&l0zav zCnU444Z_NyIfauh=Bm+gsCmt;3Bl)O+Il+su4kO`Lj_zzs>&S^O(>m}weLydME6T; z4EB6=qFM~hQ+Mn^0<(F9M}4Y|K3X?xz|vgK)i1xim^k`EE1?H5#>EQb=L~qjI>_py zb|qy*GM1Q0OxCoi3D!jqtUO9;Z(WhA#< z0TEX@#NI;CjdF;SJ@Ks+6-yEWA(LKeGbfaVDu)t@R}l6A6xwIBCHCJvOe*7^m17<8!vp0;Z;15?Ff;kgYLA>-wnZZu;of@qWpaC>s#$2Ym zZ+~xH9uM9XKQun-nF?$Dyg9O=Wp{4gSGHJJbFyG=RP{S(uF7##5^ZyD6~;l=kBuD6 zFYRhg=l3BTmu`dCRU5+6-jTOx_^3_Zo+7?FQw`S0aXmqGKuxu4I0zpw-$-A$;R<{T=|&80VTw>`jjdhG@m_x5^tF z+jXwXF75mL9mW@c#EdJy5vn-kKG<4%wFvkZA6R${$~=bu*$~(}CJq7a63G#mJCPBu znYjR9l_DBD{yNxZnmi}jL-`-=sF{A*5MO6$BC^e=hn)5_{o}zCvMf_h^-8|7SHi%V z3mHwLmL`Lmjj_1bnd2p|?PStRp=)a#`~*YU!Z1)=h5(=wL%B5hdu6E=aeM z2C}cgj?jD*MJ5IOt&RX+em~RtQr9o3fYAbN%JnYf$qu1c1GO$av}BQcD8*EtJyF}j zJ%L*dKP_*@I?gMaN@`>lzqr%TR_=>v3q#Y>I1p586Uy{Q_)ZTw9qFAB7s0j~;zl|F zYFjxVSee}0oosD2tpQrN@kmCtB0X7Cry3OsFwGJ87z;FOp5?5)T}0G19COQDqew+^ zYz6Bq0a!+3XQmhxj^rO_P ziMVG3nmKKJM`g~ZTyoadTgT6!M!%T4Nod3B^_ov;I@QjWUDF@{dNmjnOe0Y-;U|JH z*ymZ!`1|-wy{Nz}wARa)?TPZKLD9~AzJG9ryqcptng+-L>q&H5p<*x*TW~m^Lt|kx zV5_9AO6L~uUW8tp1=@T9LorbK=9;6HGSso7BW-GFN}dnNunmhGH&}%IPM>nm|G$Gcr^-LbVA}Ti`o(CrcN|d zL2Y^+>hhg+!+l|6;LE}Vl~f%G`SZ3Vv%NY7P5@}Ui+RfJ9K~naLdyYf@Kz#7YyP(9GWK9nh3ujlNQM-I7G@%JvsQwwXp-(rt8Z z=O!7m$IIe^Tiw&DoDKy1A9F>vJ3m*W;joT|n#Fbr6`l^RiFag66dOD~bYXJH-`B72 z0aaF?yjW0;gHUS)km-{_AoMpWHyJQvjfhxNkdSo`vN;8#=DX!~Ka5lz52{?ym1a8MdqXCrJQ@MP8-l=bWWQKSWymUX5t_o-ypJ&? zokI@d$P2F>l;LyHDF%*}pTYqB(u$zPm7*YPf~rYfDM5_!)AKDSoEne2svR#qsH9JO z_~PuXt5Dqm{R0z~D*`C>tm39+NeMqpwMT}&@x{-k20bDZ2;d0Zb4$9_GQd$qF-za;Z}lY!U>$v za$gJ?u?$zSQHn)NW0%Y4js#R^|ldhg{u&6!-EXhvDuDG+cb%k2oQsN}CF=3zDdm`*Mg+bycHkKRaA76FGre~%QLA7>qq6hPK(Vk=t6S|_l-Ab)TA$Db;Jdj;fj90u$ zkfXe(9b+eV(Zy4WB6qZa{Ysl6C ztcJ%3%+}eK#4VB`K^oTguY{zAnAP*weuY-eHXg(%UEoR#Wc)>0MsF^d$d!{DQEf6_ zEV^J#4&%h9P!c+ct~Dw#1*5IdPJ&yhV5oRYn#LPa^T5}PGK+Pi~m=71Jtty{)S?6nxSgoZ#Vt-T-!mdY&*L{QXmnI83^ zENn%tLOOHsa(9D#oVf>N!SG_%43_G-!7XbiD1CR}d%iI!6_O|4AGcNXSUc2wAja4m zSDt2p-4E{XA%A0w9{VIV%(M8*5)JSQd?!m`(9419t%KeW#Mt1D6f3=nsY2`0Z=OcFWM z%`URHf4&ez$K8eu>1+fLq(_lwUI%QXQJ2xHv%)qP2fR_tT$(l`y^WT<{JIF;~$ z>0V9Q!v|`bLfZpQJ%UE)+_#CWSIK}#$blER0ZFw|a^%4U*@?Y}IE%JUOQ8qgK*x!F zLj@vBPYF2l5*1D0)cf%SU5@77!jPoya3zIdveR8M-(G%?zN5t|(Jz%plDE|4W zTjNhHbR#`zbl8YWK_;ohPeLyNk@qh40o5Q1@f?l#(0zZOFNE-hni!x&D=U$cwb7asWPxOc zyAiI@r(jS%Q=vf8<9W%9%w(=^M7bWcN%q+!KUM*$?AJI4$>N5qk6e?V&lazn`YY`g zr2rhN<`?j5s!>6h-F@yzXLrBdkQH20*U zoo~ToFPW1DX}#Eb{rX;AnbYf(*n5l4pPP07}#hup{qjrG=F)ImnuwMrCMep=qi6}kSl7RBB2n@ z5itIuOI7k9^KbfjWa4Z6oidr}j}S_SG+>p|)h!l2l}XuG&J{J85o@ zn`E=Q-wNzU#aQS^GqnNNr6xzB7{mgxQ_J2GQvVUFh(X8uLIg>d4os)Iz28Blxl|+s z62rLE@P(|8a_{>I(xgezQ>G)*t7{%Hrh=cFD!B>59=ZE-HI!2HH>i__Tckh|$>IT3 ziF(l7BbHZ=7#lp&Hb^TpT-6b&w-imACQkj!#ppq5DV#(Qi8%N7+^m|8v^ z9^L7WZRe4uQq`4lr_tB)x-A1O>^{#~r~>$jLO4@4Y0?=*Z)(ZXn>C^Pp&1klz-|+a|qz=IyepOCa9QKgO4M zGfy<|k*Z};q8~$C=BDs*l0r#=z{VJAwgUicE=#Kzw%F~}WKNoLxjrn#!Y2%l>DlNF z+ztrkBHR%ib?nhcuMvBGpkt+h294bn6?W-mhJN+JZ_R z3DH$A+AgR%5s;(?>X2Q~M>!z!0ePOa`12EY-^rT%c636eX$^HScjR`qdc&qr*~yD+ z^Wf9yT_)IlJxO+(jG#&645E$EkZcq#%|huGpgc$gk3n4U@wA6GBl3k_+!)eqMIJUg zk-f@Gku8axm@GhYGYciP3de8UmCMkC^rZzGd^gEf@A?YKTN2LUs;`5t+nCRTR@HVl zf<)serN#gn1a5wRaR?C1<&Kf`TgGH8(lK7r|!-_ykpLJX?m}NK8Fd( z$!JUod4s1sOAiab2byic(Z}$e(M0aI^Q94Fe+;uPz-LPUk?8 zWx)zqAagOK9=AmfDkHDM+;)KUi-{-cC4;RQDa$*M)`r;UK9hpr`G5$eBe%R)SJz+s zO`UOAX3(5*r5**gs1>*SVfMXxb3ZKQmDmigYAh-t$wzkLaD~QszyW0=A>Uy{m{4l6 zkq(g6M|E;;Q+NZ%mhh=bb2`#4oJ_zQK{oSPR6yN? z?hRZSu3h=xF8rM8A}mxjv^mgiVu6{Q12q|T$9#|4v*W}Us$$VDoJ1Lz`ZwSSgh5Pi z%f4=wI=aUbDiBFu*Dmbj4pTe@PcA`lT=bOI(9Mev8<3z2q)C;g&#q!U%tT78<(99w zU%Sb7w&1i|fv6IYf|>h?EQ4-;H+A7A_`(5_H+v-8@~E3(Jwc9YfPIqd3t_fjGs~q$ zKrf?0x?Gz*O137mQb8_)oN_=>5WZnPEV>%(dxe7YjcpjHR%@~i!o)`91+x;~md#T4 zkd?FC<(`V*D^qIbS`H<_WZKfpx6uMp!Qor82KHroV8=!=N#yCuT-&$0w9(jSG4@nB zFO!;MUu`0U3q}xlh8sj5BQ;h!m$$FuBw%h#DswR z6uNCu`C|s(^l~!Qhi&xBe%>VgiTb;a#~Y$|SBty~Ce8+Dcpyr^kmJ|RjpA%{(kq@W;GBlq3zhV6A2WJE{q_ffMlkp$ahkl;RZHg~k5CJQ8sG#$)W-kU38u4!z0 zRvrUuFk&67V?-Oru^g|cDW+G?PP8I=^8(CkrscBdb<(u@&ms#aiE2jO8lBW<0Z5c! z6$UPhL;QOO(s3jm&gat~8zF;N1-};hDxOrt{O!8q9z8TpEKdR50;>?%p0g`UXJzdp zq1h&kiFJJNU}dvN|Cx8Hu}$M+11Y#SV}N68q=Oo94_z43o%CLfii-@V4YlTj!3SaT zSaj4#ux?17ZHkJhVs3Qo|J|-jlu^rY3a+#c!`I2gmR)7CqPo3RU>8L4nk1y(*ub39XVQwk`dw zM1^n+XoRK>DttbS-EBxpz$mwYie|H#vbbI82A(`2G~)NAWg*48 zBl1X+GJ|**%pD$X7Q7GC;<>Ml8DL9b`>2cZ>4D@s#P7ajF6dD##Mg8oMEBq#z;dhz zXSls$Mt<#v$(?%tC@>S>%I}V|VI8DNwIE`RgG8sc+8zqyO~R^+}jD9;ojH-tjfC*SjIpBsQOz)OOJPtYG5R^b49GppTPhY*6ZRm2S86zUzB|0KaK4gZ! zgSZZ{ID>~_LWVN81mlb{_^)lAJPki4OBM= zQ)y)K^mek8pS%FTdyIgLB(R+6Xe9hKhiZKO4hiUIef_z^bx-hl&iO*a;#a3IWByES zZX6pl(SL#s&`##{T#FkGCU50i=z5~aMMVfZpDlqf^m{5yQd_EpI*%8SStRZkX>RY$ z&;;vzqWI+GKDI;i9n6-(?mZaZJ+H(~n7IaXj$A!&y@J+mK)#~S1MPz(ivaIPvx=o|-zqwRjU|{fY;4dFutNLtME>8vh=%~@m#@eC0@51k zL2>ai7@IfL=Cb|6LkI46+0dq(`L5x8cd>+5>Ot~3K%g@3GnMjp%^&GnK)}g{v0}Sk ztdE=5^ga86Fihz=%DzT}R2?eMBppGBslVw{@-T|hGC57k;P_a9FIargw-Qa@J-m}( z!8j$P)&QC)Gz@2gkcJ$Q3JvUap-f)us_FHj7J6WG_NxC)rX2%Ckz#&k={RvW`zj*Q zpChU`hp(CqbeY7XBqy%=#-4fvm^%##_i%}eyeGF00Pc8gj8KHo$V;1RX#kv#j9mV1 zcMQP3hs@b`dq%9kt0ByI@;7RpcBBN<2n;1+Il+J9>uz+I980(=ef%4+zx3$#i{}`< znLyhE`*8?9kyZYwIGOge!O6R#%JCiV2;y`|r5#AGKW|_SI+?x&t>UjASw-u)n-e$! z66>e+`o0+c_zs2=Xw`m1ad;9a{=fmUWt&hhzq4!Mjsl~?d<4R~UJV_t_q+Ub&)R!0 z{^2U%Y9PXaF{>Yd#bCg)g6T$w&9M>T5)XnW z~kvy#4o?&SBss0e1GobKd?klc0@s zx!Za?IO^C1G(ZxaZvd5Iwd#yH^!i{VV0}1drF*jju$IKfewwMcc)9GvdGmZ=zCR`M z#J%eVR<(dlTgnBPp=$BN&C(XHcr`QGSE(a7CK3HrB z8lwQ-ch~zL%ig7Y&tC04Lq8hRa+{Cl zWX5p$T6~GY(tt;j*QWPo{fpe4+-f>7UZk;L#Fv*S;bGIz&3IG#YV_BZ7(NGeIJ2}5 z5%IATr_NvfcmI&)FCHD*mB{9i0H0Y^OzxaM*-_!NK&=$Z-@?qVOB-QTZf?6pNqj8w45xmL z_;hQWrg`<5zkRJgzn6B5d~R#g8#XVd;zQ)Scd37oNE@z^n*z|;J3@TS*B`f&P;)*z zuNcjpJ5zMq^S~do&`!RF8yQ(vwZsmkLBU6#>KYUsH=E<2>vB$1XWcyEn@!d)h?qA? z{I}cmA3NCbo`m-MG6u(3at->UHG#<2lR7JkNL%Ki+RT~}tqc`f_zNy-t94NDlrQc2m)4?7N?F)9}9+ z-Ct5QkU8eJ=iyN+kM5Xib}rzpg7?k<2}j zMgBkqYbB#>`m<%zwHzZr1%2nwXKfN`uOxTj?^+HN8uMHBJ-VEGxnAX1`iU-lQL#mD z_Olw#@?ToFXqZkPwDK%QU+gwv-MNV+C^E2-7HY{2$IMDZPA^~ocdGu^e*LGn^&O-+ zFAeu{u)T4#FG$}#bt;*v?oRB910?*P|74*rO_aOYTK(bQJp4a@?yu8Ha_y>*#`$Km ziw7RGf9^__7cp`1pwQO+1C{@;Uq5k*@{JFX_Fc|Yg@69U0V)C1aFgUjhsEeH-GP$$ z=TAI7f9#kUNkK5n-T$=9|8AlGvA+K&fPc#7--_h_3E*JO?veK;K7O)paiD0;Xf}wN zD|=P=L`U|c=>v4`zx?SbOu9W$0y5na)7!1ZuzuY~gLGC;;fTunRGO%D>u8?^4;569 zCbACi7neQiH;$Rr96zERxcWr_9K5)?>1zjX*FSaay!0BwKhN#K=FeB@;(6(z8-f%U zj`$59qS)mlTD%jdtipVV23ZQ+-W~NDCptVyPdyEn2C;w>4=zp z5NFXAD_uD&bQB?zFaytUTT#p7($069&F1f>A+!R40+xNUpaokPo#fOfQt+ZNY>@6j zVzv2Ve}U@Lr<4Q?beg?bC8;%7EHmcX}PPWrP7QiXUDB zd!#d;Oa#>N%u7{EqlX~Zg*YycNHBV>7u-RUB}a}C=&_IlN~N{wR>A-bGd1_~X9!=h zBb|4W8$fxagS2SWE=Y6adlMKVz=-6|HkhTPCzOnKPCh)ElDq>-;>-C$S4oB_w`%W# zJpBdJBroS+pzQ>Ct&&Il)4&{HD%j2gQ61CzSrPk|NLyQ8SjD-JGqFDASkhzb*9LHQ1u2uOC{Xb-+|(t(8+W3moKp@2NRIw zgi})SjC%P<5#M7DU{y=LKQH4k|4Cd7>cG72TT8kocA1Z2E&^(@e51i)bK@rT(H1QW z7Jct|uXene%(>(Qa8Z3{0R;H~hPLX?P(mCZ1moZg1mgW+(ABfU#BrX?CBN=HN+s+un74kU${QlchRE$96Q^e3cMM7QS~9 zASW&^T&?!l3I#YrmRKQMMuN&cin)_+b=>7hNA}DE5QO_s7jb7?_u16nFlmjg2fb7V z9CjmU$hKC(27sad500qy5F#X$K`d&)y&>T;ucw=(Cctx~y^I0Ql;`{X(-9+cR;i5JwfDhf)C+Kf zMytA8+6aPBzc=bgzH0~iybWN!{;}A1^Z(ldO4x6|jLR+DYE2N6nr_v7 z3}4>7bEKEtVY%uPWy@hC?#2cFfog`lJjz~_Z~|Rv{-vi`ONb-4uvZ90w8La7y#c~S z_593{GtYrp`byKke%Ln%QqLxM@SEHrbc8TX27mIS)KMN~4g}RjD|xBk2ZY!seV$%A zz$yRrCw?}Xj+0Y*%|Tt^>csYwEnz(mOOaE zhFQVck|n|hdXonqMZ>Q`39+OpS8y65sK)fZmb)W+lsDAA1YS(Qf`|PCSl_*8at=p& z!+!*oJu0uygKuN+xL~T)`FSiDf~MO7Ri;}TMa_mjTNW=2b7|y0qb?eSX3i(Lr+hm_ zxw>Wg>#OgI6n;%g1hq;aS)Hqp^@`$XN{&V zR={$8Cs;fey&@lb_LKXEZT9LtX(BG3s89Q6Q{;lEc^zkM3Vxh> zo#M7Oee<|}sf{k6L>j&}wuJH7RM@+el&G7jiY`)$ugyT(!+tC7_E;q6 zJB=rgrI|psU-QwA{%Ur`Th?s$$3I7t#)$@dKC4XtHo+YBkj=x+<5eDlHW^)61s9IV z$=Q8Bjg$q&&TwWS&4#u1+Vg-nTEltIB%CEA)njXk*Q$S{GhK1U>dw~4uJoh0O}%}U zoIqwuY54VLT~+Uo%c`S(%c_%{+1X|G(de~(ec03A!@vR9DPwmN&H(ogGfS?;TpRew z=)Jvi!*kQ5Ts7lb37C)I?ShETw8k+3#!!!P!HsHQHRd^<{UlDww(MDE4IC^E(yeuT z;W*dJ6Zf;lMK6d3Z>Jfeoc+F53iwoPZ>Pv18{Px*Z*8u-s4Wz|$Kr?1B2(B$k+mOX z3wgYe%B*M-z+;e5hy?`S+#0#s>gGe(XV-i*Hq<#LiBx+9=C>|o;<3~H?!RXqvheN< z$WKHCwR4x}2T=I!;VwwS18jpO4=EicBf#0W(5YgqwGHB`XlRP$fP8!97uj~5JSqKJ z@p{EXXl=bbQ)^zawO0;7!?LX{e6r;6){x3iyY*diWaIVzOM%w_Ne;u-pp*u;4sE_T z&Y)^@7&2ghpcCcfSRSl|R^hSDD?gPq8?vdIIT*|U^@LFeMwa`sH@9~1vm2p?5?&&$RsOD>#KXat z9dda;(jmpXXgWQp*)wsy-5=7TE){Zxi!{x zX+&py-;$e$JA2)9-hLhboZ37oQa81Y>57`3JECwtr>Y{pyG?LoSFMvsr^F)i1Z4SL z6qk-kZ*w#cY$8;Q8-(E6s%x}7myY6ze6sl|H#SnKQlZQ@A46nf3BuD3UhGNAuU$|oEfJ79}PTHed2E^=@nZ1?e z4@<%btCjDUT~Jvc_Zv7GKSs&6zhEu)3YFjz-CCrBYvu+oKwTd`isP?oS*sV4p%9S_ z-P^o5fT82LA!c?{>{V;h#@!s9Qtm<4iTNaYRgo9lhN?XoUWID?@nzFutPR64%T!W& zt3{$%^In8kybA^wgADUqyUx&FnP2m@sk(7VpNq{Y3Uk?`Ux96nfJPcsYsC zxYT?GmUu=Hzc^Y8eGb?t(}Tu=MGpR~mKk*mo=XS17Gax=hxqL*1>gx{d#nw-ge?0w zl_fUd155YRGHd9z&|9!q1b<$Alj~e^y6xUXxxA@w(fZmiL;t$dG<)2*%M|FBa^eEm zZfRB8r`VN*c6s-8NQKy7PXNAckP;s$87{foS!r8OP7_ZXG#w?uh;UPdZx7x?u@D!2 z;$2HXO;DIJ#Jp+hqXwI{2Hm%ZIxdtd1w$Pl4R0(kMMXsKzYm>y!-NwYQ8{J<+gr|r zaOoy_=Y@KAL1b$;ix$E<(DP?r+kCG7ndTkWzH|w$nfHzib~)_LzDB-O#NvKh((_1$ zu^2|UTdxoW4~jdX+eKc2GI!AF9ji^HXbdWnYEw6AA8nd>6Je2b^{`jaouklo-%@;KNO3L%9XHu5Mb6kI_MORKvHMRQAt{EqO^-NsR4SMVD>R zsYkD2aT+sTfQJ#{&mbw0=Ll|%ajH;ECDL}v%c(ge;7-m1A;J8^ny({bFMj^&H%(HJ zxd+NefvidNng)D(j-sF@RGI_!ivO8YJ&JA(MMyw^Ur@^L@ok5nwO)^ zyRuX#wi`$F-mT9z%iGqlGpdAs9*%%lU;85OLym^~K@b2>a5X!Y|;?V;tjhRiWPKIbEwrka~dTGb!x;wIhYwNZsmLuF-Wip?0_KC9!1!IHVU$c8exp;md^vM}@9nI>uWkr^5FKZ%n3&i} zKJwIRzA^ok>7WUAiC27H85Ka)AHv#(F(4?g9Nq8C>!xnxO-l%ehPQTQoAs2bIxdwP zZ;EIVVUoLRn07;jB}{7Z%6t2C`k?}FP2+Y-d~b%#%=QvFg`8^K=0Kb6+_{%P-g8yn zqkgVH-tXWR%7@6?l^}21R=9P;YtrS*z&f}%TaAKyErJUmOz$E&n%`<hSD{<;nu|;ufe^Cv8R_biMH{GM+vZ;gj*grn@b7zHo9txemoAn?*(_;=5;+*U3k04DX3S~I~(Hs?8_xNJ8psTcFS z%g)yuq@Nvr0$c}s6#mYvpX0#`I?r|iEd0}NL&ynQ0SijN z`xwOFd^th@-wtJ|1Mt*ZUKq73!P)9G%%4q8_?{bO%nK`2ZAeB_x~?3}v|w0)sR9s*yz6K`DI&TfCVKlE_4AzEN*3 zI((PhTG8X7;>L-INLHqIP78e++lj?r5D6R%4y2h4Mg z#rIKC^{GNQZ=B|fEo(8S5WEm}V9_CuS-5nz(kXspSBzQW&iZC^Z8*JV#h35<_EZ{~ z4tZOY4--I>EGNzF;D|ffknB{lz~aW}>_Dm2z;(bkEt4V-TPgt17T4e3z5Q>b$X>$dP)oo3yi9NNBU06Q9fzK@~6b$_^QD$K!X)5A78<|S>H=uV0h za%~GIkjUVm7E`fdTjMgp+?lRfduCKq7q|B-1DUD@lUzyi$1_4J$K@9&u2td}eUS~F zqvf2t@f<$RJ#JD#XbQ#)sn8X)>rTKf`=X_cAMg;LwyczK0Q*}1f(ALJMMI#K5C=@d zaouPW2@W5GmM7yOg;-y4poh)jem}PigD=}XrIyqIpfSYSz~X>|pv6yznYN%3OAe_* z+f>oU)cXYYdAawBw4!|V?l)w;>WpqIW@IaW*Cxo{rtG=~r*6Cw8@aNzgsU07a~~`f zQmR+59`3g?)P3&ZD>J6(nBN7XyK+ez&?oxS4inxkF7X;VEp{BgCbs6cQ>C{|A?jDgJm ztkiXpCk`(tOU#)tqP7m=*rPu(bvcCkn{fL^DwTgOZP?W6iGgC z4%}VlehH7_f%!2(BO)`!8r7ZE{T+v9LbaPJMP2_%VO`$`CQL_U!Vs~2Ig(%l`Qio#yIX$)&PlLviziSAQB2P$n zved{A)I>^9!q8a%ZP$k4@oB34N5?Jo#dn4;mn|fA7P|%6TW2Wmxdc}(U|lEtGMjoM zxwAsOD>g^i&xx$b7oa-~Z|dgjlnR>E;Iu(%!Lu?i#nj|1EwW$N2-NysnpnB@Vy{OW!^9i1ykMtByK?+)IN$gLMTYwJpCZZ-dMhNH2kU@< z3YCAUJ+LEzJXRk8f6z`{_i|MS{G%3y zoE231wY`@APPgXev*2oMm+MlZj$nV|Unan4Fm1)I)kV4Az=NEf8u*-kxm$7IDw!u$EyQZ5clTU>pl&l}Rln5g! zG9^^UijZ*vwij~6976#gJ0+%a^Ji0ol)cLyCXmbsT~R`}cE+0hyxB;Vo8w$p`m0zx zb!(!880cr>Mvo;O9B6|&RO0DV$x{QbE-QNj!#1^ry^PKvBUD5doqAA49W$GXugv7A zoQpvXh+vynRxfScgf_5@6**BMjsV5srw1GSwy4iUn;dL#uTNG`74?H3rVN!^fqm9u zvhYm?W(jA9##e3yu47ft)>m?#6<8_g!A5@__TB)q3qT)mU0YlD3_*0B#NZ$c|Jq^&_+tXF06A4~d2TwCmJ?BZUV>A;|TBar*`(Av(lK{CSZGLifdQjM2#Swa5aqm@Zm`V4r{sA%=;uKa_rYu8!@R-hwuGkGax5F zM9Q>U>ak-Q;Gsxolyc3?$GG*w0J80m0gG@X;{+YkXkum34WkesbR)pAt}Iq z)gUr1`u`HKg~Ji*aE*dd@7;PZ9+Lu+1>@K@U^}=gW>b#V3E#O2)RY4Lm;%{RW;X$% zA?sr6A(ki}{R?C?+<}oCnteZFo?8C|@~+;V+-y|$7&OnUCtPP~82&#(^kpdmEvV?p z_g}Udt?^n!47~>w=GH0Z-5JIvw@urSD}eF50kHk(WK_Mk0ZN(A0wh;%VGBmdW&wUb z9t<7v0@T4BB~-2s4H!<~Qk#BzxXQk#04lrl<;=#5vw+{mnBMhQ^q)=}vtGHqI>5;D zgZ%F46G6Atg_VAYO4Kk-7b#Ftcq416O5Pv<65Ur-RgHJ-Qux4FK6eE8dk?`IVZS_d zyWL=eM!W-XKlWID^LR`hzv1^fS3GV`;jxKw8q#ia3C*`TvbzSlUeQ*?Dv~1HEXwf_ zq|Esv*T6B}oD3gg)x;23=Yg*e1)T|j43(rr_-D~W(pExOVgz(0rdpp&Zb`du%wHg7 z@{}$d(kj~C9bFF5Dr#Ep=*d=xgPT}GRh;cCVtQeWxYE7E9+qHba8_vl?6^F*=F)3- zGX#vR@&gQ6^#AO!cb(lB^ z68^{YYBzFi>%pac)GCrYFP?+TZOdb`51y|1BlgJ-&|q_Xg6m&nE@L>1p&ggw~dqv1(zj$dQL}j1f%Q;jB;}+)#sTB zz;W>-402+(Zf}Qd9N>81Gex(gJc;3}Ea{5d5q(+MnSTc)+)zF=!US)TB?pv7yN-KZ z)4JSv6!5ah6q$pIRxYg!TG~<$N08*$^V|ZGp;Pnt3t>2UYDfwR5Tw<-FtfwLdBOwu zzym~6^J{r*091_Mc7!udy2zw8RksqsYaop$Tw;}?5Z=IR_??5-X1Hj><(0^NZiC3< zte?ljhfEZN+<>!ZFD3Dn(GrUZa{LjhIHjko6*XjA23p#U0WJ$qr}2x1Z?#1U%y z*qv2SJzbmOc_%dD%FzHzI&ayR^EoMe=xY|(!{aNB7_|y#0O|sI5cC4|m8BCPg#mm{ zei1M@@xJ`^^`o$z(cXF{Xrn1cMR?bl9_6qRLN9dKB;Kb>H#RU(+vK=)SDLx=2~!v& z8Uo;|0ic0ahh%CGAyocUB(>u4;h)D(fwy`6=WRB@U}W$}wMR5};4QU`x_s{q_(wr& z?HKzb;Gldx!K#~4k)Qo1KmkM@7^!y;pf#X@ZU+b%P(QRL84G==l7^4b>3cNY%9I61 zl9}8QVcyL$L~IQ})5`mpDjIN6m+deVI)>XFaAn{+)Jyte2>?WWjqJo=2P8u&45++u zYV}{8WLD@GSCP;19&|%BN!qDFERH%EsE#TXgQSM+i8Rl?fQ1 zh+6NeDvvE2yM9Ab`Q|7tqs4ww4)RC=n_=OB^0}e(QI?vTs>{$Tu9mnGMeiy!-lOeI&Shm_q!wbY8~%q1g-Z zF*jxqISDC#z#mtDofeJ=pg3I+xSj;Dny|3OOqkDhb#3DXIJm%jMtosq#;!ZDm|K2eGa42LEd z?`;WD7vg$DIEs)cMEe6Je_rx0FjD>mK2zmA0%`vLD3)t@Y)g1C9$?)-fJl1w@_8`w zU~-mGT(}Ejqo~hk(((?#v7)$FV-7PlU{h%bn_6)8q^ka(#Zvxpv_pWI$P5_Om<+gP zekj10Mc;Bbf}i~_wFt26!2e5C@ zC1nR%PJDQ(|1T-~57ttj!&Ci#N!iE3b)*kZ_5USh|J}%ye0Zw=FDd)>B=zINQ~iHQ z+5f*3Tehne>t9>||B}A{pNr5p8|8cyIBLA~C(*6her|0+TiP`mo*)v%DC4!IjtVwW z#I3+ccwZgq8g*1rRz8WfHsW0ZVv*5-nk&FXGL{ZR2Jr6BX>D^!_d}Y_LHb_R7dX~8 z75b65qbePC&H9QJIG-#010wJ`F2U$^H}h4KN>SrdplBAHdClkGu$rO6sV zlfk|}t={~vSk}QGUnbgvkE`HpT0Cbq%I4$zHLKNBA}+B#oe5GAzIt+f_97JOZ8VJA zgAY{IR_&g%8`i6=^Kh6(l9Y-+YfH%>qrDlB!%u`N(Op;%OWAVGAU@sOdiKn-DUE4x(xiJW$pkK|I|amgr94hp zyJZ%BvMTg)1!S?r3vbq!W*0-ETVi4@zBbrXHshzTVt4TYd_HoCe>0O0#_qQGSz)=( z3AP8HtVy9jixvmSxC~vpqEgswP^hRmXF0gI!#k~?->`jyO(W8)r%SqrM_J^CyORY| z5w+(<%f2WmHiK0!SYa9Z6zfE?Tb^;;EUs|rma`@e}KK~MP0V`%1V zAajvR&KlSU9qUlVZcC?&vb((>Ss|+|CyHzAelZpx5xB4k#_0N9yes#}M_#doqLkXV z>&sN8OjV|o0=61Ys>KI3a@>kCKD_-In4cMbbx2?E{0k17xcx`4_`RuH{w8uWdO{fu zp$VM0HqZU%-2nHrq^`AP1ozx=Q59#DIzWf#YeBMz)Bhow@Qu52k)8ml;?!POXh{$g zLJVf>gRpuotY@y7q{Dt~4J2}^)}KzMvd3ELMp0!uNS?43EwQGGhEDx5)9JY$mG_Lw zMRLtvTwo{RS&6$6VzM<1jeLvw;uQQKl*GC>Mawgc{1JWBf6}cG~YJLRZb=<`Bilp&&nYU*Hz-+g1sfxtLQv#=QS+)jL17LGh z?~F5)E?$r+ouktoDh&|iibEoUqUz+yBm*+_yjUgUYuRSvYuq|!Ao+K7j4=Qu;UzLe zO&XQxhC^?!NhNZ03zCOmDklJ?c}4ir%*fvO?Is(mx^i0n5`??Y1_j(!SJpEUI?Yz4l3wbFTLNL0k7d)0xTHuJzdcl~^mtTt@TqYvUml zCP?T=o-0koc+Ern;!ugqVt=Xp`cR76`eF~a*mbArD!-Mwy3&c)lcsraR|zJ1y!+n9 zTr|5ib_ats9?dQORyOI{w-bclT}H6-V=tnhTD6ilQ$v!PjKgh^j?N2gwWpuN^}nWM90xzBF0l$%>^f4&S_rw`r4+%c{f zBA|38Kv(?+<<<`2H@m;00o1%yb*!S*j(e?ZG6S?1K(*gR7E~3AvZtD(k>LLb^>^J` z^N>+nn~n_2%09c1=&i=@@>Jx`t%FW0X7*2~xm3Kc67Z~6!z8q1=%~ko9OYMrnfqg* zR`Labg97Hm!ZyNNWoCnEcES5IZ_0R1zl^NGx-8R2C%PKUrJRwtpx3C9s7hDBydQC2?@GH2| z>p~?)@PpKBT@)^R_ zkUB9AAnOAqZ_c8Uk-47Q;TF}^p2aJySDz|)U- zv;ufEuc&1zbE#?231I@YWx+g?(LkVj!6M#y!eXFGtJtEGlZ=T=TYCpw5EBZnaou@8 z+n=G%sg1a>%(Y@Q8$BlY(2Ut<#fPWQRBIn4q>{}U2sTTiWO;*MClN_HmhZ!L1SUr zWT-quqwu)y9NdwJ3vIpFtl-Lto?FCFNVPR|!X0)WxX>>2eX`!{uN`sc*?)=WORr>G zD|el#D89|m&9U4TJP<^U^jXq1%B(XrfN>W%qbs(jMw8wV!prG_@wn&2#SM*1e){;X z4l877anb^l*R@1ttG-%-F3*hCV<#LAntZ)VAY_op3X>)bi`89{mvvtpVsP1$07WL< z)hYrX!)qL9lzPk&T=~*q7l3UGN1bfx(*5>OAK)7vd^d)qW-0A*p4db>z_@i2yp&<3 zdxPzHir)?36S2$jmw|d}W+-7te|%8D2?9J}m%)&q{8@$XcE&IcPB48yk+J;XxapjL zYyUO7?D>p=X&B!wg;*!k+QS89;X zVf=onuyuD;mbxb<%(94C-n3@TeQzv>IsD7-!EvM|7=R%Zb!WS0y03Pv&vj2M=;PfL zo|WI%*9%F=94lOAD%VFqwB&p<`QtZmFZ^@A;oKXtdo9NopjAa(=+>^9F6nM+On8D! z_yZH@{28Xo}!D9;tzYM(mjW{rRQ`Gm_qgT7EWuAB`1i{2rFIb0-7g0S$~`S`lruD6ayS&5$KIYj;X;2uvcT%j;)d(bvEC%P`Ac52%YO^c2)^h zQ<`zySK2}bZw#g}*mf6LK6l;Q9}w$G=<1pfMAfzl|8f|pNcSyUW|4<;=l?3}1kIB< zZrhm~4hlcq3Bi<<#I{w{dwQjcTd0hj-Ha+E-vN&Aggv1Z(xs}Y{Hq@Vd-NnoVjNUc zLoySwrZMis#dqk*SMP&@YatB4~N$E23HOVJFqrV8o+y4>ijsYvGS z((sAba!}`{lT^(_xmkCC;;?(82=82s{KKYQ8>t&@6|13ERZ!8Hj{qjuc+)9e%5e_O zvp>TFhAAfdCu?dH`NnVD%6vM2#*~`J$DIC=OGtg4~`&N9vjzaHF|$Qh-sw zwB1N{UM34?w}`@|IM@H=ksrFzp`rDQ>(2yVbXY=rUfIm&GrJ0?wX*7yNM@c|bsHhX zI4S#?u^uy{}g+>`UH1jyS?-S*om497z0rX)OLD~MPi}f7QAVvzWT(vrhqpG=% zE??|v&TF5~6W;KdJk{dDVHFL(O&*x;Td-cS(d7W?l49cSt`hc%I@zDMjrG0h#89~r z%rvt4)EU2aX)C~w3BScwyNup`Kp4GT!nW@4?tiFMOca@HVX7aIhqZ)Wti}#8KWyT_ zzFbOL3e`LA5_}pqO6Rh-x=SUXinwwNqf-(LuU(nTbE~agPFh*M6}fB_$(ZgsUL!N^ zFl41QM%T@J&DO*HUJGurJC&8gDkAlz+N%eVBprkZH_;7)b~V^r7+A6q(bLJWPy>e| z)D7ji_VEEs9JlLmX<`ZLRUu{&6Dl;G0fa=;Snx5wX3H>L#S0fCGeIUs@eURak*xK? zNf-~Ni{;`(uBf=0LbKDK8ks=dAV{O{Mp`$JP$x$w!;4R zStEp%k36y8&gggMjtVv^8z#N&&Ql8Q_jKukvIF_Nlv&Q^^y#Zn+}iH6o+!*iQ6zi0 z^vHCUsNn4@qtlUIHkG?IE8mZ&LRyxgv6jzx$4P4gb!%N^TU;%l?5)J7+9TApoP0I7 zV(Xnup|r>LejIPFs~zF=5VstJ6lExl|3k@zn0=- zBYUHScfGsk-V(0BW@FxGA_KJsrwOyB*E)R&Cy|5;k_P5;FD9d8WR} zHuQX%he3LGAOSXg);WDm%zRY0Xe(iLcc_`3LhOrtblL2i9?HoGRa+O5qk{R=!pFY3**{AHG(Ij(0RDw(8?Q{i&LoO=C2E;FO=MDD|Y0o8m3*3DOZPTyf6xnw)tdcUl`zUc=wJMBW zy_{G6r48sM<;`3n_2l;GEk}g}xTPO+CglHwN|Y9Q05!ru7RA{tY1^a^M#At_5)z2T zLEZ|4ty)*>2^mffQAFHQ>VuGnnxGEz@IC>DU{9F4Dl=CRDPpBFYdGp$YlXd3$w6RY3?jgoNP*B#{%YF#8u>ku2#jWu8P{*WeS2bdk9qY0{ znXApuvz53L6x|TnsG4aD-L@;Q$X@i(5cS!7jaPCO;h;Lh>HJ9lu`Y4(_%}&`xrC2* z9F*g0@R?(!yp49LP{mLNbUfU(iX$8k6I{&}6U^jjKL~=?{{rZ|Qii241z-R>O(0^z zw~u&zl~+&qqKC45j_5eeaBsQ#*0E!Orvzoc7UrD_OgYt8f*C}i&xtVUiz93F@wdYtaVvaOh}mn~^^GZ?8F6UGC0=osO2XB)e*jc%jjL00 zc#3oe(c)+TglO8wks9~qjB-8>J8eoY5nJFRt9SmU^kmh;?Ozj|@2jh8&Lo#$oQj5j ze|2zPRWx}NMluSEd@WY`Gv>`&S`visXLxTv+)SBHt#q<} zqO-Kv*C4qvETCiDuu5(s)^I81E|X?u2X%Z!!W18_odiGf@eay{Yp$Yi$Z}y&{l&Hb zgEh)w!sO@uOBzjPYfk4CIGoL?_^lx(++q5fHZ{MVa8C)XjeQ2)&!)a|YY@GdJ%HlK4m`At0c_Ki{i)Ct)%R(c{KY!tcl$1essHvhB76*&a!J#3jktW21bpq6=!x^vM8tph zAKyJLfDnh~L*FKP&vtmECF^WNpVeL8Qb59(qE)1Dcle?w=N(Qz6X5|)N0{t|?XurJ z!@Pm#W@K%(KtxLH??N!@7nU3 zqUMt8()7|3_`NGyC6J`OqyhF$oyx~Vxo%Hyx=mu+HoGpcm=zCOU7PC}KK?x4TSzC$ z8a?4yA)l20`oWSfH@UL8&-}esul>)Zh^mefnt4>NvVK*G|L0)p7p1Jd)(_EfyPiD7 zB;Xdo;m>cn?NMTv(EcADrZZ1M@r%YV38{UWfiE-3@=z1WGJqNCvkBkI;CfL0^tB^T zEJkBPkJs+>>SX_C#vz}K_>aCqHF{fThr`qk+BmSI517H$k)I}gLU#7@Z;DIO9PhC& zW7|J{`t+oK50<`x<>Q1RygUYXCnFZ|79Q9d^W#FL|&x4$X-ZEtN&=sybdcvyUTKm+4;{eI&XJ2Sp^9$Io67|?h2N`o4#0b7a{dy)-B&=I~oi4 zXe3J$>yUG{-gv^`y7;y^-8>|475SFIxmj(?W{YT0Ol_w5)y5FIQes33T;<50O?zwT z9Q}vP+P#5Po}X4E*l+LS76+jsrk@|_j$d(fkP<0;!7D;b$9g)0J+5^6O!C}i(I}7Z z-!X4H_=6FRR=2RPPFK$L!DFni=x()y#>K2{)b3KGU6E z_x(z9)rWf9GTvIHKNT7I1QZ_zN-SZIV%Nbf%0gncvR|9D=$Jg?NeW9*n#9FO$+(;8 z?BMS0?%GJ(`;ucD*R=JW!iTpz6cO#C#KrG_r>xFq);{RGn9d+$N1H>pI_(-D;r^_~ zb>Ca0Y~s5Po4Z#TC;ehyZk!`#uvbq6OxnkYIG9l1ZyZq6V{%Q12x4P*=(GAjk%1p` zx|2ZH8&R2OWx88M(ormP+=BM0n5%f-+XUqX4~nzYr^yjiHS38;<%UMDR93fYQ+HCn zi?UsTHWk%rBZ?e3>7^TxYib+o19ABgS*z*RZ1W>qwUO)77|EoZ6CLc4f$vH47ufhT zt-{O|QI!=--z>v~ziMZr<5&T%Y@&#yc_araz9IZkl@v@aPU%&mBpvH%&9t(O z5}GBYGx(|()xilxH>L)IYZ`x6m^$XSx;9OLOMX*YVkXd1Q#VGg`VbvE z^|${y5dpd&KH6>ZUYC!Vi7X`1Eh!VVx>5bM+gx$V&p&2{+ZVVO>r$=UcB8Jbf5yKl zBYo}Wz*F}gjh|2V%||xe%X8X^PIJ&+t5=K;Z?u(wlp-I!6T6i;p**nWSx%C9u77&o zyUSyn3}Mm3q*fDV&IF5iqgJq~NBbB)P@MamZ_@mhR!vxZpa^$9`MlvPvrfe5C{#{X z_9uW#Tgg4D)-*CoSzjL2cT}9N>RH0r1vqBu%P7a~)bdWbXjvo1A3c<`WV(A?n}N3H zJzS?R`ueqRDeCq7Eot8}T`y?_y1?J{7Md8l{d`kXY%S&bwD@AI&BELWKV>hz(Bw(= z^IIOSX{S}V1R%y4#y8$Q9e$HhJRhZD(rvo4k}q%vvU8u#wcEq|W?}4y^z_=(2EF-D zMn?971{AAK{^*g$mzA>ga{PRaaxV5~+@B;Z%AG8?$jWmFYiCh33Nww&|Arn?M7~ws zr1YA$rOAuX?L=CCX?9AmsU3i;AD`<=i<&)Cb=&*x0PWg)_)tv+X@@hTD7%i5Q&GU0 zW}3LpHMPc)*QY&ksSb*#$<7rb{b4)*i@o=ZYI5ziKtT~jH=-aQ9Rx%`K)QewL69P# zlpus+qxVh-p;$mfrS~dQqy&&2s)+O|EkGcMl+Z#iLMZo%dw=JA`;1Tb8F$=Ycbp%N zVH+gx`;;};T64~2+Rc?h5U8f2a~RS){!&@Cz*T? z{GiJ{ZxWY3&K7(Wyr9s(A?BZTQ_Q~b=$ZkYBi4Mva?h zrF=Fo@KQSqGG{atv)IOr+DmolBe@&iJzQTds?(`Ap+~L1-O%^9@D*0y43#iD*?aoJ zl`970yJ2oiGOf=8PpiAQL@;Bkb-!yjt7aNeW-94G7FUbHJ zIybQND|!E#MFt`V*vBEv;T`9HgIq|-))T-@QB(d1$3L!N&f%{uu4-?OH+%c zW+!^xOwIYxVJXj2!@TWfvhQr<=ggLRZWzVOE+04CB8Wjr@maS`V-mVB8mjltGs$fj zkaUR$Cum~S3gM{{>w~sx4Nq~3mZPyzUMi5TXU0ZC_xP z6AQ8nG0ZZ)gUR~C{E(JF28tpcl@R!)G-8A*%X>JL$#WEcwd|FF63zX-2N4w{38v68 zJ2jeO8$rt4TM2wdxTjVH!tP8hgEBjq1uLU_{QLrmZro}NxU60BZEIqclrwO$)_Q+m8iT1wBee+jzH zR*rcufi(SE5N?|!YmwLKnbobGV>K(ijMwLHrd%3QVT?cR{;s*Rc78k4sH$l2Nh$T7qvyia70HjlPBJo5jO~cz4hGZiAIG39p>w_g9}ifBsxGBIgen z=w7S2xozt~HwQ(po&D`G{nT{koIBjW62ERv6}gq!+M-8&hz*=h|yy70w+paxMaL zv)|^Sp*^D!Ro&4!*(+9*rJ2{QFFINOeUhWt{pft~ z8&B32jHcUbRb45qXOFyVA&N4La0j@FBhC`{F+aar2!}IWa{{d1bzpn3>*Cd{_-p75 zU`i|JF<_h4swmtw#-Z@39mcZS&|>IsN_K8FRzd4z`2LnL1B+xWiIGZSPabY&v&s`c zs?X}T@7%Eiimq)yK)KGxy`l2kkElFFdd!MGpe1ux+uuKWBVp=UXbDN}DfVwdqz32a z^*%G87LzFst27H(BV78O+Wza%?Ar_4KQibh zMUS0&qVlbgu&3^&8aBn9+PSA|Q7}C1rN!<+?m{9USqKM2TJG!D?@Itx1O){}z>mT2 z@xO=pBJ2R=A6HF!>JJKa;ToR_{Bl?mjIP`bOXPzn15>Z~RZ}bj}KFo@4gP zFxL9h=Zairn@+M>l6wFC%KYn5*?YmKo)~?#e#4g*ELmsBUrY8oT=o}WQ%IvYr*Ni} zb_TZ32excHJrP6CDgSoC{<_5j6hMfkv*K^x_@NK>qNort6Y355UwkOZF))afM4%TE zgH z7A0W%g|)+m1RwKOV0yi|>b^@*96htKBiA3B-7csessbr9albwby68QO$7z@hr#f zq63?IHbtVGb3jo}y>IqzgLGa`9Py1TjG@l{`?dMEs2HF?4X$q0ym_3Z^+++wZLU|Y z(Gy0%e}XkwNmTJLNxFd$eD*f~ zpaYlEMEsK;c7G36z6x??n^z-P7U2zV(i-p|uH4Zz=vh+823X>K5TVYK^ z9LK%^D54^kkPl7|rEH&4x3wAO$*GZaReL&6UjK1vSdpZQkU;ou)dSg5=I^wImIJ2o zDvoi)qt`CdCil(Y6*D6@CIj^LTeB_`K6!y{R>h6M>qa;6b$LQ%8((`do92u5MeVHD z{KN|&HAxMLN`)RF>OPgu{~9i` z1Izog6Jrs3D*;t*^ISln8AZzvX^~3LtCYO>MYVG3|do*Qc@Ts$~=e2J8iYLy*eKI&{ty`V@rJ1J{RJDTh z6cZK?>lknIC)T>$7Ru4%Qxv4qQQVMUs;IPI_pfmy`(5I*wX0h+x^B)nX98AgF-O9cqP+nvo{sn_#U>|6Hr}Rrll!<*s(ShIzz% ziBG9XvW-Zo!AU7wm0os(&EQDW7Cw-j*9gyfS8vTg9oR10Cp*o9#opLIK(xZSyU?aDsMnUqcI42sOcz?y zWWvyk8TW$tXWYhk4TUXp^G&Yxn;I0_Tf%GXX0D8&98jGzt~aNAy|_Eat@s@Mea*!1TMlW;q!;3bP;ayWW+#yb)LBg-lXY z*OI!O7g&~S(&TIEP~JCSV_J}9>urxw*?v!OCzf3utWg#?-`y3-660(*V(`^tBbeRb zTg1BG#NmST+rsAg@q&+IUTQR7ZR{Mi*76_aEgIzLIWt9sypb2EFvF@>Nfz2xkPRYl z_S<@!-~z?*RR-74i$WkIJj}>&MUPm)TL2Y+0EHiw_Q3 z6k@N&4i$1BHEAooTo2foJX#|Js`0QY*&N?Ox1}yZy7~8g+F8l(2h|yiy{&c}qvcxq zyiE57^is~0_mmvnf8A+Xro7D}`>@4rkAG{0a|=}hu`7;V&|$0Z#dRKP35j8wHuDhg zb7_}WO4FSOPkX|<9GB72iFijL&c~KpJIkT&=-s`A3Eb-&GPu8^!oP)Pg*^aE`YPV> zL@OK}A~Jk-T}13hg^C|44e>q7U=-;=a6Oo*dGfR0w`*!f*83`&kN<#`>7k-otXJ}< zhGgjU;?dby1XMC(-f{3iWqxC|!^H{>F+9YCx-{XbyplE=I4jgfa>Zu?Po`{Kud`Y1 zS)U1MyzzEEC}M`c&Az9`UeSrNe{()yI)lq_^?-hTig2_wx*~mj>3}zVvT}2@HNap* zDjS`OT^qZgaE6L1c5SLf!)gxoNzccpW^)m(t(7btjom!(7^5c*qE`Mqjb)9ETfLou zhS{vDS6FviwW^x%N7<`&-Bw-MXvrGoS8F$!e_)UJu=>GfsdM&fOclqXazwnY}^T2cD`y zOC6VDpPd#PnNX-qS(v=0c)6sezJ#M@eao`~J05e*6BXe5%!}#8R=JD3E32-q5N*h& zDeisVCw38sHBDL#(Gz=DFH>FSEN_?BXdPWSpozP-Kl+w;vSr{vt<7>Kc7|yh6uWgi zVLraQY_eTDmCsv*cc?;rrJK4(4(_X9Ew?=r!i7cQZwt1>?HScmH4;XVX1ZpD(R z*N-BAnck2yAtADYt~_tUO%@H}K5D5e>rx=6G@oU-HRVQl&6fIX7W%bs52lcwFd)(7 zPr*-=-<~VRZ#~$&Q&Y#f5!qsNA53kOQ4mi4D zLBC|sNx@T=LNXjE;wOm%^lmK(S;c*t`-J4qFTg!UJHnQ<FmMJ#3HT-)l8a4%1f42*HhYfQ;H z76;+%&xH#4iRwx$NljM`tcjO2#F!$PRMlwWTpYV>^ded#nx>sP)pk4d*f)mG#^X6_ zPw1xK;jYN;f`o8nMI=J1_RM!xzN#CHim7@imq@3RBFSj-y`8_`8Cl3&kAsuoV`-T( zbsMkf;_VW*zP4NIw?|!@8Yml*UOsa^`9C5$d>Z&-RGcQK~Q`rBgt<@`+B zY|;{9vh*M(a5y)XpZ7potR&zTQhK{o`0EM^?s_6z%qcq>%z*EW^bHbwX;5rcd5|*4 zn1hj{(dl&Rw+J z$oXy}d2bCO)a3CN_`e4!m6FM!5dHp`*yC1=zW4`xUDo{*&8JJSC$+z*BU?rKD!os9 z6)=kINr^VNW93wqGm1l+EUk>kE-uT}haBvTAg*FLe_ha07&>t(&3s&N!UVQ6?x}wN z{s*6fty@ygmsG%*Dn43%74;`iV8J0Fk#lpL#jp)J!|EZFx1wnvC%E;!f8P2BwUY9? zRbu$D{^uNHd5}lS{$3_lMvGBnjR7_;-?{ zpW^EPX0fyHmt*BEX-Ph#ZcVZ{PjN=MVq{>!3Tkj@-Sf5HjnE@wy5IY}pL*sX$U(TF zgoPKer&7r9U~jQ>`ATp$&2;=?Vq%y{dW)16n~j(a_cJp>drE{ZsaW=|dAYVMm=nUO zpPO{%a0y8G!3;I4q1#g;u)J}{a!xz5iUdkbjmW%#6yqXlCeNX1w{gRqor(#)U&{F7AM z#*}9gt24f}i_8Wm#3;|zS}8s>qU^4nmq;*5R##GEd_>qWz&$lx#?287?wrdhrpTZ7 zc(GOY{iBZVR6fjMzAHjZbju;f(kA!?LE<6GUg z3}W4^?kX+UE>P2WU<6kVZ%nYFzx6L3FDzM^0F)Tc;p~7L_611ZEre}JEpF9TdI1V^ z>fCWz{edb%7B+ufFi1UHJpz&H?@caHe)sgmG_u;Eh_nH8$HR*cas#m{XDe0I88+N6 zw`LBu>PVtJRT=}eeT4@hTCVc9-`tK9eiazl>KOvTAVtRsCO5fcvux*2UtVy$<;OqT z+yfPq-$ymqq1Ujr6`^ykb3SeWcuf}HcB~xh=5SBD+w;|y^`Lq$k({wiJsINNVb#A< z;oDO-Gf0xa&y~}2&0_Xa^>|jDr=wB07FxMJmda0rThr=pPwntTwGet7v0QWe*Y(Z- zP|7C}@XS|AiEHY8x1-wd^o056=W2arwwAmmRZ(cz3bwYzu3t(Qu#FAezbvZ3HrYY) z@uHEKd@SLSqiLu=V2^9KczD`mc6P#L6MJ4T==7xDnORu>c2YMpjKb7Mbe+QR#sMZu z7m)trID@7$4`Z{KL-X&oKt%hG7fy_8oVAlTo1B|pJCkA6CL*%EOEBN6VclNuQ$r$N)3N1?ZyIXtoVqbE?AsGYB$}!BjzqH`Ho9V>3k*w|^Ua%|abjP) ze2;_Bd2i1ymsf>BT1S0XU!tw&hCB-QOR_1*X)o+3grOsk3vi^2}mu; zcmeIQT^nY~>kE*SQC3mgvKF$I1p{8kJT!~sAYqwFwvBW318rx4I7U2+UI9*6#+K_0 z?_4&PczAeP#$lm8(B$#cH)VNQITy2WsHduo9)0lY1W0wijm7BU)~0?Z-fWK2%&hg1))fml z!i|!3d$D(bOi0rEK!EUlXL-?mXOErv)^BzlGqL^scoVkReDmf_kteMt9(~zbO>GU& zPIgIHVa$&Xk4v!M&DB!_}3Vl&3XwR>!&-#MrrQ+VZQ?@{@|k97f-8L!P< zfezN)CxKBpdM20a_A0N&JIfhQRt?STKeJ_g&@Zw5;$89H&b(GOeDlO3lCCMzjkzEq zOav^63fhVk;mJ$cv!lmcQbwfLYg2m=R7u@EZ6u@LmhqYIM+8M{+bxzi4z=s~H8V?b zYmYwv%L|}b#Ip;+AUj?n5>KE@TDg-fbY{rWvtDcl(Z4`DBdpt|j^WHwjC5F;!1pGJ$!uUv~GNYQ&w6ljSvjOIO~EVO>937xW`onB+AZpGCLNa(+#R_0f( z-I`h{wwlty`1R=HXNt-1i7d3h)?1ocw(q-^ATlAP{j;nJ@Ik#3{b}zclI!JyBmf~Q z?=pJ^l*{I4$!1CR@q7EZpvW1JgI2S=cj%~eUg3Z_Bw5}aqP?(Qe!{Y7<4^ThGI!h@3)XfL@Zun4&5IU>!fnc=>^x;*SmR}#fa_Bim-RO0D6<(XMf7LI+owp_sk@q*$`SjP zTR-bvaJainN0q&FTY749+qC4-l-EXG=z+G8TeYc&qp^VF#DvVu*yb^-^X8Xkf(vIy zH$aP(l~q);9TKdrt0`c9H%RiG@~gIz$R2&uy@kxlVwY~cpc2{YQ)w{o=@{)Q*);Ok z7RWI!ww@dH+<6td^N_bynNvf@EfUpq1@MXjJjbmHa@Dbl<~cb0=|ZnFGN_ZiDhE## zjhVV%RO*DjgW4|8C5{?nRI}u8q$SB#Q1DA<-H_(Bkz+;OfPf}V_Y*sQOs=^`0#dH9 zoVK`BCq@EEmPOl;!Y1GNcB9YU0E6T(i3UG`TJB+a`k3`{W*4GE39L4YiRP6&YZiF7 z5WhrwcFAG!$~b^ZFYhwJABncvZ6gLsNXEC(;CR11+ii0$H+c6HkyC($7B?ZwBIIn_|IghfaMb> z_O;mIa5jQnOjPb&W$K=!m@oYlZzZWtQ;0*I$ki0b)L^q!v%I)HFp;aqP0D((HZ%&! z$lat7EsAlEiBWvHig{$nD{E(6rinPqDN-4e@d!H6FjBnkm)}M+0!qsB=bwTIF z8CtRE^6u786+G8d@{*+(6yQC2QG5=38k)jTwYLN~f7|Beu?ag_*qagW_2(nYYuKG0 zN9R18r5JO@Bqt?@wFVf;(5biAXJbCt0dqL-D<;ux*W)!t_T_C`f(gOAsl3*-;+vcP zPT!|dkgDQq#Ri75JZKr73~_$7BPDzsX?MXF94FRSYzPx|1ajVo<^DArNN1P5l`R3Y z^ba*2IQMdS_d(vB(^lJL8?oeNVnvzwccJx?Q1<509pY+|bd`;NfIvI!z;B}GSRe0Y zP+++)b7OX^4*OP`@+^?A;%wZEg0=YjP?COR;p%jhB~UozDlG^1tLN&s!mpJi+mphf z<1YFYPX}i&xRml_?D2!sS}L6ineWfSBrlX_8(M<{OL#n9vVPV0+20e=zrpCk^PmyV zhW3%QsrQv6qGTzbA1?uaMlkIvXgLb;{KYhNoe+oy1V(ClxT03_^_X{wsp6!O1}ilp zGsb}AvR!(PZG-P}$a>Cpu5qNP$yMA}>u#TFJnJb%GOXJSi z{2#I!>m$=qc!p%bR&YC8Hae6)l*;D2Ux2bbA&lhmXeNtZ_S&#TKO`)4kR+V_z)@Uo z!LNzrqSvpBqNqFpAJdj+ek0567>B$lxe}t)pAA*8d9aAxsSBrZrbs9K%(b!d)VBH# z@-Q>HioBlihAbYAcvSxWhR^qmKL~TxQ6Ckbo$k0uqt~CMzf!uFth+dxQ9d?;d?Ty; z%yG@nzz*EFjHmiZ!X*sMKMHEvw0&~0XW@?m2M*~ne+rhnLYt0}DHuVS)tOZ4Y%|L} ztf$&b9@r{)#5aVOXXMm=lbo=A!{gYjklD#_v2*D6=CU-``RA%$SPhHLFO5X?*yIS* zpXe>Hxu<>j6_ttD4xvcf{TZJtsG7`va|Xj~LH&6qA@fvHu(A6ftxko5y_7v)Wz7yY zC}88ktlGb?SFb0J2H=;OFMkmh*=jT>c5^i&?;YK)GIa3zCM6TfEqb}_=}JpGv9NXL z^X@A#yN38o^Y%gdS~n;aG<-3;X>mFaWnBRVQnlfpfL+S{y+>oHV^|7T{zh}f&|z_) zkNmlgV{JB$APvaqXEQbLU;QsKdNV}yj0EXjN|>zdw&jTD=JOVAqnk+QveQJKn&x0B z&H5xlvQ4o>U=CveziVHBza{RJ^-$9Ne%WI)b!9R11HeV@*`$wAJEM8x8V%r+NR~TZ zs>Mi_Lw&Hjo-^X;-MWi_>d)R1$DSc!@S^N5z$nu2aVi}uT2-;!wb+i2t%v|&!rQ@+ z1`sv(x+Sb;eUXa?+s|%K*IJ)3_jDUwEffN@@JZS6vmSt$FY$+`^xA%T9>c*~)a>$M z0-8S!HDs7NA3(*^F&U@392z^hLp)F}s}pRIKnSZ0{Swz>F_;AWu-Ed?^N9mpavN+15sq5EyE7OTWF>RrbkKEdkAM);S}~ z&eNVHvVVv$o^5ZXOJY5qy>YYRka!lRa0?lPYh@hk!=NGe`0###-5I!SLf@m zr7FsXmgU<%plA~6VD@GsCubmw7IU~UC^k}jR5X$$atCn7$$72Hb9^=ESl^H?7ch#t19Q=F!VHZ-f_toPZ@ zBG~I->G|~`DU6a6z7}V?FT~t9$O7HNbSN3C3yP{jt}mC($p! zFpi<^T4-f4G3xlT%in3l-6p^SZS|{!A_*tq_?-$Qa+`J~bv*T+D>Sp$?E88R23qc~y7suyxl(?Cg zKU{~#J_Z_{X|C7@YTg-*3!0MtkQ}||H*BApRlS(U=;GSi zerz7uZ+XSl%l{C0nE_3+;jU`)%a3rR^C}d}epu~EzEkem1H=Y4bF0rdBn{sS;jTvK zXxum+ySzwaSR8kdav4Y%^5LmMzAJUco;#@BJ;Xy@RFP`{*sk43+$Wm(yvritnl7*U z@%w;{!J;I>Sma&q=LvORe8cOCA9_jeeHrv4jA=(}>^bM%{3y5PTwjpU#)MiP@|Hjx z*1fB2LvB%)S>4rq=C#~qKq^M5EbC=*J0A5Y@(#2Ldq8K64P|yhj>MG2p|`B`#C1}x z>G#a$V=pz#j*Oy_m!C}}U-{@4l(9=NaZF>i$;LzM>RQ}MF$5Lui2h(TUxpU_7u^V?8yJdcEek%Yy;xv^c4xK*!cnRt5 zpr^ZBRh*1(?;tHbOKH=Zxn(nqi>vod?1U~dKsL9RygO-GWghbF%{yLO-i#N^R*CaV zHN6&18rgaDJ{ZC~W?ydM?)c|jJ&v1Q+>wQEM*-W}>^}(KLxkFsr0S5S@gmn9|He)D z8)@MbJJ>FuDst!(r5?@q$^n@}+b#B7!taocn8~P#4Bjk#@#2Mg9z+1}cQ0=z0mJQ% zC|=zIsZ3^uM8HXt`H7kQ924^hYAcgM!{1u|TO@!xR{Bek058p!ISF#2UPX1I0Nob< z{5k_+|L#bsTOHTYfuj|Nt~0TTI#VonoGahz`2`^pt;_XWugB%YIF>V#-pWLa@E~-r zU%v$i=X1{a-i>r3t4DGlTd<5SwalY43|gupwBI5kdxD^+Y0pMHeQ_H8`rbzf0=2W{ zygdx3+K#PFl+Byr;^9`;c{IBEw1r)6@7($G9AIuA4N~R3fUxkry`2@ImQXl3r;nRV z{n`FZH36nMDcfa{e!X@^c}JM~sawZws`TGG9DE31r<9i6p1;6!%QaPRQt?FQg9ULR z1D%w4zf4&?%2{*?@^Tr?m8vO$xs_$+tl3iwnn*-OMfqoR-UN)wFe$pkG_QDkxGs3p zVPg1s7Pa})oQo2Od2;BQMvH*eXZ>;LKy;nO{)3XhNVQ(ykwJoIJRiHzad$)jpfGAd!tgK#^=IAPmeahyj8kE^q`&x7^$GGbGuHfZi%K@p%iWbMEOKopon6BM&caPm)XYJvkA#UY+cxQ(RCmT-M(k z6G#>k$DRgB>?cWa2x4+nyuX&ihp;XyIyQSW1|3&7S57s+=swO)uyGb%9`|5^AYE`a zhkMC%qPFYX^=91`b4`yi_q5c)mNy@%?ld`nOY61GJ9q#qLqGorFz{r3MgF;tK46BsOEr;4I2q9IT zUi32h(%-U*e@C%lY(&@^q`&=DR7F`oc6q!o?7@b7jBUSt!K268qfY+hy~dgqb4emI zmP~rCEN7w&K-lFE{uy>B@;H!r%RZ{o+bmCxLm59w*LY@sNqrrzUdEU}0^yL!sT`(R zpE;vszES*wHFDFOM6&|TEa&|Skm1Z%-u*_RF=+6oL<7#WeRv_~oId)X_r!$lpg6K_ z)`qdO-`~_?G*!2yBSZ2qIbNgK#{rZqrr(FktylW~mm~u=`3zFk$9JpNXi##Z@t8!0 z`?veAbG+SEKxf7LsR&L{$moQIl9;WIet)0kz$-n*r1m=m_ZbTYQP=P(ZpL;-=i5R| zLuxCx#%60T067m7O z9TgBY;b0kGb~D(#7yL#>;9hv<9TJ{f+9mkKiP*MKKcqY24s0;`qG+jE`xw0=mK#W9 zBs0w>{-~Z6Arfe0v!chz-!eKLw`b)!IB1|xlc*~>A1Q@or{s>+RQ3ZX6emkdLcd8w9$N>?G zkK<+*cYslJ1Q=T|@(|dS^QR)V;|m=dy#9Uv{e5GSWe}xd#*iafJy4qJt8&-KfmW1X z*psQ8tiphqxKGx;n-}}+wu@ozpt{=@3yIX1b42QkOF@N2zenF9Hao*-%P32IYPa_} zWWz|@Goh1NMm^orQCsvTKmcy5#nHB^Jq_BbwdKjW%kD#ZIiuAuWGCxRK>i*g0qO72 z&ncwQHH+uw%700jI@3auaO}-R;m>+Qb{0r5LPIcAZqMo!)YPZ{({lxoA4cm5(mdpU zj!L-+aubwwHu7oN${YpyVW@%M3Fzi!%C7QA#<094I!4!em^Y~yTFS^gw})HP{)8l2 z7$N(F?*XFZ!HX$K08#KEE8gol#jTm~5q24A6+=U>=V5t~i&~CMi$eAFrLl)h&WrfUq zhSYoh(wYqO^;C>|B;Ep|;8zPF@N4A1&K3grKo91w!B9^R?S%_mj4J$){5UQyu9pt? zXz1xzaMiQ>t6+1WNq%mQI>{?sdYAIh;V+BBU2g38QzkbxSscZ@HKIh`$y}gjrW2Gw z3(_DzscZ<|t@D9loWFe{UE!H-c+c3G^Qip60G>6pxj8tnTPq<<%hZu^{VPeF1kx)y zvL}Ny@s$O%?PYz%*BcewPx6ymKgGN_G&(u{sx&L-OO}1dA*TnXHGhmhZ_4V!a+}<^ z-9?RxcLTX@Mil&_0=YicsCvtjx=licrUwq?OY#dS?o8XONG^0I*=N?8@<__@uKRU2 z?Q_aYl~M2mL{}M1ACQ z4>1WmT`@hQjN}1UNDTdYyV?MoBR;)gvPFyH+@b_B7UVT)u{9(X=5Jh3tv4F;-Q21axp?ygT1e|;@XLjdMO zxtqrs6kGtb<(jMi&G1*yIzv?6N}3HB+uVxLDzVS)w(m|5SZ~;ruhH75g%ecQiq1i0 z1vsHWSWs^_{+j=mvb6S~|3=|smvaGQm#%rOKA7*%4*jcld!;IxpYm^b^Y2Ok5u!@r zu~yOxeiC)#>KCJkoMny_PG zLSm3V(%6?z-+GWG^@}YZtdl#Ir(c! zt^!GbKd6J!UDIfL_9TcX4l)0?hrCNB<^z#Pe>o?S()3v|!+*qc<4X=%aBxU0=SOF1 zzr8zYH~4x2ep6#T#qLB3wii7~Iuj{KMIpFtH$ifu6O+EQF&LCFR5q3JrQ(>teUZ7*0nl?N2U z*ka561vkQm;%#=Mfz1kVd1`G9=hS7}{&C~MCz6p`ctwk_+;7;h|I$qf5(RMv!#zC) zS$C}GzfP(1>SVn9($dmaYAs4^_xsk_c2jD9Y9C?!ll;x38j!{B;HQw_RyBJ3os-kc zsHEmfhSJ@Bs~oX*rtT*FMoS664#0>m#C048L{&!7%j7H zr!{a3PfKGjnHlETU2CzXrlEY14d@EElwe_+e_o9suo^R~$EF7{k~RYh05aHR*IW0~f%0z_7dQ9JU`yL- z4d6BC{;UDc!YR_su~&HtPfc%K@{fs}xVrr2pB@cm2pIJarpdIxRE_D=DH zc}I-Bi2H(@nwC~~X2}-56f|z&L~S3CfE}0W&0y41=-BtXlwANC3A*cm?)wi<;!+LX z-&ma@%Fegx6>aq4fn&t#>a~%NkF)Q@iwx??b+Ao}nw$nnwV5h0YP9+Yk(PEQ&P>w= z)R+R%`+8zi?e9V(@#EPgf#kZQD=+d4&ZChMtqKO6OauMH`Yz5)Ls3ytFe&pW3%H?- z(EYhj;KBh}&9Nrj=6nV_-u;=P^|4by+aq-^i)k~|YcK2Y6&GLNW9DjkzthoY25dG> zCcmAt_L`^FL3wcI+^-IhwOq+6E4JKVG?aA=U0?5Jz&hUF%8PC^x%l$CqBh~J;OXH;~9`^U+ z_oxd~g)C}oD2M-23E&fC;pJDM<((Mo5tr8_M&;LB|8d{6J|n`{Z|O4wQJkC|YW2Q| zC49CfL0Q6XI7(Ny?IVG@$R+EqjcR%)ZGPKwBAPtbZNt0&E7kZV8MF}au9oAr_udq3 zDEZ8b!{4vg!!lvzXG#_|N7}`wW3nfrPG8QLLE=RpA`4BKF9&%zZVchKhMWG2mCgYK z65rjIhz?ZfBNjnIxx*@8l6&oT?Wm$L%dwwtHWVmXn;IO+nScr*n-px{DnV}NIDLuf z^3)t*b=8SM-nZs?VBl!Mj~`wesW%VoNTjz=BWv*_MjlsOss3TNoofvtKL7XJnck#A zR94U}<-sr$Fr79-Z35SO)n&UJBt-{5$p9O*;N~28p!c8X%rZ&KX~?R?SEk|%8Jj`$ z{2T%Wl~~^)5~D=ZgG^YgEgttpG`s5u51ufdHHzlZo``lyuFEm5_&6r}D4#4SP^~ju zsdzO=Xy()Qo9(1^pz$ZzI?_@;PktL3NyS>L>EU>P#u?$wR?Mit55$pUN81(Y(H-9( zg?5YuKYoJVquplUOHj9Bab)BId;?lULFnO@_DG#~Fq*d%KVs%^ak~Z&t#8%4n7CET zEL(IN49Mg^Z{7}gpdNiSi{jJ}vCnclgl7CImc_KC?-_WvIVaz|dKCd?!@-$ZZ+I2i zjaLm$-S6N}jO_-AI)}lSQq<)Hn6}q=Uah;ngG~R+oc&qV9ZHJVqJ&A&? zErMa9JseTpRS#{O*K%5IEzD4vf)u+qUE19r;h^>tX`V8s{9@fy_94sO9FyB5vNs96 zvDZ%s8zdR+(ykNKl-Uu(JaLE$O|8+@VwRh84gt-5)YR@*4>@>6e&jtRht)kFD&N)j zR{jocLXqa*U;4pbPwu6?D^5)H>e71+r<{a6SHyTkkz_>&<;O-zkNb*$Bp(j+%BSNpYGX#BX}<)Iq=I1cPMH!m)^8Gfct7m~q%e!D3Nq&r3YTm4ghp!I8cy&GrXdVa2dEu8@sH@0g?NV( zMSZk+ZO_;apYWF>4m)d$Jtp(dyiJYER< z+Q9^I+fL>_DvCY099i$aK1|#@h}5ouo{f+n1z|a%nfqP>I;^}P#ttD7wwM1S!&`>rax9 zeKPgeb&Y@J@v$VNVzFd}Z;ydliLqoSPmb7&*Z=sw=vHyFAK&Lte_#>(@@3d~^-e1o zb+K~Y!E}+RJ$m$$6i`wNd{?MgQJUoi`=UxT-rk=Td5zLbI~k4w_HWGUx7d3B;d4uR zs~Y+!lqH6qQ0{rdK&FIR0lrjXsFSNmTg`3teV(iZPWIw?g244>T%a>_!_{O%3`ZAy zh1aug|D#^6yF;P|ngU?nD5dK1(QBhI=6}P%va9$k<=~1W`YC zo{GF%h#j={I(RTj}}&r90c))$fuyk!lPY&7rCmd=_KMyk6rs@?zk-MX82#GC7`4LA_u zvqV#w!3C^M_q)=Czu++=7Y8`U?6Ue!Xo9u*(Ur();PS!H=euA$$o-RF-fiRwYZjv z@{^XnThS_~?U>bK=G2wee zG#;F!F72AjnnEkl?{B1cbx}e7XNsizXZVb z^%dv0V1&IIqol(X!ZtpZg66W+t4%xx%BS}-${ypUL!+@uq^j56~k*D_PEpvpyp)+cH zxqtC_XM@Y2%?OMqMQhdjRku_v&bj`h&%-cp!@$*xi48 zAYyaj&eIumzedbej*9Uiv(t1}ujppoi3UAlc;?Gjxq@h8S8$g}ZAbzFKr(t`eSsLD z`2Pw}iGw6YA9c(%i|n!h#v$@wIYWFIaa%V>x0i$@|A3onwY0>i8A&po+we}uG=Qg4 z{2Vfx1_hRa=0mY7twO0lrty8ZVy{LC%PjQqHdP0G&xFuPPdm8@Yix9$k*vP z)xqNrbE%>f&LRhql1~~uQxpA;B9_cgbjb>$4n5}O9#j%fQm2s0hji7g1L9T#$spP9(O`?3$}Azu%o*^{jXs zTZ-&Qc-Sv{_N-H5o2^G`9sF?2V_W(Jr`Y(N06bII0kv*-KVDL1i{;5m_73C0sz5Pf zD4J5M#MO@798Qg_w-*;HrS!P)n-B!U4OVs8I*%oXH-DP>GgJxM&whcdPiU0V^0og0e(X>TVsc@0tcu(A>EslMNKk?4d=QI&iK+tid2CS-Pz zFELi&j%XljJY!MEuXu0N_tZu^b75i^&HF*<_-WVqPFLEYF@o_5fnRj2&)v5CqpgAUIhS$u?LMF&)TD)c9{#sp8t+lh48&Kv@K@~kJAQ=6*fy26c zq-tF|US^Hcu-?ieLC%luqVS{VV4i#@)?#;kW_|8`=pG?v{;f8NfC(coV)-*H{R%s= zrxL>z&dfgqw%^-(mls-IimY?}vHDO7wm#7GM=VbPHvkoPh@j%!_1cHZoEbWJ^6da% zpu+F`QL02BLqm_hR2fppdET58s4hsEq&t?9fY>e5IQj}Nq&WYA7{-)UzO;vIal5^3 z>b7x3TR3`srUOG@z3#+*dwHdb_b0~rC)DcipAEo}HkBO5w=00;AAXy7#DO{4dI7j7 zYpOjunSb?w|9bp=eg%@Q`nuPw4~Xtb^cRQ)hB;;SmD8Zy&Cw4iM~~@h(v?UOJSZTjDg&a=i;>o{@`Z9%wO31r!@dg z1ELv~lScdTU0u+XC=vYAj7kAZd+O}j7!mXK>vEq!HHuqU`0E<8^gq>DNdC{;3V6!> z&*JTW2s{5@o0fIg`uHUw{#X8E?2@O!v3ryEImrb{Ldt;4B-(wD;!Nx0yXAmg-GBJ9 z|Ksn%n22dyv;IRZ6vW^E^+w+}Q1|n96`EkPWc!uxTELOzN?ju|w;Ms~w|VyIOG?u7 z{M&+jF~c95tOmHeUvmlDyj9b3aqZER5|&DdN*s$!`Vw)A^Q+bCS|)yp3(9tBmmvA~ z&z&1C)kL{!m9&i(T~yc}E!zH`+(R>DyuoDKDLf$@F24?MW(P6+uSv~mj9^H3t~2Cy zj?D?OCw;n&LE1*_CR>LY2)*BoWc)b-TS5FZ7zZ+ye^Gbv^r_a2>_Dp2QiZC812w{j z-#Nh(KRm$Z!a0S!W<%kuT-tMCYTA@+|4)1G9o1yk^$ml4WDper6#>gAB27e!bO(h| z5JWnmC`fP8TLRcnsWy65q!U6-sELIT>Ai#&A@mXmC3NzhIF35=%ph|=-?!FV9{-WG z(CfO+KD+PV-do1uIo=FDTDgS(EqZ(HC)GqiNHY(ewrG z$;7LF`geb`ktSUYtYABAj*Upyl9M|nEdpJ9v%N`kO0`ol^bdOc(<3wzf!iZe=P#rQ z_w`lwv|60L!tf@eH$Fe)%#U_nrz(Ka_f|11Ch2kf733LwdB&=XxR$w z`>zLq9n`JjycHS+Teh4VP3!x>&HpsZ)2B%${cn!Tsd4Ag1JWg~{!8-=#Mm^h@Rdkw>)+l&;m6!j8{S8PF5sT1Q0?J@Q?$EK`+67Z zS<8tpn1U{{Q-a48Lju?pLIk6Zl&yRccZla81~H{z-KbE-qWB`D-?p0e!}r`E8&V=l z6Wp7whjrqt>trW(x{sP$#UyOsTY6BazdmEN#A^L6xDwZ|SE5>Em9+I5LAEbpgpi`` zkO7^~cS00rblbL9S;w;%I~~dHNpSCjFZ64pq~=r)X@Ds@X%`pwZG4Ys_yF78YS5by zU`mK}X$#k0YMi0#obq14X|5ZHP-*-m`IVni^b4NfO@@xw&DM(x=!JHVjE8q0P&aD{ z)z|e>Rh7Jh5_iY(8?UmzAey&_tfm}2bHRw(LbnRyq>boMd-SMp+s~;5ZKjrVlW|@O z6)kDa&qLg&-|bXD7)qN|y$tEE;zg(+Z7nYYJ_{uO!DsP~tygzM?dkTu{4vu#TW_(j?s@42?C+oW=+6S71(q1vo_y6dWR^sqpOIB8 zDzo_M!=U3Fsmu<#KFiHI|Lg=;Aek6%WY-m@10=it@K?#^(T3lqo9x1oxFi|7#W}tE z3M{&kuT2z~Qr*{U7y7x|d$dVy8Bn;>BZ`po^xKY`v36K{!r~phZrSxvO_KSwHSp?d zl_i23(x_DcT+^hm#&#kEgs>NPa_qgo)1G6A5*@DZsLQ95ov=GD!BHN38D!>r@_-Gb zt##f$L*&LR+vvqwTPC)6b57A;SOxSB7?q7IM@ZXy7j+?;3Z`Q3T(`-qTvqZHri7ws z43t0MRS*vyk61Gvu3hfDm)FT%wYUKRckR`g1TviwTRPZt$8@Vjtb~hy-v`woQGC?} zuys>eYIQo1f9jU@S!4Rh^LxK1o(7$5`^D&Tu@KIv?RBi?ck`?hZO7Xj`m|-$ZLl8i zI6}%31y#TBV0>cX^=K*IW91s1i2u?zi8M3zgZakV{aq z%kD*M$SS>oTZmdw9kCs^VJ!O*3A;Z9WK%RoF;k5DdjbBWZgac z75ft1oMk`Zamkjr*uS^||RBE6M=U>zXo`4uF*C=)t`chvA|Q|Ohf zoOZ(!Tt7B|sOnRE+^i--7ipk`J`MDb^mqD4FHNplo2iSJ(qnd0*?r}{_*9gaKSX3s z+OwbCVSO^Ost4UzV7p?w*GS@ay$-@FT%lbFvpTW-47=MnsXa`_C`Bnne0KWSvjuI^ z$E~JI?qO`4vp#uPV%TU3X+_$9gi_>mzq)TmT`T5t{|RT{R}%5 z#*_K!J@1Q@awbHvbrJlqGJ;E5!0wo z;lj=DD_SKW{KIq2szCw<5;(9gkrUOsjAEs1;}z4VkIZNOj$bBw)8zAOwK$@M5ojG- zKKtezSjk6u9gnwG6%$2+-fbg#<63b4*1BR-n8EyXvqKlN;DLE!ZbO^7pG~|iMmHYr z?`n|4VV=kp2CbAgm%U)B<3J$WD+|2WoKlJ1XPd|JVaMF4?zYTjc)Rc^)#!Z$%uHQG zH2haBk`4+IEu3b1-_&kb6(BL$z_{QV3O;p}Q<%`_$Et6K-9nJk2f^ zHkshAi3Kxyx(0-pwPBg@RaS$+Oy(`vSk*F}EDimPawtE_Y5NbD>==#7wi#KYdcca` z{swubGo0go>~_JZUeA;^&K!46phfe)sfnR`BCL#EV(K-p_& zWqjNn)|KNoLy0D=t zIx6>xnV$Z<{jZm|sYr}2>iDe5kQ)`%iT=Fnde3Asa+m=DGQYYj@k8m}b|ZE8Dq{#6 zuUD)S`I?el^BGA=Y9R4AVgD@2{8WYM37kM0Kg@AmJ2)WDKoVQ4TR0Il_@El?t-*Su ztJFv;emma#`S#8*8Bs#ETa4GttDMta6-ztuXDnaHL=-!}=wI=ZF2U7PO?C1swR%@S z7=&Q&*JCZ96RO9xCdOH6*e^b}ul9f<-$T4H&FjO6>IXxIJ4K+o6GVPn{ADBe z(f?dd(;u?{eC15Q^;dAB*O<4k+veYjx${0Hz^K=au$A2H6mLVIs5)!T%kBft>AtU0 zWtlZ5m={_(bG;o#Gz?an;%FWbHM-zjZ^KYsYkU=1Fwiczq$m#0S6i`RXi%!Zz%%o< zb8sOfs3a~CH>#YJgmbm9M+S{ufj-@0p7C6Rl zu^80QKe5r_edQj|MWGTZw2m72AaVZ&yiCU zogP^>a4M$nPxY+CmYI91L_LRb&}Vh9E<&3iF4tWozhVrjfx6_4b8)bVNr|E-&d$ip zpnD^i9iUHIo{scI#pSjh^(yaY&i@MHk^Wtfb&$ZEt$bE0*NIRz?x3stcfpq>(Bc-lSzmYc%2x^0*Wf}SSSV5^(m{8j;nq?}h=RDFQ>2g|2 zyu^F1(0w@Z(BR2c1sQEvEeaHRhk!D^yF3Dr-GY#sdU70nP>GMO?n*27lp`l;{b4JXd zUVAg8%btDbk+b>kq;Ul1La+BqY?K%+2o?IuBx%kr7+bLb#F1R{Mq9M)PzjzAIT*aI zdwN2Vn@jJdLbuo{5{xqFSo_)p>51Q0V#A_HD!!(?d{b}WVz#c+kZG4=-Qy=y(7lP= zXtm5RT?!75%?s&}^s^B;8V8-9T%3yL(l^XwF=Ug29DBB7W6Gwcg2?moh4!pE73ukb z5qzGxa^#GfzQOh!yR{3TK) zTt&#PX<%`Q@kF>~i35Vu!H)HYm+8z)acZ!dnwZ-lvVm`M zT8|tVdlP-A-VPHvima-x1Q=7fQ+?U>`>I6~Cw}_KXMMx-p=w%1?l3e=gs1F%ibkSG zeHY4>86!KsXc50Xg5+&xtS{v*hBlNAJ;|jV?lN-mpXp<2(b&{TEJ{ z!;QqwDzH2jo*M3?S~9$1yqaE-$rDB7aR?V!lxJ1y2yxop za9GQNomw%lh@Y?ao37e}j1=6%F3N`{2ifx#ReKD_vVpy3^$1SXn-km{UzyH!APkys zo94K-cr5ZUy{e6s6kK1#eb%(p({0m{AY64^`Xhs&dNMO+oVwt*Ld0L0 zI#p7yeYIL!xjKYeG}(7>wkbNOle%KQCvbAvUMJI#^2rHN@iNi{KX#j{^UlVQVqe}8 znP+kp*{O$qkDm$NisCx(fvNKZt2rYHHk4H8*&-}7Jar2tm4KW-HI7T$IdOR0Womz3 zu4Ws0HU$!JRL|0@_E2AX+TL$7FsNn9%VBh~9>2d+|or>(W_o644vpyhRjX;O5n~Dx-z5R$-M3g9H6|Trf<6)8qD>9+8$e zu=?h=S6Y4WH=P}0D?h|$2+6bw8^eJ5HQwKn`%;N0+@$3}JMlF}x-)fYPqf_ug1D6h z^0i*HLVGpLgEH?%j8cpXy27PwkldZFnejQ*@X-Jjyb5jX$CB6QB89vRVKm**nO`Ti zEofq86>PwJ6mYhqDfYZJo$Z=SF%}rRbL{ftN%lnpUg+(kG}payVMu0a(%y$1Vq2i; z5Y3xacwC@lB6kR#w7zkIEIZJbuJhb40-3*kdb@QYU=qoGBp~nR+sFHSf z{u1Um@G4W7iEIDTRZA|@jCg)nzIAhQhhE;XgfN65rHq$!TI&*|*mfNjZIhIzP9caa zQ%L*Zd1TQe47vPrxYAX#?z5gy`=G;{o_Yzkd}yp?G{E}Vz!@j`MfpJa=a0@4IIKP(o~i_oc@_~K87*>>F#V#>5_@`@d4g*z!n zi=^y|Z8hx^QM}!Cb0I`Ypy*A)K@lsB)e%M6_rLx*Tk#jRyeo42s4r5XqbEO!masGr z{-!vs=O<23f{#HMAAd=SI6V9yMQkWD9{F@vh#bpA#Ay@C-ct_0WLs=Wkzt{(Pf-mI zU}j^d%9~YX4bZPLHdY80WV*$ID1(8?*LemdYi02VN_GXvI z$||;j>@M>+^P66(A@fndKLE17QnvKKs}+d-xL0i!0!c*n&rKKK$!<7EH7z zt=_+}LoW?AqG2oUgQ42SV1drHkxJE#WwGHrpnvkx(!Ad1JmsBl`lhy(mZSXOhCk!V zS?Iue$r|FC%D~1SJlq>`Bm^za!x=g4$tTcNb$MgoZLftT$m;OhRs^~Q(Rgd=8@nr| z4)x{DdpbYK;*h+AQsH>5iJTe=#LpTJ#S{s-w8emY9Qve`pU@9-=5NmcQo^@{CDSf) zitek{_@9LN_fr1sZ2qo2N3fCkfLC6*cv=HHqs1OZ;*t+~b5m5n7# z!ORPIpYGT;V=)U~OgYj9n-q z&XuI;7Fsf?=P~Id?-slj$$mhvblz}vEbNh1$-C|5N7yF2ko=_RoqMLBW7u4i4%nl_c+hTM;`AgfRws>l?t=>*rK5P&vyMfoK_-}5Y`mWx+Xfxj^p&Yoe%I$ z2My4jx&}QH{iRCbb_Ou^YzG6+Rknv}E>Yb;!zR{qn%@Qy``8Qv zkh-bv2>un^tUa1dwuppwL>UfR$L8IcX?VBQI@}5TkbWL?{=h=^b00!@sKdhz(gkm21&{ht z>bu~Y7^#7$s@OJ&{h|5!d56Z!;g`^BW<@6mezP^gm;<0cECApbD|+0tPZeG#8Cv&8 z`6}zhe)aBNW@w#x`W)d(SrHBqymt))BDwzAnh$>E?=J`RXRsM?<>iG6Mtef19^5yM zzSd^cRNJB5>u=OE)9`$%)q4hRLJ5c!8!xFqeJbtCAv<)(bz$$>l#CXVf zKh?##vWkF86uXfQGTLry2!mzl&3NggVWz6n3pa9x6KL+rwONR@H*Dn9POKKhc3*Sy zwUBB-s?tmms6#n5<_$}b!5|&1fm=_sO;?jYP(Fu<-zlHa-ESr&EM6=QHOl9`#rN~w zakb5_eXq>sJui&aiec*}|0cEE|HctzG^B?<*S>yVEZ|!E6bn0LjMFK1Qi_(WB4d0w zkg8JW`sO1H#Zne~y0~Da-QEyW{+aA{GxkjOt+{9kGx{Pw?~2k@t$}yxgB+8c`N1b# zdy-Fw)OMnU=ZPH>4CqPBq#1V1dMTne>Rg%5=wvNZO8Ddus7A3|%7x?!EOyF-p+x4%;ly0c9kNxup{t-oGCUzY6n**xrZQsa%P+Ec+W)fxJnKHonznIU_%)MSLOMtw6HvG`E|cCn8(hC zTD(|`p9_&XCs7d$E7s3r^|}UJZEmyDt%(NbQM|+P4wYl${Q}A`1slRwE_d zS|NiKxwaU_ex*kfhd_ehMwY(*3V!}X084pT*HPZg<|OqPkHx1SS9sk9?&d+t{|e z&c-ABh)Hg;fn00zBtJxu4Ewr@p{%EV_u1ta{B5}VtV#J}USm>s zk!e>!O8}6b$nT{GWM&^D@#!W`U^Ht+(4Z|qV`x9PKjYgPi056mzcX$#J^(Gq1M94` zrB|K1Ddh}U_>3*5tnlp>o0ZyS8_oQ2|4H%cpktV@osYd8tFrsiL_&oA1C!oZi4%~< zG#6IKG2LyqK~_F*moki6C23-Z+^t(=(qm`PUs}(ll_{eo=H}fU2PcK@beW-e=ve6> zb9K>&bzu}6*)mdZ#A4l}YG?JsfyKl4aAVB7t$CW2hJwp!M%iaYN6S=>loG?RIv_h8B>7kqO^(q{!0F)AZ2v3Qv zFQurESEqcWgqLsgzT(LLz>2MMTJoKx>zs)LJA#*_&xpj8BCI@_7OJ(n$HU9485P58 zq?tU16glNqS}4)DUI^1^^zf9^2f`C=0;rQY5ZAEtNz~MG!a~x@Tu8#e)^&Sf3d8-x}Ab=v9ilWLMld*%{mO^((7=*dVbw7UkY=-6H{>2)BTzb);Z{reiC(UMjSExC-UowOINTFI(U5)m8t89+kR^P!a-!OaYWsD3=PDs&X@7S76 zb#2oL!tPlg4mY`pvo{kzZuR<5k1>l}s_D|MD!M_e#I>ANY@OyDBJxO!Rw3W4VJ#I| z!m~U_Mvd3)*jIj)dTBen{0`?*U5ZP>xTyTI-zS&QNkgu|{L*cpw!oLv67RArd1tC9 z>b*LP-EGML0QnI6Q8rL?5dNO_%SEpw&3OZC4KgQym)d$~;NlyA(aF*=9VgjHR#Ynl z+n(m1^#JwDYOR*B17hZVxz=IK0xQdEy1&^17Zu8Sd*uqN1!TDc`k~i>RQaglHQ#m0 zeVfpHTHdkv3K{kxu7@~GJ(t;moMv*9W@R#?k84T<>rSd8hKXZp^|VsgaF-)zJbXHg zFqKbTvc^AceO`gTB43!M2igy;95CxmLin(b026PDy&Za{M@*oICmM%;2J&ha3dVcSsJ=u6-*ioH+u4j%lo`pU5qBOw@Gj} zNS!_X>f@Z(o)5=Y-S$WwM>`1OKoZN+IT~@K*c|zA(Cir^dw!m;TZ3c~Z%gkvdV%{g zr%uW0dX7VTGjp{_0L`cFT6PSuDfx&eBS5)AIl6ud<#Z&cx(%xpDO)<0WjdC`HWP}U zVd+%3<}NL;+?AM=q`>QBa0hn+yZctq;ng)I^!s+V+)(rkvFn5#KXT`qSK5SP0f6&d z^yY;y+6~`jXCuPKT2Vx5&+1JF^lLi3#?xfQkUEY4Tiw}HRHyL|LPLXM;g$x67|1tn^J61s}u>uOXZ}Jsr`~ur6zp( zg{R{@%=Akso#S}cnE1@NrZTUEgW`9ZI~;J6iPxgr$Svyi2n<(vx0A81>G{Nv(BC2HCx^&xqWKm?2VcL#)w}wqClV#Zex`OPG021uJZhJ*V_} zSC0HjM{OXk54#XZxsTTrv{ky-Hx83NbhGL5bU2(b<~*tet#KCPLFi zfb(XWtQN(vb&gYDepir|952d|&@>6#C?(wR9OzNKCL8#>oS}@k!M?oZ<>ke3BSb)& zdiA5dV6@jE?pS9is2*nRdNr8wsarpZ%NPdB9Qi^a(_C7+Wy=TRco8UOwC=F2?4^QD>0XPZ4<&P_R%Zshk zCa+aPvee?&klq(1N@EbNt)dK)^|3}=Kwl-RY4fscona&tw9x5gXuqmSEkG2@74xVVwwV?T^QMck)KWA{jft+w#|V>Au`vgvG~T)E7nH@kJB;gvjekk=>>h$W6$ zRq7C!9OmwLUEXhEU&$m=iBB*8^!oIpeY9%+?UgW%10XPG{Ti5C29GhRO8kQCuqX>1 zTb^G?saQa)Lhwjf`{X{t%EY_IGWAEs5A$dkO*fe+wFl)h@N=r&=D3buAPy5{mcm3Y z?e2X};k%0mV-05t>J?Hblg5$0Dn*+MrcbMY;AB80oEX7GL>&J zoC_sG{*@d_%>e?(*&+cAhv&Z49Y2Ywl=oqva^9>KbhT+mrow~i^iEd1U_wUqe%OK- z2m$)4Y8$7L_t?vg>~Sk7ENHGBfG^S87542Q?5>Br8AzE3CAOX_S7Ft>F z-Y_LsTy_f%Mx`hVY6nx7-}eb6s3Hns6Au=vx1@8;{6s~X^OSm#K5ZAYrIeWmN!d?FA2%Pjn0%HP$-XKYV| zgC6fD`uu&vF$X|)>j^s-J6F53gq@ zI~({o*R4U6ULcxSJ11qd+++zdgTsr9#6u3Pn(Y;(9@LJpjJYrl3FpTzRAr8N&W&)o zxa1L^E3Iqj*^!4q#KAN0HC_+R9HM_ih_RjnQ_@>yYdU%tg{8@D$-aQ{=mmbEv{yeAC++OO1@mnYbB#s7h1_t zl3;)|d4TE0wW+?Q>@5~b0gD@vLWxF-^U<}7d|P+g9aiLUad&vcBpb6I%!LdVBS146 zIacPoet|66)Q>cqm-R2hQN8;RWuj?n(P8VCK>&RJn_Ye08oSf(2u;XeS5v({tdS?) zxV`8Z=1m&pO&-KiyD4`9Jw|I4CaG(}J1bn*#Q3xXy{3z_O+b0d#wFJ$^QNf%yL&Wk zpWV`j1I!AepVF zK$g!|_y(4E=-lm)4wv@WJgU41;VJ)XG}^n8615~63ld_yS%QY8;&JZ%l?SCgmC0pc z>oi!|sjn6(?RLSfq*M>xgpoi71izN3(mdgnL6;3SpZPdbYhcv0r~VvDkzIsvt2wBj zU6GL=>1v~KdUg=sP6)E*^biFK$tBWieX9D&%EUo{x^W@f*S?-0ya4$fP*WQ-0T@$V zxv>{MJ^;vM^dMyhRQDBWN@<~FU81L-Ermn(L4H`42(%t`bgfU*O#})bF;4=1Hzi6| z+C|5Cs^!%|BThcA(H zsB`hM=;b)R2+F&v^Q{}#LI^@hl8c0 zWJd2>I#e^)v+;JjjCRP>i8~_>#?)TM*~}LKgaNR79lM8OGlmn;aJ5&L5 zGM6LoZS!VP1*Y3(T5+Nyczy{p;H73H4DwdPD-(H$WX`P0NGJP$7LdCI2B1N~)@Q2} z^$e}bU-YdXr9i7*#(3%=h?fh$L_gZ%HBe3XtNT06AdKDz0r!wtknO&2t9H3FX)9b| z|L3>RZ>c>2xo2B0H3Gy?*wZfgqPqa? z%)i65S-ac;2}#g5V)USjl~4abJ!Z*JIZ~Hxo`IEB-Y)!MZL!hyeAfkox*{33xCB^rJS$LO(XSf?)ffc|K#qyQ4d&%_?u*()R>*ddrB8yY7gdk4N2M4c&5wEsbazd_}SeN64ol9cthCF`Qad> z5WMA~YC<3LKb~b*zBmvaRx#5ZrKe~eeam0p^8ZMao7@k3`SzxY021j%tJODWZrP$` zX-M-Cf7npxD+dS4yR|dWGtP`#G?R4w%dL zhdqNw|8V`{Qb3DcW>YEc7Jpc-rn{?0L%9|lnwP3QbM$8D5KU?mHe$)&V~!RYLJwY> zI&7&$PoHsK5EyIv9{`JhFeS8sfZobhL0UC$_b#0z4_e{zhn=7FTR^Lzua>p&m>&B)Q`KLk4S#E<304+w_aCSGnV71Q@lK&j0pC7R*OsKcNu#o9J>I z3e5s`Gbka|Hf(J8e2q~?fYFwMtjG4i^$PqaQ3O%fPRmCljfpGI&8y`tX!SiIleoZe z!}K1_C)*x}DSP0VWlVL$^at`D9QSxmbxU>{t~2dgU2ew&({J4Y%)2fp+mFuo)(RXC zGC9D%;Ac?c8U)I`L5!k0K9%w{andE?f{X#Bi~Z#XFU-73MIeltvb0pTJ#G@N1b3b= z+Df3VF9_ZFBnO~b>SI4>f!el9;}SUD@jz=uZd#3hZi*nt%BQneRf>F@R#J`-v-c)X zb4cWeaJY5|xOUlwTXZ39|7Zk=y1y^`swxl72~F1C-VkM%x^p8FOS6mDuK*o!)vE1| z5deOg9`PJW@#iij2A2>)I+SN6A7UePdXMbtQ_z)mOW%9R$haaf^7l%Q*6)>`hPiZr zdS#s75FbagLT7k@JY1TY9sT3wqNg zuU6}FG=spRJm~Q}ibtQMogxqWpPZt*os8pRXSXj^Q;rtpUtb-@RDfQ?Y8hKv9`L2Q zihrE6mjVn111L!BfAhvc=b0-F%)u8o-S>zqC?(D_d7_zAIvbobg_ig41P42)ZQx>y zcjcdd?W^fIMDr-mm!0u#bC#F>XK&_<-nmNa&cBi8w_??t>;fe@anqWF15%)5Y^RH6h0Bdzpr2QVcGvAVV$u(weWg)<&eUgO+$GG4$R6*;DG^vm}G!Ac<43?V7 z{`EM)TbSUN7q*8!W6p+VwkENS&p8xDceIaisZBD_PA-xV7Yny;ZDW$m82$SGI z`mM{@H&^T{YQ+f10Z(`guz%*yX>Q}cJ;V%Jw9BR$0MS1%JOtk@)C+TStbGC=m-6yI zd0aob6J^hq665ITJlQEi>uo7qUyioEArG_${6EkdMPU@sPn99w|5)C*A)%I5&nCBH z4B5DRq!Lew0LP@61}RP${dbze`j(N$;>1&V85W>hFViyEcEzJ@?&EMbE3IF_mlpg- zUpfy4(~XNyzg?qMVgtB+fWjmKMsLr*2V}>S=AHaY*>U0@%K#=3i;Sje15nO6s}Kx5 zYY5~%iVZk`zc&p1OM8-a5@wtIZdu5t<5pvVbvR8ag1V(J$X%`#^p66i)m-x*5Og`+ z12}GT2WJ00ZzrRz41pgejr|X3o`(325TO|qQja8h9&R6ME9E}@2_V?i)wsm$^zots zKfpEvGnk&BNX=0Y(3zUYBA(RxA+5R z+w&Cd)-&}BK!Lb1MK%65kw-nbe06E|UpQ_iZmFP8IAiYi|G4}ApSb&*nbWfCzeZ@A z7?vXUUn8_ljG_T1<*yOiX6C^F2k}dC{%eG`iJ>f@u=m#pZ8IZpw(a_BgtnQvGk+7I zZDOhqkj1}7X#YoCSxUYqsc2XsUIunm@Unq{fzXe0ptgHFOLbmQX7&YH(Rmq_cxab7nzV?+1EU^PHo03VdWw^4?!FaJqAOC%K;)Ks2wq<+fNj|x3wlUsSpVKgaR0r0^Q zuZbMqdG?^chDo?{MHlJlxO1;ux~TCtv7j|=(9N|mM6%aZUcF&XwSXjxTlCpm#@$Z! zA3FfbFD&ym@*IFCKFkw@jpmO4IAG~aRR$S_=~2&ot+l*s$=?bP=+4iF^L1-tB>{$K zK(#UZS3S#;FevTrq`}>>Xo9A?!?KI-nEHVm83-0CAX1AYetc&)gFpcsPUf*d(+@yw zKZkIW$gTro9z&51|gpPLTDINVWoJ^f&Q2#=Lp zw}W=+>P*JB5atC%S8cw80QN^+BhfnmeyXtdo{eS^(cTEv@g?HSbO6z^h|Km{F<%fK zRaA0wfr>*x0EpC&bNZ}4IVlDKBgRu?VH$Jes4J!OZCwr@7*TwqDczM0I1Y|znVc=C`{Mv-M0|B0?MfngQ zP}Lcn;G!IcBF!tnTEfG!t9?x2?KLic!?1t(7P(ehrK#s75GnXoI=Es8$)VHI==2WP zFR*;%?Wdr9TcB=y%uKLI)S}_-LD7lq{+0N3=gZJla^T5=Fz@5w_!mDP-)H(hS2=*8 z5brSvJdU<2w)Cjg-vm==!~$j4daZKoP(%8*2GQ<2_ZKJ3LwI+%&eo!EAbL75yfTre zJ&{|jf?Wb7Yz|P$6{y?!^9UF2h;XJjW+;l?cxGV1e^zgi7QO_0CdVEw87VNUan+v;H&U9h;DH zEt)gjXg$2Y^t`VtXne(uBYgJjKwzrvP`CZrSG#7etneW^L5t2JImG8kmpujsgs2*b z9h2F++DbKTZP1)65a=;GgnjT6bJ&7Y`;QW6fL*PXfvyQ^MBv#GSLtjMgG2+FRTiCv zJ^?rk{m!3jw+MH!w&Q}l1V|X_tIyvxSs+$XGNode#{_v-!l08RwDbn1rNMFbrW|xw zlJEp*lTx*2Fm+rK4SF_3i-#C~tW**X(};76we9UeK%BNj#Srny{Cc*;(n+Kwu~pj$ za<0FLrQxuE9TNXmeCFc^e}vC+b0`_4O2l63t)>89dpG!q8?A}K5@#Tm(<37Uj1R?a zqSbgiKp>j2bUCPiWD2cux~0DLud4WOxY-&c`)q@<5lhiofO~-%bZFBx64)W_IB;JG z06Z&qb^x%a!>79|EVcrr)BQkdRgv~rF4N+BGVO*uM_xUuKw;JKSs&+Lu5|6|SAa06VmUX`+@dkoNpU0-G&`C|jva9mV( zkCxWfP!6?l0R!X3Y4t?Vkmk^Cuuu^oh}HmOw#rU}!(RA&SOB`1E&Ozk!FYXjiQJ0t z7GbbQmz5@GZBUx}BWIOPtGA^mo6IwsX>J9z_h^7_!F+BpfB)c#L%sBgfU|m|k7pb3 zVC?2W(C%ysTq8kXLUVO!ixpn5`p`70lMP?#PrUM7?(C(EGsgNV)Ykg z_%}4UYqb|BW9kMux3oZCe3|8pJmYrgOWxMhJC`;A4d6_R2RzYD zy50l4i6Tc#DguKV6LIIE@HAB*2hKoKWu{8lbYw49h@qds&xs$ayD%K{FU`56@70|R zGmUnro=+VhsZMi>6J5sJuv=+Kn`Gss(|{@uKYp+-@T6tH!T>*BZskXHpR1Flu13hf zJi%0@pLngZHURegVZwEYK<=!eyY)zPGyGfIjWDWYx+x6xB5h{hpiIrxVEwme7_r=w zd9SU2k53zP7zpmByit*>?Df#tCN5kAOa??&q`alm0|N;(J&}tvooTx(p*Bi{S7vQg z_1`&PXMMwd0TniYF9S~a7-p>tg9R!^+mi?6-?(UIq1%VLMt%{$`bMqx2XlXDQt_u* zsv!C2_vbK!2HXc#jy&=Tfht4uuN6d$HlanoAC(He^)T&QtPO&ej#8lb@1FJX=lMD%3Hss~>|Af|mE`I(8p>?{h$A%paUr2wn;XO@ZcRV;m ziedr9w!C%HCgkbpbps$!ts-0s>Vq_kCUenG@s9`oA#;C|{?66|p_mpgD!RZKTzHtw z{R-7h{I4&?vayUI@V~9R{iToo*yHg1ZlXa$>DC`hFnHwpG0>OE#9+Qn3k(59{(78o z6GE`9?Kn6|fkm#gRWtay&D8z?eeQOGhUkpgqPbr(E&^9XwEA0BC%+Evnikat{? z>67f|%_2ndcu08AD%Pd?HlgcK8G% z-`FKa%j}4z=dS8Off1g^MAiIkQ;&z9sWMgTxJ_ri>qDJ~sMqbA5j8RF^&WMP#H88@ zRO-qqXkDm3CYNAE^WDreM5Ab^sq@P3epnNv8N?>gbsiRWr9)8@43^NuM%X<68#DRW zGbj8Cc!}j6Qdtzda)&4mZ@2*l_~ zU0vPklH8uFn&wBXlSU8G=ij|%^6}|0FcvOVhRYiSRK`tjt{n4i;|>Y<@r&;M9>zJa zpzxN>$-ngF>5He9lt}vR;fOk*k0L$1xV_=3W=f%*KwZ}s3v3C(2qTkKM$x0s@8{9{ z8zK9v{OQwVEkNd8mCa4cL?l4+hrGa2NNaq1I3$jM0>qWNoy>B)nz2>R2FsdYJDeDc z9B=RSA56FWY*lF4@TPN5&XG*kSJ{o*G7nYmE^+fYVqcoWZ&qXBznx*|RQnFFI!!b7 z98!vh%TW?gH%z>@M zzaT~mBe?F+!8Kf}8jP_@yAxPc1$?ziU+vxmwetZ-CYkOx?Z6c}5RLJ<@wn-}55%;9!!AMh3-tN-MrQ;;+ZoT1O*|sq5cu?CiaI)5e}BX+ z1C4cla6Pr#0mEwi5Z$r&=u=i81o_IZ->;n3ypyTna;Dq+UG+~1EXv_NYIOXneP226 zpMSVMPqTEg@82K({SmvzU(eWsN7(;c&SU9SOuJ{2l&;=KVK7vogWoJ(4cKDgv3uuV zDE~Ja^GoN>KGrt5-yfmF7V4u!2X}V@#9-WvHh6OxtZU_ekvc7NmE{N!&D|)YX~!)V z+nWcC4#-uji~sfVzGKKgex*@H%e;hSXYcs^5$}srS0R9_qyMdRM^b1hjc^0e<}6zRZ0zjpocd7Y8%3vwxn%d_3hcHUVCY5I@;>~{sL!??V7dG*1Dp$n ziR*&nFW|nHVHMYYtc>XHI)n6dl9!BY_&Gq3myG4Ef5V{vMWG0!gVy@XgDCd`THdm& zd;)CO`{BzHVgTs|TQnt|z~7PVX?~k|lRt>6dAHPO6mSEQc?q`*{rEk;Zyy5BQNV_{ z=k6?^P2CBHP3SYZ1V5TH?7pbSRSM4bskZduKWnb9#^$L3AlgKomido0&FAkvO)Dtr zda!IF9ZRFRoGbXITuDgmzCTpOf4PZ2(J%o3WGzewHDfk$8?@8mL4ZWxb_n$xI7t>i}kMmAT^Kjb?^?y)`)+RyS9)aW_R6G>RRRbX9hCb*%vDqJFTv zjYWU0U$C{a^DxjFFuU6TC`w+PtzYn{{~_GsGu!HdNU6H&mz^EBfy$s93pJzyRZO68x^IcQKIQ_mVlb4$9kRb4wH`%Ov1uXJ#~^gb_H*%rY&|35w^0dEAZIWb?^8GCbv@;^H=3XoS&{-sRKL2Dk@)a zgFf>lKZ*7qQ@!<`=mr<@p}N=?F-*W9025jrwk9Qj zS)GZ?*3&Ls=nY=%BFJ31XC1D8?tE79SURYDZ3l_%&?~isH4;;fJwev$(n5(SqG%|} zos4B80^{J&Ws8EjefYtelHaBG?$6+xOz)%)BhUM+GYVO^1rE%Rdbn`x_BH{BgrmU3 z@1n|ryFim=kyB*L01S9#vD?%W9jL{ISslb&CYeiMmWC`qMH5l)b!wa~DmvO^eyo+e zG#rns3gyk~&07DHmiPx@x6%jF`oV{;C>~onn*316WsK>Cfb4RrG}4~x7@KSN&9hAqS|V9|iSBg5h=k1(y8eWXsAmqctn}7zvlLd-Z1IiVsY(-Lt|e0mh&< zO`gcBH_N#!y(umB5!j-up>m#33=YIl*YY}w=Vh(^ zz>!)TySuxYiy`a~q)l2RTIA|Ku*LVRbG>T|+E*)aR#1`7w(tFt!`gf^bK@7fTPwH? zR)yw(rJJMRGg08Z@BO*OIQhIE4ihgAN1*1(oUHF+M(E z+i_{T$PY$Je=*nTpvMf}$*uEgT?wGSZB~bMN*9el&#zy_EBQwzVBaBm5*53hlwNF9 zGT#OPTI}R0m6(HG3#4mk-!|Z>uO1l&>!XQDpb3DqV>0e5*KF{^+Y5l9hJ9PAEO`Jv z_nNv%-}~)Cw?95zoT*0iFJP$h&MvX(Ebk3r0-*1c6FU9w7iY@H6CvfGUfwv4X5JL- zbirj+_iOBIP|u;yXSa)BmR)Ylyq%;fgJ(uy(C}e%F;%9UgElg`U`&LCon0^^yJ&d^ z0v%O*%H{GVxJ>TT5#Uuh$yp8NH-K2*+FW+2GKgl5_NN1V_rZNQcERf5U;N5NA)E|9C4kT3qun}rZA#T&*u3r%q^m2(y4`3c z)zB;aFgv>mz(h#PUhHH6(&sioz+fnQoi`Y5`1M`aY5uK<*bLR$J)1uN*$Kg*urNsf zSO&shJw*k}MP2lq=voLl+&W$|$-=8uo@-j|sZYU{E%Zi<&#%47*pz(df(Rlk=z?K( z0C4pSCvqEydoZNpN+BmRbw}9j5PxNONuBq|K&5?RV&Vy(Q8rBBiJ#(QWndCZGx)v_ z)L2YA;T@<=GWYcKtVutQ^ePf82ZJO90Q*I(Qah~?rpaPK8~d7HE^GA$Q_^78VC z`8wdOfdT)4^W*Kflz8vX@wiP2HRwgF?z}XwE_AoM-WH6~&usVPR*88GY~XzH(B|A$ zEn2uDp$prTp$Blb8bAxv9a@`GY=Hi{v~XqY_WY&@4Z@Xk;HpCp>3D2PscqYJ8|A1AneuR=Je*>&<)r3+XlWa{vGU literal 0 HcmV?d00001 diff --git a/frappe/core/doctype/user_invitation/internal_doc/index.md b/frappe/core/doctype/user_invitation/internal_doc/index.md new file mode 100644 index 0000000000..2e3fa127bf --- /dev/null +++ b/frappe/core/doctype/user_invitation/internal_doc/index.md @@ -0,0 +1,106 @@ +# User Invitation + +## Index + +- [Motivation](#motivation) +- [How to use it?](#how-to-use-it) +- [Whitelisted functions](#whitelisted-functions) + - [`invite_by_email`](#invite_by_email) + - [`accept_invitation`](#accept_invitation) + - [`get_pending_invitations`](#get_pending_invitations) + - [`cancel_invitation`](#cancel_invitation) +- [Normal flow](#normal-flow) +- [Important points](#important-points) + +## Motivation + +- Until now, there was no way to invite and create a new user based on a sent invitation that can be accepted or rejected by the invitee. +- Due to this, custom Framework applications have to implement a user invitation flow. But most of the rules around this flow are generic enough to let Framework store all of the common logic associated with a typical user invitation flow. +- This will help ensure consistency and prevent code duplication for custom Framework applications that need this type of feature. + +## How to use it? + +Define user invitation hooks in your app's `hooks.py` file. An example is shown below. + +![user invitation hooks example](./user_invitation_hooks_example.png) + +- `only_for` + + Roles that are allowed to invite users to your app. + +- `allowed_roles` + + Roles that are allowed to be invited to your app. + +- `after_accept` + + Dot path of the function to execute after the user accepts the invitation. + + ```python + from frappe.model.document import Document + + def after_accept( + invitation: Document, + user: Document, + user_inserted: bool + ) -> None: + # your business logic here + ``` + +> `after_accept` is optional and should be used only if required. + +At this point, you can start using the whitelisted functions under the `apis` section (`frappe/core/api/user_invitation.py`). For more information, read [whitelisted functions](#whitelisted-functions). + +By default, only `System Manager`s can create a new invitation, view the list of invitations, or view more details associated with a single invitation **using the desk**. To enable users with specific roles to perform the mentioned actions, you might want to provide `create`, `read`, and `write` access to the relevant roles. + +Example - If a user having the `Agent Manager` role should be able to use all of the user invitation features using the desk, these should be enabled: + +- User Invitation doctype + ![user invitation doctype's role permissions manager entry](./user_invitation_doc_role_permissions_manager.png) + +- Role doctype + ![role doctype's role permissions manager entry](./role_doc_role_permissions_manager.png) + +## Whitelisted functions + +There are a few whitelisted functions that can be used to manage invitations. All of the whitelisted functions are in `frappe/core/api/user_invitation.py`. + +### `invite_by_email` + +Invite new emails to your application. + +![invite by email api example](./invite_by_email_api_example.png) + +> The invited email will receive an email with a link to accept the invitation. + +### `accept_invitation` + +Enables invitees to accept the sent invitations. + +> This function should not be used directly. The only reason this function is whitelisted is because the sent invitations contain a link that the invitees use to accept the invitations. + +### `get_pending_invitations` + +Get all of the pending invitations associated with an installed Framework application. + +![get pending invitations api example](./get_pending_invitations_api_example.png) + +### `cancel_invitation` + +Cancels a specific pending invitation associated with an installed Framework application. + +![cancel invitation api example](./cancel_invitation_api_example.png) + +## Normal flow + +1. Invitations are created from the desk or by using the [`invite_by_email`](#invite_by_email) whitelisted function. An email is sent to the invited email with a link to accept the invitation. +2. The app administrator or anyone able to use the desk can cancel invitations. Once an invitation is cancelled, an email is sent to the creator of the invitation. +3. Once the invitation is accepted, a new user is created (if required) with the roles specified in the invitation and is redirected to the specified path. +4. If the invitee doesn't accept the invitation within three days, the invitation is marked as expired by a background job that executes every day. Currently, there is no way to customize the expiration time. + +## Important points: + +- There can't be multiple pending invitations for the same app. +- Once an invitation document is created from Desk, all of the fields are immutable except the `Redirect To Path` field which is mutable only when the invitation status is `Pending`. +- To manually mark an invitation as expired, you can use the `expire` method on the invitation document. +- To manually cancel an invitation, you can use the `cancel_invite` method on the invitation document. diff --git a/frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png new file mode 100644 index 0000000000000000000000000000000000000000..47856f1c5e2b73f89f411735df2af4144f1d4bb8 GIT binary patch literal 288575 zcmeFZbyQs4(msd%TC?u^{yWpFyU*dAv#qN3v!AM6O_-8`6xu7IS1>RzXfo2`DljlF3t?ao7m*Qx zEB7XAi!d;+DlEjrlw`!jD3l!SOf9TUU|^)fz9k{4sm|jCkGAenX1@SY&`gcx;Rwqj zGdk}XP*KCeQT7NcVeth}apS3p3oAPdi+3u&Wt*!oFvP5weF=KE&#h6BeP(NbWx8E@ zz3j~2*0kbMY5>1T;6UTvFu;nm`NgC&k<_gLX z4z!2u($mzO=MUt=*JBO>jfDI=RVd66lzvX!xS7jK8R{5R!&XBd>J5_R-ND5&|XuBEp zaC(C1Er%k}lSd5Su47vy7%_S)XPsQMz=nf=4c-nxURd|mHtw;Cgo9T<%#Px-7H~LW zzpg#K@p+u&sSNjaC@VK&s$@}#9mPj{x6b1+9&Y6no9c82k?tikwfCngAgB=L!~`+H zvSWtdpTSckwNtCNVScJ}FB1Qnm?38jDu_}vj%cWxVMpRaGK1MPb32=HmrCc3$GjYL zwr0eFQ5?Uyaqo9#*hGQpM}wsp%s0O9fk}vcZ*PI3{%#;OGJ8v(U^6TWj{OVg7*byc z$s7#QDjfe8j6X=76mUIX#4BLzMR=kc^ zrahL+-1CYA=yc-0Y4KkysF6pZ`ws^kIGN3 z5P;u#YfssN#S~(-DrS%3jo0>SCD7!Locrq+O0snC1~E+njIuNek=3x@;nIkd3ghMu zDsdD_s__-0xRBC_wTglzjmKZJquB&p2_t12kLz53E?!+AI={GsX?g)B1Ct7TArtZK z|H|4#Kp)8$93|87!w}CnoWB@9CvXV zjv7EK0_K!S&kl>Qx53^dlDL)sdgGOS=^V{r~p`mRhQr75O5&QMrX4@wVGkDIKl ztfZ{1tWyGlY)Qi4w`e+D6(Xg(4=S{paT-57sNY&p6-7G-J11R4e|VD`3;rdusdFaj zC~!-1i**~%CNcjhx%9WHUXf1GV$Nduy;e|`QE``=W>#FeO1|TVt&~CfkN(BU@8rJa zHi_1%Tn6sjOe=GQr?hGXY9&GtYXdBkrZY-5riP~;rakt9_MuawMHnhduZ>?tbmjfb zJ1o%2LbWj9*d?-#LXELwB(qDt9MQAlw}kz=RlP_!H@q$?);CXcJar5vMTr`-N~ zEVVPOGqci1awGDQki6E^^49#cHoP{a#?}%%o^JuQGPATBx1IJW44A2$O3tm;FsmPV zk*@xp!_@Ql<_JTEhx4|8uEwkim#kazvEY*JlCl7}Ral^MS)tX*v;3myPVkQKZs9_4 z4}(|g?#3f+@$BkGeoi0q=thj>?@SW!V*DQ1 zUfz!QZS~tu!+?u(ttep+3bn6 zV5)i64u?GB)D2=^#5)J#!K-DPje2FgB`)e{m$O7|i5 z(QrkkmM_TGqt}lfGaWY`OD#QJRGj|0;NCs;<^*&4UOmnSWJqR^jJ9U5F{h|k&5|)E z*JpF}H}^p+V=6I53ubl*C;gK<`Fp&Ntaj*6ZLS`EIhrw=rJsu3zPQ7MUfz^I`|s3m zgkG_{l14E{CV1(Lu7l_P1{voyb`8xgr*_P+$!xWhzivPhQYHpvka&n%AU}F7>bJnU zkWRx+L+x&|z|`P~E^R7d1U@6Ho^EN+&75EQI|e)ABSmTF?1O^E6vgx@*sUyg1{Wa& zE8pc=uZ@R|^D5IF-Z`AF?{5h9L3@+>hOkX(7!(^)3ghXdt>wCCdTFNLM2%c#HiM7H z_;)-c&TWSaM)ldA&fwBtbiJU(FJ{o5rRc-(PbqTDPqIFbD8(>dD(+i}$hT(|%93;3brq3g0QpMLz@)v;)) zvfmmj?)ZrG2}j+m?9nD_DP@A=WVWx|hIxu!=Og!x*eV8^#Gpi6&cXrz%*UtDN98}p zqn`bje6zmH+qn8~E9u|T-!}O*uMH|*34MEFZ)0^a9(|J}-^^vq6~VazS#RAEF4D5_ z*;}2dC}mtQUkI;nU1_t2Zm|_q?UVM9PLNiejh)q{zv1ILxz~!-bEuxEuPTzQw**i3 z>$d1VG=p8aJ{^2aQuCdsnsYLXg@BHeJ?T4#uPE+o%P z?~j7rASe6Fe61%WQ6%6C%7gB?{&hu2Cc3w&_wgO})7JdldU-?n)(S>uMyyqXEB_ zx6bca`!`y!uh;D@-@(`&z);Y_35(o0t}hNOdv;|FT>HI*dkUk4p1gE|&B7www81(+ zg^|MK(hf4GVzLV}@`gFwE&Nj?=$>PiM2zR*HNQby(5$_qVDZknD)UKh>50ToXZq#6 z(>;Dd4JyrNbH-DE!iJk@$e7B@!@L8|kzo*EiC|s;XRyFW5SI9V&n02$VBr689S#O2 z!~zE4U(YB2$LH5q;PYJOpGWw(U>GFeFKpoBo(1>J?1OM7WeCm0w!n&%I!j0*K1p#C`vH4SGC`47Ctb~a3gpY4oH znA~mbpX-6)cjpC8ZA_dEDco(WZJl`C1wj9Jf)_Y{zRV1w_{Ss8RstXmc_j)lJ4X`= zP9_#67Led83JMB-$Iqs`D&ms=Dh~W505W%Ww&!JLc5`!Ma(mBY=V->v%EQCM%)-XZ z#>NOd!RX{+>ul)GXzN7v&r1HM9&r;VV@C^nXA3)9isyO_jqF^U1wf$ZhW_{U&wiS? zTl~8vTc>{w3m72t^BrbZCKl%Zts5xH|9q8K$->>lT2tJ@29O!hh9D~!2PgkO3j9BA z{kzHkD5~-AqHOG3Z2wvGKW_b>ML#;3IEvZX0F62e{##-HD*T@}|5cEm`FZUBA&Y+s z`X5&TNejN>XZ~NU3BD3)Rn-I(Nn#_!Duwv1Dg`Q+b`DVN@=2NHe3s z>e`F#CDoe+$JqfV9r6T4PpiKk9{HVGZ|AyX;=6M`4?dA^blUMcS!{F~wHrCAxLJ=- zk{qlF-uRml3AXvV@`RE9ufcqP7EZCP*YFOgJ2!G?967&VZa@hZ4Soq)Sx^z}P z@89Y(Xp8}YTFDCUr>xrF>9)8q9LF>)7Uti0`FDM1}E@03!VMtE#GU*Om1wR+C$I1QUr4|Arv?2ct?DyaR%NiOUKVgcVdr?Okb zMG?O5lZ+xV(f2+LiX!GJ6QCSx1Q4SJ4o)as7|jqeA;)Zk!dRp9!vC#mzQ)c-I(_0^ z$X_%zVO9jmNCHE0pPTGJ%idMBcYw+9AlEbqm)fng)vbrqOU6z}Mw1Y7c+$CG6%71U zA%)X)Si3s?W(_HAIUD3WX*nl~onH2V+CUGhN5ch_BrQn+N{D`5YD&7JIm7F$-^2U6 zF;r9P1?!-2{>Nc)gZrIwiMMVC)mraKv!iJFY{KQqxqj!zkeW`mfmiZlyod8+o|?+y zEtUNsadJ!+576s+i^=@?23l4_MUOJ>$mPKuXAf;aGNagMTZf@*WCt9##9*9uZhC8NqRY3QB7x zWI0_A=cLm(9oBm&i0}UDoEXDK;C0#mECih&{V5egb~U4I$DvJKi>~XX+231Ns}Nyp zGn1_L z`pbCkQrRN&+P`Ke>{PJgmfE(BCO@{^@Ae9878@Lb$V*k99)3<5E#PL9VZZkCe1Ck$@Zv0jrTb*T0G^bO~P+uX&7mki8x*XHn!+ zEd=gX%N`0RmukO!B7r0iuqTQ2&_7mkl&+)3ldA zlP8Dob+Z=YWF|}eSE)=5s-I2WeBT>|H1imND-BAd!>X&sl;vv7IN2XOfGK?v`j~&4 zc7M;>h-2yMNAyk`RDedp&El3{ll@l*ID{#j#R*`l*KT&mE1p&B)FtbgN+(K-w^&$o zDZo1W0yCYn_szr3&Oe)qBDh)&z}Oy1;C%fTDT6s7oP-sh>B9O|;y^<*2u_{?FcX|C znnN~=)#I0P@%S=XiN7V}{@SvfrTe_L>AtR3aC`&cO?c5O>_Xgb<)XhvhdLM(fw`jD z7V6>;3)BKf;NtyFxD?$T^6{^kCj`fJO5H9t^?=`CpH zB_cpaQ4FR|KLXQu)k6KRE#Bse&tz6Huha<`$#-5r)T|`m!vC6a{5}KfNZpFipd|pL z%=ksQU;X9O{+9yXzo;VtfGCy+&3n(sSglSO~uJ&tiTf`US-zv}Y%L`YfrTXt|VC>a%Wv^a|XqvMEsDc}y z1qh7$9WEB8-zRCH2IKxa9SWzu0d$_qBxuqm`3z9V3?@!5r&K!3E0IHm7ifWd z3(R8ae*a}<2LS!lI(Ub%mGAM4vZ(ri^wtW2-9H2^N?_DlhS_xgt;B4eLB*!&CgGOo zxhkrPgkc&bIoRA@K;kx;&-dCQno=w~vn0LXsDp&y94tlo# zpr9Ovu>X!V*H{2zs@+>x-L|3zs*37R;Y<={d=ZHUD6$6peD8s6itxY0l^Uk!0%d1P zwkb)^_WlQ$gapyD5(wg1xY)pCz{Lx%qW&*!A|DXbOn!u7a(OIJ6$hN$ybfILYZfgA zIMCSD^S!GfCA0t1;~i^yHn65au|^9$poh5K>i@ri{lALt|1$=r z%#rV&Y>)J*frT#+`1-%k!nm(_HuXz0(fnu9#2l6hM~yofFSXejc(3M+Z8oB~>iWrj z7e{yxeg@;dZ+AJI8+To>;ezfd`dU8wEUd#m@ z>=r6Zw2Q4?Zp3`9)=PU|g<~zIQ?e~>EK2uqTfrgdq}EF=v$X&b93lf>D5tWS$WDvZ zTsakc!a*qFJAgi!3V2=BpfELbka_>1wYa zlXJl#T%nRynC?=|=gqzB!=&>L7awH&j96-(-Ug zn5L$mhz9FOeK|8pYrDHRpZImz%#)*1S*FW8H&L38$C<6q684f8M#AZtpDtDEP6y8u z6ptPZh329Q+O;2-AngFSet0PZfOUV0>K^OtA*aQe8nIAzQ#YgCdbP{mXQ!lz2ixD` zsXDUSZ{Uv7g{`m))14<|>Sna8<^g?Jhmg8zcrmAhpSSPkL|8+Q>g#=9BU-4-2O0ZFL+l>GIlzWrgCbJ4y#e2Z(zIX>OK>m}~cg%|<^+t2sm zK%cXp#A&Yedf7@{&%;D}&{N)H$zvz|D5?G4qy|HD(qW@-y2iKRG{vfnkSD<5qO_vx z)p&9JiqC?c*HNwX;@N&ld2p(k&x&P9sdcVagUNjGSGYRO`Q-xK;E^( zHmAM#_5EaC3=rE%d9K>0hZA31D8>EFf&LRwZG4*%q{gBSFzY#WeehPq#alQKOT4fu zM5EJ+7uI)%GDr-ahZOkHqq5=F@q4kIMi}QjH%x zQeqkr>EV*wO6^hI0+U5Gxy$^|30okR!qLY)uBs?tvXkaC5;LfVr1(bZ$kUv8v~R$< z=0C!iTI7CLOiBm5+EQZ9wO3V6vufPrsN{C=OeEI1{jUpfir&HtP4r&l}Px zrD{?nW!6S9PSCcV3jevh+$Fc}!8bk>8hsqi@HP1^pPHyY4>5Z@uIqm)HApROZ(wX$ zUF6&$dH=d5x1H2ZECg(JEy%`w2Q|FkOey{~L(FWlVBM7PU|kzj+P|nf1dYBkZ4rR3 zC>~{mAT2lno^lKSz2n+|_FUY9XK;k&C?Bh`YG<^m|I`JpTx7!u-y+z>#aw4c52!IO}auX z3Tivw|4Q0|$KYqd&aApDE-ABI@qGffks50s0cPxaHb6@pJw%sTC+@ zl7%USDfL`ej|w&$X+HqbhVLR-Gn}6m_o?ik9c# zki2M;q?=R6&VR7n>XkGK>-UHubdOoabnlhnWticOpHXQl`*qjl5&IQZhsU_ldQaG} zb4@;tcIndYM4lWqD(xlkJWG=q*OBya^DK@cKUS-K+|E|R_HdYrBGtd_)xx_*=im6J zMeKLQpmd;?GI_q=omA%n>|Q5*{x;j3`DozvbO|OFs(kox`_@nEQsw zZ174CW@@X`eSY`VJ!}uDEnN)~>(`=``DDjt9cLW4)^8;p>$*JsM6+!^A>~_Zp{?c| z=f%1iNB&(5$C1ysQL2)2bbmM7KC-DjRG0jcV^TJagWHB>dFBZSa;U}x-bDI2{aGQn&^?nF~25WuE7dZ~=P?ECakD4qnwlIZs5 z{85+)9?G_<1uv&mZ2$#_)%A{Fb--hYkB=m3nkGxzABqy@2p_dSJ&q@I$$SjijSfWt zkmk~yBZnkM1pKEHNtvBPe2CkqlGv_gT!H_zXV>eV+`l;hotG{JJJ~`GYn9@x*AlDn zqm|r7{{yR!)6<)?twpC%Qu&<^7tIV-C_4$?p6p3MYT}8=rM_qJnSmwm+VCA()u`wE zg)DIk*J}DTJ^D%A=E$FJ`oq((O@eoe2oB~X-@t*s$^&-A$;VMzD!FPV1WkT;yl#)l zzxiP&0$qkgLPs*ZjtM2c-3{qKPSAN7YRi4ryki-*@Hh#YK3hujU|_SkbHDJ~r9U$w zUN4$4ora+0Yj5?wkHnVs{N!yH{qGZyUxRo=9yl5+8$OQa<17HOyMq-CCX}=EEMDRJ-kIR6cmPp;cQU`6yRf ze|n_!gZ$KKx*Y`?N&X28vXWSN8l86=miWTa2Aw}^32lI967Am-`?7aXSM*#L{9II-Wti% zw^GUeaa#ncc-XLv1EC#~)SQt;VaYk%>^U2i-o3c$k$CZTIq`vgjg(!Q9$VjXdp|fx zPYn>;Hgq<*9%;o3GnO!-#mpzRjmqvM%)Zq>xjZvYv}1(hNK05;!SVzNM)4gbi$37D z-vl`b;5g)Syb|*HFvDB->{z}Q$*O%d70%6-r;G}CiO(KmG0yYiG%aI}^6zklIVl39 zTKFh-@>5l>=cpbNa*ug?(*>2+cKXTSP!}^j6K8?$Q}ZKd{~;QvRypsj;4I(v<;2kL zT4MFF8xSj5sw&<34S;|QJrl4-Y^&QGHV{tQB;KcS`j+$9B-41#D}Fjw?R5KW0U5Qq zZtiWnwH57kgwwh|?;<@iD`D2DykD4bwQGUqwF=xEOuPo`TIW5s+Vq<2)R$GemCYUJ zSm}RA=RGegaf`S*CGAuEZe720UDoVi>1Dz$v`hfOHNwL9Go zVu3HX(JY}FeRa$ubzAS746ajf{ndtsMcfAU@qajv<^sF)?(mU&+bE(EX;pp@63?oA z4rN`UOg-L?`a*z(jl9)xICaKirqRjlIlP-&Bp*g3be8T{h@-3*NH*Ma~UqVR6@ zPt|`sOL9G|?3dJV1L$s*ImZYg)=+8vG7+OBYG5IUZIX^-*r|QgT+lE1T&b97JM5Qh zn4zVuSCFf%Bz;L$3{c!lGzT=SNjwb$Sg*(1o!mXtjfDz{f9QJ~u10$iFn zVrBJw`Bc2E>vG?R68Y~elquVdcz#;7b?m>rv~LAV(&G^r-`w>P=pZSRk}^vY}D4u9SF`QNZ1O$a99v}ShrtXB8ff= z?06BV{%QqM0G>BlBtxMWd&VCy0$78lfmO-QuI)CT@{c2Q)b|lbo>hIQ?ojT66%=o% zC~&E^dEdJ>dXZZ4vno7x`OjMS5nv#7K)79M0rxcK-1n$_B%d48fZ$`800UyT&OMxp`Uo($``9 z#{hXUC-nb{#yLkJnS+A`nJ1wUat;XfIXQ0slbE- zY&ixjQm=_0GRgwEWS=EEWZsDllB3_d9LzimtGbZM7noNTA$E11qnD!8KXE^4P`(QR zJUWTX*t-d}5);gfs!d4V!v?S4i|Fs}7v+{7BFLh=A3|h^re5X`{wN(ZmT%PC$1Mzs zO;}Y-mt{lH6_=ozfVj-+niXXFc=np6y`SY=XUnJM{z-E2#aZCuYALI)xd`_VS8DkuH1$@1f0xHa_%`+6dSxzY% z#n*GEbh_L5=_G5(9GcTFxaiwhfJVe#=&k60K82PasB2YPoAXQ8S}OgQ7b)ut`te&l zV24!NncI1HtZ>N(aJF-xG35P177G>|tUcdC$$Wt=3iBrB6~tK1*z?7>GW@gF!>S?4 zo&JZN+!(QaGHb{7FF?Jp1>-cys=jb8+e)7pk z`|9ZtdSdhIE2VNxUkzt4I6hj+H^{SJ0M762mJIawHM?AKw|wJH?__yxbl>$TG*uAK zM1nlvZr~xZ{U_9k|0sWE;0N0;)osSke8$?!)3eq3>W8ZZyIkJ18nmI^_fWOo4-)dt ziJvb@8qpg$&AoO5Cdk16$9256NS(-(-!GVyT1_z{vODXoiMUMB@Baa~BiBiwQ?5v) zTV90SM{Cii03X!bEJ3#PH?be%@A{YZ;yJP2lw3~M%^9IkInrNO0}fi1_Gb$dS#5M$ zNEx6qF31(Y=;`Zs_^Iw{qTk2A^PPhDaBk^+Pdssa<`Y7Wy>|x0NbWZXm zXjX2HYhymeGwq6h#EE-!!vb%aw#j)9TNirLdaai*TLa$L%%E1vEj3yUXd^!&+LCE! z-pj+jbJfAn_(jR6SW;S-a(OVztTim>y3rq_xWImWmd_?vETw}VS!CaOrh;}!Cz#lA zy340Jlj-~Daj{O}!WuK~wr&DX5RYz*$FDwN+Y^J6zvCfaTwTjg9AdHG{2%dT;d4y$ za=6;9yAeY-@_O$VQ}kqai%czU?!8qvF%sLUOFnIeC*i$ZLYFSo>?Io9=SZ-zoH~^u zN7birb;piQNqtB3^+dN1pP|=sxkq>XZ457G;vOgu9rm*2=JQK_t1jQ_k4DvO*b!)9 z|8S`jI)=>F-O7x{eJQ0p9Z=0*=$LJY{}h=#Vq2tonv1@>i~eN)#XWU{;f12LCKL}#n{L~(mWATj_} z_T=^?bZ*&BvC4sk+=vhqK1^mlChQ;TnI@YYj)`GJA(An--=9gwDs)}UXqu5W16(uL zPan}XKG37>;l$^fkMFReJ4fU?-4!x`FEzQqnw4V0Z42aB;M%OCgVT^Uzd64}O3NpR zW^rp1N0EIZ_?h3r2{EVAS33Yc zGnO)5Zq)Q0oU6CreGI}`I^WOK+}U&)T<}KtGG&;yYCA<07|zmPXr@CCbg|wJ8|-K& zP7!_1G}I7c-@d=p?3m>TZb;-2%*qK{i_oFesY)6c$5NsJ5c5bJq^<|X^;UfSr zV@S3x{2ERSL*dLjD~gKQI|5My$%kb7M&E14E8fK^uZ)6zGu3_b2H%X6ny9oB zApA)dX1)O(Tgho1DOS9k8K^)#OW^Uaw&k>`jEYJkZBJ(eVF%7x)GgRHe=FD4LlhCm z;X1Cqn8pn5MTyu;85j6i z&_GFT*aCNQYXAD8*(h3(jdQ}9MmWr>Ykr?))D5XV5W~#?Q z7Psi6a{ zI3b)Cw8OD?%Vnj@Px^rOADi~(K5$1Lvu3Q0nXVQaOVnT;r}#@=}XB?e51ATMe;C}T8VEfQSmTS>au=1=_g45a!l{*AMI_2VqP1* z8(qD)E9$yAUex@l^2!~wkz+&BsHzD*O?ESLRXTsPy&V_TyR2Eik!zLXI*%7a@rQDxB z>7T+q8rI65YM9$?8+LuYR<*8DVc##CQXefGd(nmu_FYq_ma_+$m3uUQQ%8f|dl9Rr zAhHipD-GpLy3VkEm;Q{8h?h+C*2+NW;3t8&R862*5Ugd+`&wM9QaBF8`4J%OZ_a|j zie)#BZG$|HAep>2<^=m<2vd_3Nb>TIT8`^;@Xz%}rnKb_bhw|YVuS_<40Fra`*ffe zaIPaQpY`)>+=_(;!N(wj9K>||;z>$44Tf%68iqaAI|kX@OsS|l!w&ntu=x{^Ab1<0 zx(3Jc*v~X5(Ky4Af-lBnRlkD`!a}3CoUwj3p4KtL*Jq0n?!d#(uux(n_4#-mR!Zgm zLVN~jjgd^JCF|;8kRSS1hcKI+)5ec(x@sUxhAkW!hcWbF|qB%XDS1A%@(Y}P3rzPtt zI()GwrGVsSczOsvTujD(VLuuM_hcdqFRpEWa3F|7S9lfqE2;+Pw5sUZ^R#MX=WtYz7elf~@TAQQ2W zJS^5@y&B_eAozOLjYZDIY_@MNaLun+U*s}%J$eqX%v*cKj>7Y__x>;U{q<2Qgf_p5 zfjY(cmq7cUH4r@pTWIELdO11uIPYESE?-S42zp3vDhVOlAYOCqBagn~paun;rsKoxbF@dx&@Q*1y69|#`nzZQo#&%%lZozTLedHIN_fXsVVN=3L@1HzN6?j@xxtZ?u{z!gq=4K9YG-&yRW}kj^ zUypN>>n%3NkOv}7am~t!CL(=LYUKOQAghprAl}4_xZr<+I%$90eku58y6GUb@&rjHpU;>13v59<-|=d*L{sV$h(yqqeol-2U> z*hYb{HZ!PrB69F;pFCMrNuxPH8llX3o=orgHm*hwgZr(>yQK&9837zkl_|mVBf^?k zcE4CX~q0W&-Y9}vnut(qxqiiU`V3C)zUx7@+c20mLITF!j9%&qAWS_k|tgABYrb|Bs zYZzu6G18vyy*U{dsP^W9jk{SV5OZZDU6^5KaW3SDFffX^-^2j7fL9bYZH)zk6dlzZ zsy!()vIUyI6J{{!xmBtA)9bL)S0jMRO{HSck#6pZiWt(zo6lyvN{Wcuae>KF(M!VJ2vy=8N@3(eIMlJ(q_cu;v{y$Vw^oI3=DL^d{|b#}=>n z=Gr(q)}4c5II#jn8rc*Y0wZ^mSa(s#O~k#Ukl0T=E)c&1BUa;!Y&VVoW)Lxn{U#rK z4+lvEXV_6O;VcMF4)lI(`%|?Rg5@Sv38PKvtl2I?)On$+f?h#k|Dv4*E#@na<}jSs zJDishR(RPA(QakNc6^#ryvuJuTIdpW8MJ8+$P%n&A`ptf{&LD5-kQM<9YlQrZb-jK8*fr)A*5j8X z2N=FLVi&1b<~!+bOyx0niI1m7ff0w8zp#~Q58c-P1aZJ2-HCFam%N;^KdZ*@_b4lM zM-YilPfCg)pfkI}2^FTp;O=L9?J%Y{dDS_aJVrL5u$q=nEcJ-^IwQ%bXlDM4P*B@zH z0lw@ZS78xhW39!*x8R9jS@ZJZJI#kZCv6T(^k9L&35hiue?h~3d(u*m*PIF+8Y z(68&G+$7aS+q10DekfPl$cgHrkok}R9NsJ{7&XvD=Y0*$qEOdv2M{cld7b_pN|F;_ zgO7FG20h-T!H1aV1l>J^d4HszeBOZ$?;EJQh}xy1(Zo8U-J5~b(N6c~EMVW9EsBV% zWaze{a-)O!$-Ro+y#BD>SM~F;t$f2racR@tkX@jR_Dq~FfU?Q#zCX&REn?9kH|%H1 zXYs*xP1udLlUVRAsUEWoxVmL@<42H&6_A9mYBlAy%EKF3@vEBR0c#Ef{2(6vz^cX= z=c!RRs*S*iz7KD=+P%jmPU8EZOVC(&o!<^!&lg*r_ypL*OY5C3;j@tl_B9?!zS%$J z$fkw@>&f9hAyOJAA#KckoS~524YnD{_E27&D}niF2Wnq*+8oAF z5lW%HcSUA@6!($7{txIv2mdqIUn}u>%Zar095h~&=&+udkQ1~dVE#kk4#LH`8S(OT zy3vO=Pd>0NHRFCzkU(&G`w%klN!Lh$uYy|ZRlyW>90bVOFs71JSGXp`FO16M9&Q?5 zuDtkZa`l^UWgglsU7cIn_~ETar|1&V*6B|^!D`>cd@Qt5W0_TFRT=SmAQfyOP-gP* zl&ig#OHO(A7x6)I{_9k&i798J{^WdQONE@fooJy06EifrmqW6tDz;L30zG6NwWo8g zpJcPSOA`VgZpojjz4Qv1iL_@GhYF9MlejFms^Pacr$303|vD47=I_c=V3YmOVeQY&2Iaa=?19nlE zn2Ci9t8^W@OI)9P1?j{K-}q?}+N3_I#7IZMN+T{1yzVDRu-tdX6~g;9L#GrV;Vt{^ zD@H&sHw+6RtAl6{W6bXF>w#(;?z!JSW|?4D_CLoKftiMnaR?ypc8B6sXEOtSl2Fvi zwNh)u)FOS^2=M@JL;D|W z4Jn_w-*VfH^ap)x(~Y$TQzX`4*_`5e$DK#ke|6Y5;KtQa!(^m;5OeP&hk{Jc>YKo= zzU!|El(36BLqu-br4sBicj94fNYp=^iwcUJ`k%yXAoWw2gd0-ZX2YZN)aMKa`+0(tSUNJUO!)(#sK0SU5Y3c7fv@j_GWD)x;4eaJFr_;D zk(H4J*AZ3IOt=f^+#uiGsj<(tRFzbgvqQTksn#*N-hztP)bbgY!W;Cus-pPpdC(_& zlxQ86RmufCLw5WWm#5md6173u3|rCf(PJ@f&`hGM5kgRvVK7^o;JH6^=Ym!%<^h3r zeGFT1uxxA~a7g0|#>%5`?JDe_+OZ5aM=T(?))pt3{`rrMo|;;{Oc@2G9hIZBF5aLH zKPv<&V{`7AMZyS;#5#~3bD_`_3PQAuf<1ykjkcfw;Surm&jw2CoQHhdv8xHZe#UZD zL4K~|TAf*$>;69(U!7Obb2Dga8#9EC1CG6=I{e1ovuAd_YO_w7G7H2I)#$O;;P4~r zKXqkfoY2zKV`^J%un^UqF=U~tqPOAN@yFq_HB@^IdFl4&&UNh+bIH2(awcq#LPd<- zAM>jq`6a7!SICyms6hEI-u<2L7h$3EP&woYhY?!B9FD*d0vlZo{qW*=L&DGBJme~$ z@l<8L^7s6k+K@FtO;vACcAn#{#dF<5oa52jpwJ*eq=%!5C?H}*eDwm$n5FP|k}&wT z@Y>6r6adsUUXbIdzskK}@2Nl&{fft1&><8XYlupc49Evjeo8tLMS0;T!;AzVXbW5| z2%>nVYqgM}hM$_t7^X;m6p4l5s4sP+AoSHsyfkro<=W+kM-P^i`1OSQT_o6^S+Zq- z1LtaTenuaCqn82UP-dHXX)I)|k>YR&pr|S<3@7K@svo_?tJpI(hoSD?Qq)_}Kh0!L zenb|3KJ=Xn&(*m@)=oWSOo8C`^+)AEoHTimHvqI;owFNIb-(6&dN`h zj5fjl%nH|veuhMsw-P+f4>3dYj^G{X7mr)@@rQXBeRJ`4V6&Lk$5Q!USeiCPf=h>O zIO-L`z^~)mxCa#)3=8E`{C^g9;-$8iEZv8gl+Nm)HDTp6q~oMEu`(%91)cQCvx3T6 z@5kpH{X_dhCoUu8@#&a1hO(~P>fxD+y)|uezj@B#wre&SHQV(mREja(jxCe$QqcvK zi|e=mNdZ5d3J6o+^_l!q;(uKehEK_s3G(fy+=FTv)iYVJoac(x-(>n|57wCj4HMa`fs4A1}L$X5+ms@Xo3Jw`JQSf(OaYhBH(3 zxgM2YUHo;ADG`ub-=(&ez4LO^YJCzODjR(Q{K{KL!4U7WsMbIG_Fi{EiidmnLX13H zRv45(MvHXKkuPl%yj_|RDk|%jJ{a3X)|=gR_A3!3T;AxaD;xO(trB6I(%PBg@BVC` z@gyla2~(*#2dH?@+0U(s(K!K!7y|qls#Saq$zomS%`o5~t$b&~tdv&$oles7B6^oW zo>~%eoFz?Uer>!%iiwdfj2a$i%3-|9GoZW)Wu=Rl%!Ktubn13`8&`_ac=dSw|dOHK(?zD>&stu-}%_6(J%ZwpkY{OfS)~2*})MZ>%u!WmI)3(`6M%9 zUnlh|kbqfU__ZQVKi(`doKBPg?N^cLa?i5bIW9q%(RBt@=2Jqabm;s6DA zQ{r<86#&~@Yxi&QRpo6F*6J` zV>LAtKa1JX0xYowL+mq6jsvykGmr`YkXzw)ZlcW_s`_aK>uN87jM?5^QBEFnBCh3f zirl^tyt){qBkqEliyPw7km02l>%yM#^oI*e9V?n@EQ=glp^?lsL^}T9i>FMg+zJAH zu|iy8l1MF^-CNGhmqW$sKkejg7;a_Q%u=aey{aDtk~{UnKSUY?c%1?%Xk*d@B>C|d zt)Y+BbNG?hQE}1pQzmOJBqu9@2NQu(BwVk1`xdY$l>coZi!}^TE3ZJ zZ{5U($fNt-w|YIo;;)JP?e5qJm~(sj19zEk)MjL2$GQ(_itG}vJ?{UJ2S-2!{G%K{ zPTpaHkoDd-Jr7Kl3JaVkXG&S0Z1_8RZ!e+&<{|8$`llmafiflL#{1v6G4V(C%rPtKKnAqsxGKD{&=Q}yIC$MRmqyFb@eXAXV7 zSkdFOATQMV$qmAnx5pZvnHd`HvJ4xMR8M~S@OfcX(eBfSfn*?RdVH7dYW8+Qdl55M zz+4O+=YReefc;r`oyN)hPzjKqWS&Z?lG zOV>N8Ten)~hr1Eu&0e(5`5EZqq0mrf=+xuQfs1vtt?uB^y1t|@U)$@CM`F#VBlXt1 z72a5j(qeG6+yiw_#8M=&=>*h9Fqk{u-hkf~Cym~6`@0Sqa}E#5UAqRLcqQBRZ;Fv~ zNEqbDR?)RddLBa5uO{Jh`qf9*D1q(Gpl3qVp+j(^7wa+LfvISq95SPJCj7o?<3Nx9J}lnRtv{ zb_SL9`hMHsr6_VSgL zJ5#*Z9%q;ct(6)8dAJw^T(^2dJY(|_Z}QmSK4!@o;d=J@iX@Uey)7@%?^N`bRm9l$ zmq^n34L>^R)TrRzL(~7A^{u*D{qkVG!$*PCMFw3yo0;?L6U4Xjt&%KCkg6?L)##y=*HBusV{KX0bpDcn#)whAC&2bq@MqN!{kB!_6hTo$=VB z^}jYl4JowW$ck0so7X^Gd_mu9y-35m9y!2*pjEc-uxZ)wX2h>TZ`Lc!_0kTj<8L-k zk{seMNxRI6=0)c#{I-te5tm4`jV-tJQ*5 z$2j~6saOU~R`|=f)J!8iur;hibnf(BoC2Z(ZAoh}nMEkOb%%&oo1g5qn;79$zcbKQ z=5LTcGJkfldz~zJ{d(3Dc4;b@9QfXh(9oF^VY8X!a6Ob<^63TNeAvEauUa*oh7WyY zF`-$?i4jsAJu4)T1o^VLAodu28AY47o8mZpVm3^W0`XNS1{Z(`>+Du&WjVu5s%nE5 zHt>s=ncwt!Cq{$>s#0`Lejo-dg<(@=Rq3A57B=a7Er)84jGaG4^)+zX`9~V%f)-E3 zyPHtV4fL$U6)LTXUMl?l{;G{^LeT%#TSkGKyst6^iak!-*P)bYB~*x$WNtp0GkPc` zY$H54m+~G{R=~xE&`Efeyv$k^+~X#v6sApuMxdIaZxO-Fik-_x`xq4esEkpQF7U8~ zb+wn)j^3i{B7Fr2PrHmr%7RB~wLG~7I2cS|R^=suk)jlTzo5k;-`tk4bj&Z~(&5;O*5o~ zs*>O2zDhhw-OMzsL7G#OW%j>sE=GgG9RE_m9kg4yFcQJljg4*ZN}s^ZL0E1*l)b%ZCJ9| zSAA9u_r?pNxFI$5Ouz8{8MJKSjiXdP>q#$jr(}K2ea;M_#UkHbTAq{wg<(~Mt1TwP zL2P7szuBP%#qQ+PmJ2+cB$u$uxMt#{wV3*@mr3sd(>uZSwbA z=%E=ktwpEjbGdP?_$Wcjf@M$ zd(zb`IccWcy|wLs)O$d0Vp4gEaa9@QC2kqC>GyoRJ_o*~t|R#DB7I4Ig8lZ{7yNO% z!Xa*71>e)$sT-RU@1b_CUo9g6#rlMIF2DAo^i+?%WtFP<4(h@btzCjiwdQaV3g#ZB za}leZl2n)-dsYG}vV)(vtBhE(E4z=p5xiyyB|(4Oz40y4__0b5(0#LR*j?RksBJXf;;{TFMVGIk6(yC+8r zUaK)yz2e9-s!d%#1mDFskEIbj%;R_lzK=ud)tWhBwjnIYtJ4|4?mwJ5%F^Zb%BlHK zUMwoL?fTUI)0rcnqEZtlc`M}ZOKZvvLD9}X2y;zaC&95<8pXi(#9=5k8udCx#GpU)rd6TIUyV5*y*k;(OG2JV zeBr1RHX6w+I)!5A-T&cuy%`iS_UNmwYxRZ4tpRkAj*liSHEPFCGK5rhKt4T^IFBV+ z?`%);3eYa0Wzw#zEqTZ3rw`Cab`efCvM*2F8VDO1)9p@8xc~_1&=2<}vJWiFDy15N z%=#VR(M2gX%LgRn3SHqh3JrzN>kNt6Ve~S5ePx>;{0;`6ENR6CRVX5(wJ4MxxhrLR zquO~R#$j&$8^T4+?xm)|q`Bnq1;gDCJoWHGQ|$ABox~Ae$NXKSx`uY)W+vy|Xku>K zLFK%CAy$_T3v)iM5Jg$s?_|p%ESa`#fJe)MRwY1jSA-)vrlwO}M2Bv|GY<>EgP^(| zggcBu8RTzW_yt%!-JSDG7ZZAdwljMcn{nl)O#%Z2@sYz3O%%L1KD;G?T~96dk0-~; zK*%^ehNwWwH-)!(xe)BZq}xa39)JRlEbZil%T@vaLoQMVex@yFI=rb4=)JC~J43A* zA2v*Jr?7!yPLwlhS{g0tDO`Mul2YB=lF!a$k=VxMCHRcF?Ju4^)n5xhaV@({mnHQO z>>Wk%^LjCd*+=#m!G_6I;bJ;?#i3el(w~J#s+&K^E`9P9p1-xo&|D>nY!$H-YNjWvcYXpKyb1l4RT2!71NziYj(#rIB|xVFIc4Z;4Yn(L zGcw5_zh#y3J+`cPO%*Mz+EBm3JB!L^ZJP{4X0LV5t`?DhCXma~(=Y`3e zc=#3DNflc_jSjuK43pcME>)3w8@x78(4Pxv6sRtf%L$ux_%T6+VA+&}sOFK>Z|;k> z`wStV&0Yx$PF3dFfo8Xvr&cqNlp5ZKMS+~Sor)&C zW(_lLutpxPyc)&;H@U+wZ%d2ADJVGoF=U? za*v*bCs>;@;UIW4<7yc3d*V0mJ0fvVuqZ_Me9|cbD8<=Sa`d>2s5Dzor;P?CL_Utt zW71)UYUhP%2hye;JwM6k>##!a@wg@wB+0aTIh!g{}cz+;8fEDStut`iu+tF=W66OW_qne5R5%$6;QlfwxaS> zzI1DvLdnQtfBW$E87=M))o)@Hg+*5V-wO3XGb$W2HezwAEDE(e3k>4LQiK%a_7a=pTU^m9Y~n$ue>W6Vu7u`8o3k|9Cq&n_3RxA|4JUuN*kpMe_Ae&*<$& zke9_`STrd=tClS;1poKF#!0RsDHw^r!m`jtzSa!lGvC}?8o~AUm)x!p1Z7O?S(h!4 zGbqq>(AlBK`sH%GX|cwb{0I*{(7&Z1JTdadSpFdM^st-YCfR4tTW)&n&4z{9mea?; z=#u2rt6Dt(g?TgIY_*8%(5GQ!Z}}Yv$W}&bIUC!qR2x~UR4Ck!EZ7CF80XOzffhuw z*XH6SMfYIx#2)|pyXixQvX)^(B1)b(siC5PBBysaG3bfJ9WQeUtWM=hlfXcjyZPaR z&^R)7LQqb}`|LTb6_Ap_zQNy0#axqWse-0>pRQ?HdXq$fH@?&o^_7}%d1v*4(Y6y_ zogg~wM`18p+h_3%NWmI=mX#yJ3sKv^u<+3*O+jz9>yuf5XC5?tY9w_^d^i=a4p zB1!e>ecIFlaqX~PF6kWk{2riltT=<6))MY~_5CCYXCLn}IRO9uBqyo$zl9N`((m;X zS}o{SW)}-sc;nzM%aJUcbH1CrOLd--nV%Q*{lD*d98)C^rP%i9r2uD+7p`oEIWRvk z>qJv51RedGi+b}RUenE7<;{nP>`jWQ25ySdKfb;V;18T)UJ=EnG%rNAoTx}AT20S( z3d&WAo`wnS3Z?|U)@aowF@bI?lm}`64$l*fIZ5f0%h$ab!eZ5tP^4N@DIZeU-GO(NCVmSl-X4(J zA!FBJ>ou#n0#e$^44>r*kJZd=8ZsqWq&j(Kn?_Vsm989)r&5L5=I!Z{kA`tHb<%k% zp%3DvpdP`7SuClsqI(T}=E~yjK)x|EM-l7gZ|+R=P~)SF;C!-31o9^^@5e_Rosi=v z;WhsE4u8An*%p=i>@X9I1oG+53;r^kcX1&8PiK!+ko(c#(g}LUi;9`|sh#4MSX(@7 zxYgF2_pa06p83m%i+V^X65rH%*ZL(0fhr03_j39j*r08{^*Wbjb7kzCG?Pk;Rf3xX z{3ZG0wRjdO@qWrNnDLMJTC;H;uImP=Av(`58pI$D7OZ6Ne7-LIjJEWmPVt~?8STOm zmKC3p^{bQSYa8N{AK`Sd;e}Txz{U(Ph-L8WLfsRwheZU>6f`4sqo$=qL#t567*=@p zpr0@CYs>;JttKU23m1P97)6ydMh*`sHJ}VOT!j5OTgnY?-b}1lpJLNI2Ai*rRhA~1 zjb8y6M)PJ5_c)5(q*LK_hjg!9E%mY)aeSD4I1EF^OQn`OT3}HQH1;+maNhT;=YAIH z^B9l5%;dvsJF&**=A*|?!o9*L$eARx7*ogb_?9Qu!lPOg;{h?w7bP*gQPy}Y4WM5*8ENgei(NM?(~6_4IG;`r5X)u({rrymt^^mMM3 z!hS*!fzhyh4)n=aDv2JsK8H`@nDL+IDPV8h_C|>->FxS_KNcGv5F!!`wxk6iXGRIU=`a}wi4$;#_p9@y}k$ed*KqS(-Md2Me_-Ep5!Y8hfJ^m@EIV%ixVvjj5H zivG~=_f5Z~0FdA#dehlTDqNvtRd=q=23KlBR5kCvzaxVnup8>=Z&OW8lTWNZqi$3O z*Z+b5vIjb*EvFKKh!3gS;U1YSuAyEKHzj&c;KX_zlF<6Aey88#x6=$)<<<4B)2soJ zq|t5W36SH^v(_wD-`-p+XiX6R>Tyov&CJL48+mNQ9&EUa#80I^#2UB=>-ip170#^n z#BP&6_XI?Pxv9;Zp$rc!NYaZeJTs@zG77g&wDx|~H78h!7Y=c1+J!OW4gx(^dB-u> zrPWx3k6l+{Pn@aSOkol@m}s#H-4sme8taPmJhW}E%-sMPKX5L^Kaz=*3O zu|J@teXB%*EVB17hP?NVP74x$9JM?>4t Vq(u8{<>>f=Qq1!Wr4)m~l7R->UCP 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