From c110720d536e9fbfcaaa9495fa06f285b9d8b4c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Busso?= <90727999+agustinbusso@users.noreply.github.com> Date: Tue, 30 Sep 2025 12:05:12 -0300 Subject: [PATCH] Fix core missing translations --- .../Http/Controllers/RequestController.php | 2 +- .../CustomHomeFilter.vue | 2 +- .../screens/components/ScreenTypeDropdown.vue | 12 +- .../cases/casesMain/CasesMain.vue | 9 +- .../cases/casesMain/components/CaseFilter.vue | 2 +- resources/lang/en.json | 106 +++++++++++++++++- resources/views/shared/breadcrumbs.blade.php | 4 +- 7 files changed, 122 insertions(+), 15 deletions(-) diff --git a/ProcessMaker/Http/Controllers/RequestController.php b/ProcessMaker/Http/Controllers/RequestController.php index 37723a2918..ec91d7f21b 100644 --- a/ProcessMaker/Http/Controllers/RequestController.php +++ b/ProcessMaker/Http/Controllers/RequestController.php @@ -52,7 +52,7 @@ public function index($type = null) $this->authorize('view-all_requests'); } - $title = 'My Request'; + $title = 'My Requests'; $types = ['all'=>'All Requests', 'in_progress'=>'Requests In Progress', 'completed'=>'Completed Requests']; diff --git a/resources/js/processes-catalogue/components/home/CustomHomeTableSection/CustomHomeFilter.vue b/resources/js/processes-catalogue/components/home/CustomHomeTableSection/CustomHomeFilter.vue index 2c54c083a6..bfd9e68a30 100644 --- a/resources/js/processes-catalogue/components/home/CustomHomeTableSection/CustomHomeFilter.vue +++ b/resources/js/processes-catalogue/components/home/CustomHomeTableSection/CustomHomeFilter.vue @@ -3,7 +3,7 @@
diff --git a/resources/js/processes/screens/components/ScreenTypeDropdown.vue b/resources/js/processes/screens/components/ScreenTypeDropdown.vue index 2b92f029a7..6ef590d85b 100644 --- a/resources/js/processes/screens/components/ScreenTypeDropdown.vue +++ b/resources/js/processes/screens/components/ScreenTypeDropdown.vue @@ -46,9 +46,9 @@ export default { isDisabled: false, selectedType: { type: "FORM", - typeHuman: "Form", + typeHuman: this.$t("Form"), icon: "fas fa-file", - description: "Design interactive and complex multi-page forms.", + description: this.$t("Design interactive and complex multi-page forms."), }, }; }, @@ -89,25 +89,25 @@ export default { switch (screenType) { case "FORM": type = "FORM"; - typeHuman = "Form"; + typeHuman = this.$t("Form"); icon = "fas fa-file"; description = this.$t("Design interactive and complex multi-page forms."); break; case "EMAIL": type = "EMAIL"; - typeHuman = "E-mail"; + typeHuman = this.$t("E-mail"); icon = "fas fa-envelope"; description = this.$t("Compose the email body for email messages."); break; case "DISPLAY": type = "DISPLAY"; - typeHuman = "Display"; + typeHuman = this.$t("Display"); icon = "fas fa-desktop"; description = this.$t("Display information or allow Request participants to download files."); break; case "CONVERSATIONAL": type = "CONVERSATIONAL"; - typeHuman = "Conversational"; + typeHuman = this.$t("Conversational"); icon = "fas fa-comment"; description = this.$t("Design functional rule-based modern chat style experiences."); break; diff --git a/resources/jscomposition/cases/casesMain/CasesMain.vue b/resources/jscomposition/cases/casesMain/CasesMain.vue index bed7b2339b..5fd1b7fcc9 100644 --- a/resources/jscomposition/cases/casesMain/CasesMain.vue +++ b/resources/jscomposition/cases/casesMain/CasesMain.vue @@ -5,12 +5,14 @@
+ tw-flex-col tw-overflow-hidden tw-grow tw-shadow-md" + > + @change="onChangeCounter" + />
@@ -20,6 +22,7 @@ import { ref, onMounted, watch, onUnmounted, } from "vue"; import { useRouter, useRoute } from "vue-router/composables"; +import { t } from "i18next"; import AppCounters from "./components/AppCounters.vue"; import { formatCounters } from "./utils/counters"; import { getCounters } from "./api"; @@ -55,7 +58,7 @@ const updateBreadcrum = () => { const index = indexCounter.value ?? 0; pages.value = [ configHomeBreadcrum(), - { name: "Cases", href: "/cases", current: false }, + { name: t("Cases"), href: "/cases", current: false }, ]; pages.value.push({ name: countersData.value[index].header, current: true }); diff --git a/resources/jscomposition/cases/casesMain/components/CaseFilter.vue b/resources/jscomposition/cases/casesMain/components/CaseFilter.vue index 59ef70b1c4..6f8a0af3a0 100644 --- a/resources/jscomposition/cases/casesMain/components/CaseFilter.vue +++ b/resources/jscomposition/cases/casesMain/components/CaseFilter.vue @@ -3,7 +3,7 @@
diff --git a/resources/lang/en.json b/resources/lang/en.json index 2d4af364e2..db150420d1 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -91,6 +91,7 @@ "Add special buttons that link between subpages within this Form ": "Add special buttons that link between subpages within this Form ", "Add special buttons that link between subpages within this Form": "Add special buttons that link between subpages within this Form", "Add to a Project": "Add to a Project", + "Add to Bundle": "Add to Bundle", "Add to clipboard": "Add to clipboard", "Add to My Bookmarks": "Add to My Bookmarks", "Add to Project": "Add to Project", @@ -115,6 +116,10 @@ "AI Assistant": "AI Assistant", "AI Generated": "AI Generated", "AI Suggestion": "AI Suggestion", + "AI will clean and define the portion of code you have selected.": "AI will clean and define the portion of code you have selected.", + "AI will document all your code.": "AI will document all your code.", + "AI will generate an explanation of the portion of code you have selected.": "AI will generate an explanation of the portion of code you have selected.", + "An AI generated scripts will be inserted as part of your code.": "An AI generated scripts will be inserted as part of your code.", "Align Bottom": "Align Bottom", "Align Left": "Align Left", "Align Right": "Align Right", @@ -133,6 +138,7 @@ "All Requests": "All Requests", "All rights reserved.": "All rights reserved.", "All Rights Reserved": "All Rights Reserved", + "All Saved Searches": "All Saved Searches", "All Templates": "All Templates", "All the configurations of the screen will be exported.": "All the configurations of the screen will be exported.", "All your requests will be shown here": "All your requests will be shown here", @@ -160,7 +166,11 @@ "An error ocurred, please check the PI process file and try again.": "An error ocurred, please check the PI process file and try again.", "An existing user has been found with the email {{ email }} would you like to save and reactivate their account?": "An existing user has been found with the email {{ email }} would you like to save and reactivate their account?", "An existing user has been found with the email {{ username }} would you like to save and reactivate their account?": "An existing user has been found with the username {{ username }} would you like to save and reactivate their account?", + "Analytics Management": "Analytics Management", + "Analytics": "Analytics", + "Auth": "Auth", "Analytics Chart": "Analytics Chart", + "Analytics Reporting": "Analytics Reporting", "and click on +Process to get started.": "and click on +Process to get started.", "Anonymous Web Link Copied": "Anonymous Web Link Copied", "Another Process": "Another Process", @@ -174,6 +184,7 @@ "Apply to Future tasks": "Apply to Future tasks", "Apply": "Apply", "Archive Processes": "Archive Processes", + "Archive PM Blocks": "Archive PM Blocks", "Archive": "Archive", "Archived Processes": "Archived Processes", "Are you ready to begin?": "Are you ready to begin?", @@ -341,6 +352,7 @@ "Case title": "Case title", "Case Title": "Case Title", "Case": "Case", + "Cases and Requests": "Cases and Requests", "Cases Started": "Cases Started", "Cases": "Cases", "Catch Events": "Catch Events", @@ -349,6 +361,7 @@ "Category Name": "Category Name", "Category_name": "Category Name", "Category": "Category", + "CATEGORY": "CATEGORY", "CategoryCreated": "Category Created", "CategoryDeleted": "Category Deleted", "CategoryUpdated": "Category Updated", @@ -382,6 +395,8 @@ "City": "City", "Claim Task": "Claim Task", "Claim the Task to continue.": "Claim the Task to continue.", + "Clean": "Clean", + "Cleaning": "Cleaning", "Clear All Fields In This Form": "Clear All Fields In This Form", "Clear Color Selection": "Clear Color Selection", "Clear Draft": "Clear Draft", @@ -432,6 +447,7 @@ "Completed": "Completed", "COMPLETED": "Completed", "completed": "completed", + "Compose the email body for email messages.": "Compose the email body for email messages.", "Conceal": "Conceal", "Condition": "Condition", "Conditional Start Event": "Conditional Start Event", @@ -467,6 +483,7 @@ "Control Not Found": "Control Not Found", "Controls": "Controls", "Converging": "Converging", + "Conversational": "Conversational", "Copied": "Copied", "Copy and paste this redirect url to the RPA application.": "Copy and paste this redirect url to the RPA application.", "Copy Bundle Assets": "Copy Bundle Assets", @@ -495,6 +512,7 @@ "Create a Project": "Create a Project", "Create An Auth-Client": "Create An Auth-Client", "Create an Inbox Rule Now": "Create an Inbox Rule Now", + "Create Analytics": "Create Analytics", "Create Auth Clients": "Create Auth Clients", "Create AuthClients": "Create Auth-Clients", "Create Bundle": "Create Bundle", @@ -505,13 +523,21 @@ "Create Environment Variable": "Create Environment Variable", "Create Environment Variables": "Create Environment Variables", "Create Files": "Create Files", + "Create Flow Genies": "Create Flow Genies", + "Create Flow Genie Categories": "Create Flow Genie Categories", "Create Group": "Create Group", "Create Groups": "Create Groups", + "Create Languages": "Create Languages", "Create List Table": "Create List Table", "Create New Bundle": "Create New Bundle", "Create new copies of bundle assets.": "Create new copies of bundle assets.", "Create new DevLink": "Create new DevLink", "Create Notifications": "Create Notifications", + "Create PM Block Categories": "Create PM Block Categories", + "Create PM Blocks": "Create PM Blocks", + "Create Project Categories": "Create Project Categories", + "Create Projects": "Create Projects", + "Create Process Templates": "Create Process Templates", "Create Process Categories": "Create Process Categories", "Create Process Category": "Create Process Category", "Create Process": "Create Process", @@ -524,6 +550,7 @@ "Create Script Categories": "Create Script Categories", "Create Script": "Create Script", "Create Scripts": "Create Scripts", + "Create Security Logs": "Create Security Logs", "Create Signals": "Create Signals", "Create Task Assignments": "Create Task Assignments", "Create Template": "Create Template", @@ -536,6 +563,7 @@ "Created Date": "Created Date", "Created_at": "Created At", "Created": "Created", + "CREATED": "CREATED", "CreatedGroup": "Created Group", "Creation Date": "Creation Date", "CSS Selector Name": "CSS Selector Name", @@ -617,6 +645,8 @@ "Define the filtering criteria": "Define the filtering criteria", "Defines the name identifier format supported by the identity provider.": "Defines the name identifier format supported by the identity provider.", "Delay": "Delay", + "Delegation": "Delegation", + "Delete Analytics": "Delete Analytics", "Delete Auth Clients": "Delete Auth Clients", "Delete Auth-Clients": "Delete Auth-Clients", "Delete Categories": "Delete Categories", @@ -625,11 +655,18 @@ "Delete Confirmation": "Delete Confirmation", "Delete Control": "Delete Control", "Delete Environment Variables": "Delete Environment Variables", + "Delete Flow Genie Categories": "Delete Flow Genie Categories", + "Delete Flow Genies": "Delete Flow Genies", "Delete Files": "Delete Files", "Delete Groups": "Delete Groups", + "Delete Languages": "Delete Languages", "Delete Notifications": "Delete Notifications", "Delete Page": "Delete Page", + "Delete PM Block Categories": "Delete PM Block Categories", "Delete Process Categories": "Delete Process Categories", + "Delete Process Templates": "Delete Process Templates", + "Delete Project Categories": "Delete Project Categories", + "Delete Projects": "Delete Projects", "Delete Record": "Delete Record", "Delete Screen Categories": "Delete Screen Categories", "Delete Screens": "Delete Screens", @@ -641,6 +678,7 @@ "Delete this embed media?": "Delete this embed media?", "Delete Token": "Delete Token", "Delete Translations": "Delete Translations", + "Delete User": "Delete User", "Delete Users": "Delete Users", "Delete Version History": "Delete Version History", "Delete Vocabularies": "Delete Vocabularies", @@ -654,6 +692,8 @@ "Describe your process. Our AI will build the model for you. Use it immediately or tweak it as needed.": "Describe your process. Our AI will build the model for you. Use it immediately or tweak it as needed.", "Description": "Description", "Design Screen": "Design Screen", + "Design functional rule-based modern chat style experiences.": "Design functional rule-based modern chat style experiences.", + "Design interactive and complex multi-page forms.": "Design interactive and complex multi-page forms.", "Design": "Design", "Designer": "Designer", "Destination Screen": "Destination Screen", @@ -661,6 +701,7 @@ "Details": "Details", "Determine the URL where the request will end": "Determine the URL where the request will end", "Device restriction": "Device restriction", + "DevLink": "DevLink", "Direction": "Direction", "Directs Task assignee to the next assigned Task": "Directs Task assignee to the next assigned Task", "Disabled": "Disabled", @@ -671,6 +712,7 @@ "Display contents of docker file that will be prepended to your customizations below.": "Display contents of docker file that will be prepended to your customizations below.", "Display Next Assigned Task to Task Assignee": "Display Next Assigned Task to Task Assignee", "Display Options": "Display Options", + "Display information or allow Request participants to download files.": "Display information or allow Request participants to download files.", "display": "display", "Display": "Display", "Distribute Horizontally": "Distribute Horizontally", @@ -685,6 +727,7 @@ "Document with AI": "Document with AI", "Documentation": "Documentation", "Documenting...": "Documenting...", + "Documenting": "Documenting", "Domain": "Domain", "Double": "Double", "Download a process model and its associated assets.": "Download a process model and its associated assets", @@ -713,9 +756,11 @@ "Due": "Due", "Duplicate": "Duplicate", "Duration": "Duration", + "E-mail": "E-mail", "easier than ever": "easier than ever", "Edit {{user}} Profile": "Edit {{user}} Profile", "Edit as JSON": "Edit as JSON", + "Edit Analytics": "Edit Analytics", "Edit Auth Client": "Edit Auth Client", "Edit Auth Clients": "Edit Auth-Clients", "Edit Bundle": "Edit Bundle", @@ -725,10 +770,13 @@ "Edit Comments": "Edit Comments", "Edit Data": "Edit Data", "Edit DevLink": "Edit DevLink", + "Edit Documentation": "Edit Documentation", "Edit Environment Variable": "Edit Environment Variable", "Edit Environment Variables": "Edit Environment Variables", "Edit Field Security": "Edit Field Security", "Edit Files": "Edit Files", + "Edit Flow Genie Categories": "Edit Flow Genie Categories", + "Edit Flow Genies": "Edit Flow Genies", "Edit Group": "Edit Group", "Edit Groups": "Edit Groups", "Edit Launchpad": "Edit Launchpad", @@ -736,10 +784,17 @@ "Edit Option": "Edit Option", "Edit Page Title": "Edit Page Title", "Edit Page": "Edit Page", + "Edit Personal Profile": "Edit Personal Profile", + "Edit PM Block Categories": "Edit PM Block Categories", + "Edit PM Blocks": "Edit PM Blocks", "Edit Process Categories": "Edit Process Categories", "Edit Process Category": "Edit Process Category", "Edit Process": "Edit Process", "Edit Processes": "Edit Processes", + "Edit Process Templates": "Edit Process Templates", + "Edit Project Categories": "Edit Project Categories", + "Export Process Templates": "Export Process Templates", + "Export Projects": "Export Projects", "Edit Profile": "Edit Profile", "Edit Record": "Edit Record", "Edit Request Data": "Edit Request Data", @@ -757,6 +812,8 @@ "Edit Task": "Edit Task", "Edit Template": "Edit Template", "Edit Translations": "Edit Translations", + "Edit User": "Edit User", + "Edit User And Password": "Edit User And Password", "Edit Users": "Edit Users", "Edit Version History": "Edit Version History", "Edit Vocabularies": "Edit Vocabularies", @@ -912,6 +969,8 @@ "Expand sidebar": "Expand sidebar", "Expires At": "Expires At", "Explain": "Explain", + "Export Flow Genies": "Export Flow Genies", + "Export PM Blocks": "Export PM Blocks", "Export Process": "Export Process", "Export Processes": "Export Processes", "Export Screen": "Export Screen", @@ -971,6 +1030,7 @@ "Finding Cases available to you...": "Finding Cases available to you...", "First Name": "First Name", "Flow completed": "Flow completed", + "Flow Genies": "Flow Genies", "Flow in loop": "Flow in loop", "Flow not completed": "Flow not completed", "Flow splits implicitly": "Flow splits implicitly", @@ -1008,8 +1068,10 @@ "Generate from AI": "Generate from AI", "Generate from Text": "Generate from Text", "Generate New Token": "Generate New Token", + "Generate Script From Text": "Generate Script From Text", "Generate single fields or entire forms with our generative assistant": "Generate single fields or entire forms with our generative assistant", "Generated Token": "Generated Token", + "Generating explanation": "Generating explanation", "Get Help": "Get Help", "Get options from this variable. Must be an array.": "Get options from this variable. Must be an array.", "GitHub": "GitHub", @@ -1050,6 +1112,7 @@ "Hide": "Hide", "History": "History", "Home": "Home", + "Home Analytics": "Home Analytics", "Homepage": "Homepage", "Horizontal alignment of the text": "Horizontal alignment of the text", "Host URL": "Host URL", @@ -1089,10 +1152,15 @@ "Import a Process Template and its associated assets into this ProcessMaker environment": "Import a Process Template and its associated assets into this ProcessMaker environment", "Import all assets from the uploaded package.": "Import all assets from the uploaded package.", "Import As New": "Import As New", + "Import Flow Genies": "Import Flow Genies", + "Import PM Blocks": "Import PM Blocks", "Import Process Template": "Import Process Template", "Import Process": "Import Process", "Import Processes": "Import Processes", + "Import Process Templates": "Import Process Templates", + "Import Projects": "Import Projects", "Import Screen": "Import Screen", + "Import Screen Template": "Import Screen Template", "Import Screens": "Import Screens", "Import": "Import", "import": "import", @@ -1206,6 +1274,7 @@ "Linked Instances": "Linked Instances", "Linked": "Linked", "List Endpoints": "List Endpoints", + "List Collections": "List Collections", "List Label": "List Label", "List Name": "List Name", "List of columns to display in the record list": "List of columns to display in the record list", @@ -1245,6 +1314,7 @@ "Mailgun Secret": "Mailgun Secret", "Make sure you copy your access token now. You won't be able to see it again.": "Make sure you copy your access token now. You won't be able to see it again.", "Make this user a Super Admin": "Make this user a Super Admin", + "Manager": "Manager", "Manager_id": "Manager ID", "Manual Task": "Manual Task", "Manual translation": "Manual translation", @@ -1322,6 +1392,7 @@ "My requests": "My requests", "My Requests": "My Requests", "My Tasks": "My Tasks", + "My Templates": "My Templates", "Name ID Format": "Name ID Format", "Name must be unique": "Name must be unique", "Name of the File": "Name of the File", @@ -1329,6 +1400,7 @@ "Name of Variable to store the output": "Name of Variable to store the output", "name": "name", "Name": "Name", + "NAME": "NAME", "Names must be unique.": "Names must be unique.", "Navigation": "Navigation", "Nayra microservice is not available at this moment.": "Nayra microservice is not available at this moment.", @@ -1388,6 +1460,7 @@ "New User Default Config": "New User Default Config", "New Value": "New Value", "New": "New", + "NEW": "NEW", "Next": "Next", "No assets to display here yet": "No assets to display here yet", "No Available Columns": "No Available Columns", @@ -1407,6 +1480,7 @@ "No Loop Mode": "No Loop Mode", "No matching categories were found": "No matching categories were found", "No new notifications at the moment.": "No new notifications at the moment.", + "No new cases at this moment.": "No new cases at this moment.", "No new tasks at this moment.": "No new tasks at this moment.", "No Notifications Found": "No Notifications Found", "No permissions to access this content": "No permissions to access this content", @@ -1592,6 +1666,7 @@ "Process Browser": "Process Browser", "Process Categories": "Process Categories", "Process Category": "Process Category", + "Process Catalog": "Process Catalog", "Process Chart": "Process Chart", "Process has multiple blank start events": "Process has multiple blank start events", "Process Info": "Process Info", @@ -1603,6 +1678,7 @@ "Process Manager": "Process Manager", "Process Owner": "Process Owner", "Process Name": "Process Name", + "Process Templates": "Process Templates", "Process was successfully imported": "Process was successfully imported", "Process_category_id": "Process Category ID", "Process_manager": "Process Manager", @@ -1611,6 +1687,7 @@ "ProcessCreated": "Process Created", "Processes Browser": "Processes Browser", "Processes Dashboard": "Processes Dashboard", + "Processes I Manage": "Processes I Manage", "processes": "processes", "Processes": "Processes", "ProcessMaker AI is currently offline. Please try again later.": "ProcessMaker AI is currently offline. Please try again later.", @@ -1629,6 +1706,7 @@ "ProcessUpdated": "Process Updated", "Products": "Products", "Profile": "Profile", + "Progress": "Progress", "Projects": "Projects", "Properties to map from the Data Connector into the output variable": "Properties to map from the Data Connector into the output variable", "Property already exists": "Property already exists", @@ -1640,8 +1718,10 @@ "Provide Values": "Provide Values", "Provider": "Provider", "Public Certificate": "Public Certificate", + "Publish": "Publish", "Publish New Version": "Publish New Version", "Publish PM Block": "Publish PM Block", + "Publish Screen Templates": "Publish Screen Templates", "Publish Template": "Publish Template", "Published": "Published", "Queue Management": "Queue Management", @@ -1662,6 +1742,7 @@ "Recent Cases": "Recent Cases", "Recent Projects": "Recent Projects", "Recently searched": "Recently searched", + "Recommendations": "Recommendations", "Recommended: 1280 x 720 px": "Recommended: 1280 x 720 px", "Reconnect": "Reconnect", "Record Form": "Record Form", @@ -1873,6 +1954,7 @@ "Select a screen from the process to review and perform translations.": "Select a screen from the process to review and perform translations.", "Select a screen to nest": "Select a screen to nest", "Select a screen": "Select a screen", + "Select the screen type and style.": "Select the screen type and style.", "Select a target language": "Select a target language", "Select a user to set the API access of the Script": "Select a user to set the API access of the Script", "Select allowed group": "Select allowed group", @@ -1990,6 +2072,7 @@ "SettingsUpdated": "Settings Updated", "Share": "Share", "Shared Assets": "Shared Assets", + "Shared Templates": "Shared Templates", "Shared with Groups": "Shared with Groups", "Shared with Users": "Shared with Users", "Should NOT have more than {max} items": "Should NOT have more than {max} items", @@ -2138,6 +2221,7 @@ "Tasks": "Tasks", "TCE dashboards are currently unavailable, please contact with the administrator in order to enable": "TCE dashboards are currently unavailable, please contact with the administrator in order to enable", "Template Author": "Template Author", + "TEMPLATE AUTHOR": "TEMPLATE AUTHOR", "Template Documentation": "Template Documentation", "Template Name": "Template Name", "Template": "Template", @@ -2406,6 +2490,7 @@ "Type a valid name": "Type a valid name", "type here to search": "type here to search", "Type here to search": "Type here to search", + "Type of Screen": "Type of Screen", "Type of Value Returned": "Type of Value Returned", "Type to search Chart": "Type to search Chart", "Type to search Screen": "Type to search Screen", @@ -2435,6 +2520,7 @@ "Update Bundle": "Update Bundle", "Update Group Successfully": "Update Group Successfully", "Update Rule": "Update Rule", + "Update Settings": "Update Settings", "Update": "Update", "Updated By": "Updated By", "Updated_at": "Updated At", @@ -2477,6 +2563,7 @@ "User Identifier": "User Identifier", "User Login": "User Login", "User Matching": "User Matching", + "User must change password at next login": "User must change password at next login", "User Password": "User Password", "User Permissions Updated Successfully": "User Permissions Updated Successfully", "User Settigns": "User Settigns", @@ -2489,6 +2576,7 @@ "UserDeleted": "User Deleted", "UserGroupsUpdated": "User Groups Updated", "Username": "Username", + "Username and Password": "Username and Password", "UserRestored": "User Restored", "Users / Groups": "Users / Groups", "Users that should be notified about task events": "Users that should be notified about task events", @@ -2523,8 +2611,17 @@ "Version History": "Version History", "Version Name": "Version Name", "Version": "Version", + "VERSION": "VERSION", + "VERSION DATE": "VERSION DATE", + "View Analytics": "View Analytics", + "View Flow Genie Categories": "View Flow Genie Categories", + "View Flow Genies": "View Flow Genies", + "View PM Block Categories": "View PM Block Categories", + "View PM Blocks": "View PM Blocks", + "View Process Catalog": "View Process Catalog", "Vertical alignment of the text": "Vertical alignment of the text", "View {{user}} Profile": "View {{user}} Profile", + "View All Cases": "View All Cases", "View All Collections": "View All Collections", "View All Data Connectors": "View All Data Connectors", "View All Decision Tables": "View All Decision Tables", @@ -2546,8 +2643,13 @@ "View Groups": "View Groups", "View Notifications": "View Notifications", "View Other Users Profiles": "View Other Users Profiles", + "View My Requests": "View My Requests", "View Process Categories": "View Process Categories", "View Processes": "View Processes", + "View Process Templates": "View Process Templates", + "View Additional Asset Actions": "View Additional Asset Actions", + "View Project Categories": "View Project Categories", + "View Projects": "View Projects", "View Profile": "View Profile", "View Request": "View Request", "View Screen Categories": "View Screen Categories", @@ -2555,6 +2657,7 @@ "View Script Categories": "View Script Categories", "View Scripts": "View Scripts", "View Security Logs": "View Security Logs", + "View Settings": "View Settings", "View Signals": "View Signals", "View Task Assignments": "View Task Assignments", "View Translations": "View Translations", @@ -2586,7 +2689,7 @@ "Watchers": "Watchers", "Watching Variable": "Watching Variable", "Watching": "Watching", - "We apologize, but we were unable to find any results that match your search. \nPlease consider trying a different search. Thank you": "We apologize, but we were unable to find any results that match your search. \nPlease consider trying a different search. Thank you", + "We apologize, but we were unable to find any results that match your search.\nPlease consider trying a different search. Thank you": "We apologize, but we were unable to find any results that match your search.\nPlease consider trying a different search. Thank you", "We apologize, but we were unable to find any results that match your search. Please consider trying a different search. Thank you": "We apologize, but we were unable to find any results that match your search. Please consider trying a different search. Thank you", "We can't find a user with that e-mail address.": "We can't find a user with that e-mail address.", "We encourage you to create new processes using our templates.": "We encourage you to create new processes using our templates.", @@ -2626,6 +2729,7 @@ "You are about to export": "You are about to export", "You are about to import a Process.": "You are about to import a Process.", "You are about to import a Screen.": "You are about to import a Screen.", + "You are about to import a Screen Template.": "You are about to import a Screen Template.", "You are about to import": "You are about to import", "You are about to publish a draft version. Are you sure you want to proceed?": "You are about to publish a draft version. Are you sure you want to proceed?", "You are not assigned to this encrypted field.": "You are not assigned to this encrypted field.", diff --git a/resources/views/shared/breadcrumbs.blade.php b/resources/views/shared/breadcrumbs.blade.php index a5d9f51e0e..3bde2cd01d 100644 --- a/resources/views/shared/breadcrumbs.blade.php +++ b/resources/views/shared/breadcrumbs.blade.php @@ -19,10 +19,10 @@ @if ($link != null) - {{ $title }} + {{ __($title) }} @else - {{ $title }} + {{ __($title) }} @endif