diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/build.gradle b/modules/apps/frontend-data-set/frontend-data-set-views-web/build.gradle index 55c0fe714f7e67..f4d399b82701d4 100644 --- a/modules/apps/frontend-data-set/frontend-data-set-views-web/build.gradle +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/build.gradle @@ -4,5 +4,10 @@ dependencies { compileOnly group: "javax.portlet", name: "portlet-api", version: "3.0.1" compileOnly group: "org.apache.felix", name: "org.apache.felix.http.servlet-api", version: "1.1.2" compileOnly group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.4.0" + compileOnly group: "org.osgi", name: "osgi.core", version: "6.0.0" compileOnly project(":apps:application-list:application-list-api") + compileOnly project(":apps:frontend-taglib:frontend-taglib-react") + compileOnly project(":core:petra:petra-function") + compileOnly project(":core:petra:petra-lang") + compileOnly project(":core:petra:petra-string") } \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/package.json b/modules/apps/frontend-data-set/frontend-data-set-views-web/package.json index 2528fa69dcb834..b1f03e0cac2b16 100644 --- a/modules/apps/frontend-data-set/frontend-data-set-views-web/package.json +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/package.json @@ -1,4 +1,8 @@ { + "dependencies": { + "@liferay/frontend-data-set-web": "*", + "frontend-js-web": "*" + }, "name": "@liferay/frontend-data-set-views-web", "private": true, "scripts": { diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/view.jsp b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/constants/FDSViewsWebKeys.java similarity index 72% rename from modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/view.jsp rename to modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/constants/FDSViewsWebKeys.java index 8236a7421b9b58..403e46e9377b41 100644 --- a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/view.jsp +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/constants/FDSViewsWebKeys.java @@ -1,4 +1,3 @@ -<%-- /** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * @@ -12,6 +11,15 @@ * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ ---%> -<%@ include file="/init.jsp" %> \ No newline at end of file +package com.liferay.frontend.data.set.views.web.internal.constants; + +/** + * @author Marko Cikos + */ +public class FDSViewsWebKeys { + + public static final String FDS_VIEWS_DISPLAY_CONTEXT = + "FDS_VIEWS_DISPLAY_CONTEXT"; + +} \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/display/context/FDSViewsDisplayContext.java b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/display/context/FDSViewsDisplayContext.java new file mode 100644 index 00000000000000..bc45f7c63ffdb9 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/display/context/FDSViewsDisplayContext.java @@ -0,0 +1,80 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +package com.liferay.frontend.data.set.views.web.internal.display.context; + +import com.liferay.frontend.data.set.views.web.internal.constants.FDSViewsPortletKeys; +import com.liferay.frontend.data.set.views.web.internal.resource.FDSHeadlessResource; +import com.liferay.frontend.data.set.views.web.internal.resource.FDSHeadlessResourcesUtil; +import com.liferay.portal.kernel.json.JSONArray; +import com.liferay.portal.kernel.json.JSONFactoryUtil; +import com.liferay.portal.kernel.json.JSONUtil; +import com.liferay.portal.kernel.portlet.PortletURLFactoryUtil; +import com.liferay.portal.kernel.portlet.url.builder.PortletURLBuilder; + +import java.util.Comparator; +import java.util.List; + +import javax.portlet.PortletRequest; + +/** + * @author Marko Cikos + */ +public class FDSViewsDisplayContext { + + public FDSViewsDisplayContext(PortletRequest portletRequest) { + _portletRequest = portletRequest; + } + + public String getFDSViewsURL() { + return PortletURLBuilder.create( + PortletURLFactoryUtil.create( + _portletRequest, FDSViewsPortletKeys.FDS_VIEWS, + PortletRequest.RENDER_PHASE) + ).setMVCPath( + "/fds_views.jsp" + ).buildString(); + } + + public JSONArray getHeadlessResourcesJSONArray() { + JSONArray jsonArray = JSONFactoryUtil.createJSONArray(); + + List fdsHeadlessResources = + FDSHeadlessResourcesUtil.getFDSHeadlessResources(); + + fdsHeadlessResources.sort( + Comparator.comparing(FDSHeadlessResource::getBundleLabel)); + + fdsHeadlessResources.sort( + Comparator.comparing(FDSHeadlessResource::getName)); + + for (FDSHeadlessResource fdsHeadlessResource : fdsHeadlessResources) { + jsonArray.put( + JSONUtil.put( + "bundleLabel", fdsHeadlessResource.getBundleLabel() + ).put( + "entityClassName", fdsHeadlessResource.getEntityClassName() + ).put( + "name", fdsHeadlessResource.getName() + ).put( + "version", fdsHeadlessResource.getVersion() + )); + } + + return jsonArray; + } + + private final PortletRequest _portletRequest; + +} \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/portlet/FDSViewsPortlet.java b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/portlet/FDSViewsPortlet.java index 137508c59cbefc..cd53d4f2d5fec5 100644 --- a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/portlet/FDSViewsPortlet.java +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/portlet/FDSViewsPortlet.java @@ -15,9 +15,16 @@ package com.liferay.frontend.data.set.views.web.internal.portlet; import com.liferay.frontend.data.set.views.web.internal.constants.FDSViewsPortletKeys; +import com.liferay.frontend.data.set.views.web.internal.constants.FDSViewsWebKeys; +import com.liferay.frontend.data.set.views.web.internal.display.context.FDSViewsDisplayContext; import com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet; +import java.io.IOException; + import javax.portlet.Portlet; +import javax.portlet.PortletException; +import javax.portlet.RenderRequest; +import javax.portlet.RenderResponse; import org.osgi.service.component.annotations.Component; @@ -29,7 +36,7 @@ "com.liferay.portlet.display-category=category.hidden", "com.liferay.portlet.layout-cacheable=true", "javax.portlet.expiration-cache=0", - "javax.portlet.init-param.view-template=/view.jsp", + "javax.portlet.init-param.view-template=/fds_views.jsp", "javax.portlet.name=" + FDSViewsPortletKeys.FDS_VIEWS, "javax.portlet.resource-bundle=content.Language", "javax.portlet.security-role-ref=administrator,power-user,user", @@ -38,4 +45,17 @@ service = Portlet.class ) public class FDSViewsPortlet extends MVCPortlet { + + @Override + protected void doDispatch( + RenderRequest renderRequest, RenderResponse renderResponse) + throws IOException, PortletException { + + renderRequest.setAttribute( + FDSViewsWebKeys.FDS_VIEWS_DISPLAY_CONTEXT, + new FDSViewsDisplayContext(renderRequest)); + + super.doDispatch(renderRequest, renderResponse); + } + } \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResource.java b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResource.java new file mode 100644 index 00000000000000..c5afca0420a5d6 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResource.java @@ -0,0 +1,53 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +package com.liferay.frontend.data.set.views.web.internal.resource; + +/** + * @author Marko Cikos + */ +public class FDSHeadlessResource { + + public FDSHeadlessResource( + String bundleLabel, String entityClassName, String name, + String version) { + + _bundleLabel = bundleLabel; + _entityClassName = entityClassName; + _name = name; + _version = version; + } + + public String getBundleLabel() { + return _bundleLabel; + } + + public String getEntityClassName() { + return _entityClassName; + } + + public String getName() { + return _name; + } + + public String getVersion() { + return _version; + } + + private final String _bundleLabel; + private final String _entityClassName; + private final String _name; + private final String _version; + +} \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResourcesUtil.java b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResourcesUtil.java new file mode 100644 index 00000000000000..4c75d5fcd3d2dc --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/java/com/liferay/frontend/data/set/views/web/internal/resource/FDSHeadlessResourcesUtil.java @@ -0,0 +1,149 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +package com.liferay.frontend.data.set.views.web.internal.resource; + +import com.liferay.petra.string.StringPool; +import com.liferay.portal.kernel.util.GetterUtil; +import com.liferay.portal.kernel.util.StringUtil; + +import java.util.ArrayList; +import java.util.Dictionary; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +import org.osgi.framework.Bundle; +import org.osgi.framework.BundleContext; +import org.osgi.framework.Constants; +import org.osgi.framework.Filter; +import org.osgi.framework.FrameworkUtil; +import org.osgi.framework.InvalidSyntaxException; +import org.osgi.framework.ServiceReference; +import org.osgi.service.component.annotations.Activate; +import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Deactivate; +import org.osgi.util.tracker.ServiceTracker; +import org.osgi.util.tracker.ServiceTrackerCustomizer; + +/** + * @author Marko Cikos + */ +@Component(service = {}) +public class FDSHeadlessResourcesUtil { + + public static List getFDSHeadlessResources() { + return new ArrayList<>(_fdsHeadlessResourcesMap.values()); + } + + @Activate + protected void activate(BundleContext bundleContext) + throws InvalidSyntaxException { + + Filter filter = bundleContext.createFilter( + "(osgi.jaxrs.resource=true)"); + + _serviceTracker = new ServiceTracker<>( + bundleContext, filter, + new FDSHeadlessResourceServiceTrackerCustomizer(bundleContext)); + + _serviceTracker.open(); + } + + @Deactivate + protected void deactivate() { + _serviceTracker.close(); + } + + private static final Map + _fdsHeadlessResourcesMap = new ConcurrentHashMap<>(); + private static ServiceTracker _serviceTracker; + + private class FDSHeadlessResourceServiceTrackerCustomizer + implements ServiceTrackerCustomizer { + + @Override + public Object addingService(ServiceReference serviceReference) { + String entityClassName = (String)serviceReference.getProperty( + "entity.class.name"); + + if (entityClassName != null) { + String[] entityClassNameParts = StringUtil.split( + entityClassName, StringPool.PERIOD); + + _fdsHeadlessResourcesMap.put( + entityClassName, + new FDSHeadlessResource( + _getFDSHeadlessResourceBundleLabel(serviceReference), + entityClassName, + entityClassNameParts[entityClassNameParts.length - 1], + entityClassNameParts[entityClassNameParts.length - 2]. + replaceAll( + StringPool.UNDERLINE, StringPool.PERIOD))); + } + + return _bundleContext.getService(serviceReference); + } + + @Override + public void modifiedService( + ServiceReference serviceReference, Object object) { + + removedService(serviceReference, object); + + addingService(serviceReference); + } + + @Override + public void removedService( + ServiceReference serviceReference, Object object) { + + String entityClassName = (String)serviceReference.getProperty( + "entity.class.name"); + + if (entityClassName != null) { + _fdsHeadlessResourcesMap.remove(entityClassName); + } + + _bundleContext.ungetService(serviceReference); + } + + private FDSHeadlessResourceServiceTrackerCustomizer( + BundleContext bundleContext) { + + _bundleContext = bundleContext; + } + + private String _getFDSHeadlessResourceBundleLabel( + ServiceReference serviceReference) { + + Object object = _bundleContext.getService(serviceReference); + + Bundle bundle = FrameworkUtil.getBundle(object.getClass()); + + Dictionary headers = bundle.getHeaders( + StringPool.BLANK); + + String bundleName = GetterUtil.getString( + headers.get(Constants.BUNDLE_NAME)); + + return bundleName.substring( + 0, bundleName.lastIndexOf(StringPool.SPACE)); + } + + private final BundleContext _bundleContext; + + } + +} \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/add_fds_view.jsp b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/add_fds_view.jsp new file mode 100644 index 00000000000000..8d53a8872b4162 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/add_fds_view.jsp @@ -0,0 +1,37 @@ +<%-- +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ +--%> + +<%@ include file="/init.jsp" %> + +<% +portletDisplay.setShowBackIcon(true); +portletDisplay.setURLBack(fdsViewsDisplayContext.getFDSViewsURL()); + +renderResponse.setTitle(LanguageUtil.get(request, "datasets")); +%> + + \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/css/AddFDSView.scss b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/css/AddFDSView.scss new file mode 100644 index 00000000000000..e49e80ca1cb0bf --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/css/AddFDSView.scss @@ -0,0 +1,3 @@ +.dropdown-menu.autocomplete-dropdown-menu { + max-height: 500px; +} diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/fds_views.jsp b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/fds_views.jsp new file mode 100644 index 00000000000000..66b0b3e718efaa --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/fds_views.jsp @@ -0,0 +1,32 @@ +<%-- +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ +--%> + +<%@ include file="/init.jsp" %> + + + + + + \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/init.jsp b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/init.jsp index be85d4ad85403a..814a2b59f190a3 100644 --- a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/init.jsp +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/init.jsp @@ -16,8 +16,18 @@ <%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %> -<%@ taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %> +<%@ taglib uri="http://liferay.com/tld/react" prefix="react" %><%@ +taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %> + +<%@ page import="com.liferay.frontend.data.set.views.web.internal.constants.FDSViewsWebKeys" %><%@ +page import="com.liferay.frontend.data.set.views.web.internal.display.context.FDSViewsDisplayContext" %><%@ +page import="com.liferay.portal.kernel.language.LanguageUtil" %><%@ +page import="com.liferay.portal.kernel.util.HashMapBuilder" %> - \ No newline at end of file + + +<% +FDSViewsDisplayContext fdsViewsDisplayContext = (FDSViewsDisplayContext)request.getAttribute(FDSViewsWebKeys.FDS_VIEWS_DISPLAY_CONTEXT); +%> \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/AddFDSView.tsx b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/AddFDSView.tsx new file mode 100644 index 00000000000000..8d59a638a48213 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/AddFDSView.tsx @@ -0,0 +1,134 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +import ClayAutocomplete from '@clayui/autocomplete'; +import ClayButton from '@clayui/button'; +import ClayForm, {ClayInput} from '@clayui/form'; +import ClayIcon from '@clayui/icon'; +import ClayLayout from '@clayui/layout'; +import {navigate} from 'frontend-js-web'; +import React from 'react'; + +import '../css/AddFDSView.scss'; + +const RequiredMark = () => ( + <> + + + + + {Liferay.Language.get('required')} + + +); + +type HeadlessResource = { + bundleLabel: string; + entityClassName: string; + name: string; + version: string; +}; +interface IFDSViewsProps { + fdsViewsURL: string; + headlessResources: Array; + namespace: string; +} + +const AddFDSView = ({ + fdsViewsURL, + headlessResources, + namespace, +}: IFDSViewsProps) => { + return ( + + + + +

+ {Liferay.Language.get('new-dataset')} +

+
+ + + + + + + + + + + + + {headlessResources.map((headlessResource) => ( + + {`${headlessResource.name} (${headlessResource.version} - ${headlessResource.bundleLabel})`} + + ))} + + + + + + + + {Liferay.Language.get('save')} + + + { + navigate(fdsViewsURL); + }} + > + {Liferay.Language.get('cancel')} + + + +
+
+
+ ); +}; + +export default AddFDSView; diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/FDSViews.tsx b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/FDSViews.tsx new file mode 100644 index 00000000000000..cc7adea88663bd --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/src/main/resources/META-INF/resources/js/FDSViews.tsx @@ -0,0 +1,63 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +import {FrontendDataSet} from '@liferay/frontend-data-set-web'; +import React from 'react'; +interface IFDSViewsProps { + addFDSViewURL: string; + namespace: string; +} + +const FDSViews = ({addFDSViewURL, namespace}: IFDSViewsProps) => { + const creationMenu = { + primaryItems: [ + { + href: addFDSViewURL, + label: Liferay.Language.get('new-dataset'), + }, + ], + }; + + const views = [ + { + contentRenderer: 'table', + label: Liferay.Language.get('table'), + name: 'viewsTable', + schema: { + fields: [ + {fieldName: 'name', label: Liferay.Language.get('name')}, + { + fieldName: 'provider', + label: Liferay.Language.get('provider'), + }, + { + fieldName: 'modifiedDate', + label: Liferay.Language.get('modified-date'), + }, + ], + }, + thumbnail: 'table', + }, + ]; + + return ( + + ); +}; + +export default FDSViews; diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/tsconfig.json b/modules/apps/frontend-data-set/frontend-data-set-views-web/tsconfig.json new file mode 100644 index 00000000000000..a15637a176b6cf --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/tsconfig.json @@ -0,0 +1,48 @@ +{ + "@generated": "811127be1cb19a5546396809d55129c18d6b8cbd", + "@overrides": { + }, + "@readonly": "** AUTO-GENERATED: DO NOT EDIT OUTSIDE @overrides **", + "@see": "https://git.io/JY2EA", + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "baseUrl": ".", + "composite": true, + "jsx": "react", + "module": "es6", + "moduleResolution": "node", + "outDir": "./types", + "paths": { + "@liferay/frontend-data-set-web": [ + "../frontend-data-set-web/src/main/resources/META-INF/resources/index.d.ts" + ], + "frontend-js-web": [ + "../../frontend-js/frontend-js-web/src/main/resources/META-INF/resources/index.d.ts" + ] + }, + "sourceMap": false, + "strict": true, + "target": "es6", + "tsBuildInfoFile": "tmp/tsconfig.tsbuildinfo", + "typeRoots": [ + "../../../node_modules/@types", + "./node_modules/@types" + ] + }, + "exclude": [ + "test/**/*", + "**/__tests__/**" + ], + "include": [ + "src/**/*", + "../../../global.d.ts" + ], + "references": [ + { + "path": "../frontend-data-set-web" + }, + { + "path": "../../frontend-js/frontend-js-web" + } + ] +} \ No newline at end of file diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/AddFDSView.d.ts b/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/AddFDSView.d.ts new file mode 100644 index 00000000000000..355956f4a05ce7 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/AddFDSView.d.ts @@ -0,0 +1,34 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +/// + +import '../css/AddFDSView.scss'; +declare type HeadlessResource = { + bundleLabel: string; + entityClassName: string; + name: string; + version: string; +}; +interface IFDSViewsProps { + fdsViewsURL: string; + headlessResources: Array; + namespace: string; +} +declare const AddFDSView: ({ + fdsViewsURL, + headlessResources, + namespace, +}: IFDSViewsProps) => JSX.Element; +export default AddFDSView; diff --git a/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/FDSViews.d.ts b/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/FDSViews.d.ts new file mode 100644 index 00000000000000..49c543bf94d6d8 --- /dev/null +++ b/modules/apps/frontend-data-set/frontend-data-set-views-web/types/src/main/resources/META-INF/resources/js/FDSViews.d.ts @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +/// + +interface IFDSViewsProps { + addFDSViewURL: string; + namespace: string; +} +declare const FDSViews: ({ + addFDSViewURL, + namespace, +}: IFDSViewsProps) => JSX.Element; +export default FDSViews; diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language.properties index 1f7bb86af5548e..569064626a8ab8 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets date=Date date-and-time=Date and Time date-field-type-description=Select date from a date picker. @@ -10526,6 +10527,7 @@ new-custom-field=New Custom Field new-custom-object=New Custom Object new-data-export=New Data Export new-data-source=New Data Source +new-dataset=New Dataset new-default-sort=New Default Sort new-definition=New Definition new-device-family=New Device Family @@ -12884,6 +12886,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. provided-by-theme=Provided by Theme +provider=Provider provider-name=Provider Name provider-name-help=Set the name for the OpenID Connect provider. provisional-member=Provisional Member diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ar.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ar.properties index 5f9bcc7e187f94..a9797f22222d94 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ar.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ar.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=خادم SQL database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=تاريخ date-and-time=تاريخ و توقيت date-field-type-description=حدد تاريخًا من منتقي التاريخ. @@ -10520,6 +10521,7 @@ new-custom-field=إضافة حقل مخصص new-custom-object=كائن مخصص جديد new-data-export=تصدير بيانات جديد new-data-source=مصدر بيانات جديد +new-dataset=New Dataset (Automatic Copy) new-default-sort=فرز افتراضي جديد new-definition=تعريف جديد new-device-family=إضافة مجموعة قواعد @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=أدخل كلمة المرور للمصادقة إلى موفر REST. provide-the-user-name-for-authenticating-to-the-rest-provider=أدخل اسم المستخدم للمصادقة إلى موفر REST. provided-by-theme=مقدمة حسب الملمح +provider=Provider (Automatic Copy) provider-name=اسم الموفر provider-name-help=عيِّن اسمًا لموفر اتصال OpenID. provisional-member=عضو مؤقت diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_bg.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_bg.properties index 87393c7f60b20c..330d88a566df9e 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_bg.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_bg.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sql Сървър (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Дата date-and-time=Дата и час date-field-type-description=Изберете дата от инструмента за избор на дата. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Добавяне на потребителски атрибут new-custom-object=New Custom Object (Automatic Copy) new-data-export=Нов експорт на данни (Automatic Translation) new-data-source=Нов източник на данни (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Ново определение (Automatic Translation) new-device-family=Ново семейство на устройства (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Въведете паролата за удостоверяване на доставчика на REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Въведете потребителското име за удостоверяване на доставчика на REST. (Automatic Translation) provided-by-theme=Предоставена от тема (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Име на доставчик (Automatic Translation) provider-name-help=Задайте името на доставчика на OpenID Connect. (Automatic Translation) provisional-member=Временно член (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ca.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ca.properties index f900079927bf14..ef96c25ef3a15c 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ca.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ca.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=Servidor SQL database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data i hora date-field-type-description=Seleccioneu dates d'un selector de dates. @@ -10522,6 +10523,7 @@ new-custom-field=Un camp personalitzat nou new-custom-object=Nou objecte personalitzat new-data-export=Nova exportació de dades new-data-source=Font de les dades nova +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nova ordenació per defecte new-definition=Definició nova new-device-family=Nova família de dispositius @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Introduïu la contrasenya per autenticar-se amb el proveïdor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Introduïu el nom d'usuari per autenticar-se amb el proveïdor REST. provided-by-theme=Proporcionat per tema +provider=Provider (Automatic Copy) provider-name=Nom del proveïdor provider-name-help=Definiu el nom del proveïdor OpenID Connect. provisional-member=Membre Provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_cs.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_cs.properties index f7f5c1a132a1ad..e6be9efbe919b3 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_cs.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_cs.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum a čas date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=Nové uživatelské pole new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=Přidat skupinu zařízení @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Prozatímní člen diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_da.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_da.properties index b5da4bb493c686..59820f01e841c8 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_da.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_da.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Dato date-and-time=Date and Time (Automatic Copy) date-field-type-description=Vælg dato fra en datovælger. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Ny Custom Field new-custom-object=New Custom Object (Automatic Copy) new-data-export=Ny dataeksport (Automatic Translation) new-data-source=Ny datakilde (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Ny definition (Automatic Translation) new-device-family=Tilføj regelgruppe @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Angiv adgangskoden til godkendelse af REST-provideren. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Angiv brugernavnet til godkendelse af REST-provideren. (Automatic Translation) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Udbydernavn provider-name-help=Angiv navnet på OpenId Connect udbyderen. provisional-member=Provisional Member (Automatic Copy) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_de.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_de.properties index a6757dd074babb..0072435a562c90 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_de.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_de.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum und Uhrzeit date-field-type-description=Wählen Sie ein Datum von einem Datumswähler aus. @@ -10522,6 +10523,7 @@ new-custom-field=Neues benutzerdefiniertes Feld new-custom-object=Neues benutzerdefiniertes Objekt new-data-export=Neuer Datenexport new-data-source=Neue Datenquelle +new-dataset=New Dataset (Automatic Copy) new-default-sort=Neue Standardsortierung new-definition=Neue Definition new-device-family=Neue Endgeräteklasse @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Geben Sie das Kennwort für die REST-Authentifizierung an. provide-the-user-name-for-authenticating-to-the-rest-provider=Geben Sie den Benutzernamen für die REST-Authentifizierung an. provided-by-theme=Bereitgestellt nach Thema +provider=Provider (Automatic Copy) provider-name=Provider-Name provider-name-help=Legen Sie den Namen für den Provider OpenID Connect fest. provisional-member=Vorläufiges Mitglied diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_el.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_el.properties index da4bb1a94851f8..c72b43db9b64d5 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_el.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_el.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Ημερομηνία date-and-time=Ημερομηνία και ώρα date-field-type-description=Επιλέξτε ημερομηνία από έναν επιλογέα ημερομηνιών. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Νέο πεδίο ορισμένο από το χρήστη new-custom-object=New Custom Object (Automatic Copy) new-data-export=Εξαγωγή νέων δεδομένων (Automatic Translation) new-data-source=Νέα προέλευση δεδομένων (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Νέος ορισμός (Automatic Translation) new-device-family=Προσθήκη ομάδας κανόνων @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Δώστε τον κωδικό πρόσβασης για έλεγχο ταυτότητας στην υπηρεσία παροχής REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Δώστε το όνομα χρήστη για έλεγχο ταυτότητας στην υπηρεσία παροχής REST. (Automatic Translation) provided-by-theme=Παρέχεται από το θέμα (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Όνομα υπηρεσίας παροχής (Automatic Translation) provider-name-help=Ορίστε το όνομα για την υπηρεσία παροχής OpenID Connect. (Automatic Translation) provisional-member=Προσωρινό μέλος diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en.properties index 1f7bb86af5548e..569064626a8ab8 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets date=Date date-and-time=Date and Time date-field-type-description=Select date from a date picker. @@ -10526,6 +10527,7 @@ new-custom-field=New Custom Field new-custom-object=New Custom Object new-data-export=New Data Export new-data-source=New Data Source +new-dataset=New Dataset new-default-sort=New Default Sort new-definition=New Definition new-device-family=New Device Family @@ -12884,6 +12886,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. provided-by-theme=Provided by Theme +provider=Provider provider-name=Provider Name provider-name-help=Set the name for the OpenID Connect provider. provisional-member=Provisional Member diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_AU.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_AU.properties index bc9660a030e2c8..aac5d9604c89f9 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_AU.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_AU.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Date (Automatic Copy) date-and-time=Date and Time (Automatic Copy) date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=New Custom Field (Automatic Copy) new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Provisional Member (Automatic Copy) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_GB.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_GB.properties index 2795d176e22754..9c00aa9a9cddc5 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_GB.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_en_GB.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Date (Automatic Copy) date-and-time=Date and Time (Automatic Copy) date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=New Custom Field (Automatic Copy) new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Provisional Member (Automatic Copy) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es.properties index 44c9e3252b4f8c..30080acd4f4886 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQL Server database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Fecha date-and-time=Fecha y hora date-field-type-description=Permite seleccionar una fecha con un selector de fecha. @@ -10522,6 +10523,7 @@ new-custom-field=Añadir campo personalizado new-custom-object=Nuevo objeto personalizado new-data-export=Nueva exportación de datos new-data-source=Nuevo origen de datos +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nueva ordenación por defecto new-definition=Nueva definición new-device-family=Añadir familia de dispositivos @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provea una contraseña para autenticar el proveedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Introduzca un nombre de usuario para autenticar el proveedor REST. provided-by-theme=Proporcionado por el tema +provider=Provider (Automatic Copy) provider-name=Nombre del proveedor provider-name-help=Establezca el nombre del proveedor de OpenID Connect. provisional-member=Miembro provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_AR.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_AR.properties index f7f5cbf7d386e0..adaa708d0ce29f 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_AR.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_AR.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQL Server database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Fecha date-and-time=Fecha y hora date-field-type-description=Permite seleccionar una fecha con un selector de fecha. @@ -10522,6 +10523,7 @@ new-custom-field=Añadir campo personalizado new-custom-object=Nuevo objeto personalizado new-data-export=Nueva exportación de datos new-data-source=Nuevo origen de datos +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nueva ordenación por defecto new-definition=Nueva definición new-device-family=Añadir familia de dispositivos @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provea una contraseña para autenticar el proveedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Introduzca un nombre de usuario para autenticar el proveedor REST. provided-by-theme=Proporcionado por el tema +provider=Provider (Automatic Copy) provider-name=Nombre del proveedor provider-name-help=Establezca el nombre del proveedor de OpenID Connect. provisional-member=Miembro provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_CO.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_CO.properties index f7f5cbf7d386e0..adaa708d0ce29f 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_CO.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_CO.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQL Server database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Fecha date-and-time=Fecha y hora date-field-type-description=Permite seleccionar una fecha con un selector de fecha. @@ -10522,6 +10523,7 @@ new-custom-field=Añadir campo personalizado new-custom-object=Nuevo objeto personalizado new-data-export=Nueva exportación de datos new-data-source=Nuevo origen de datos +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nueva ordenación por defecto new-definition=Nueva definición new-device-family=Añadir familia de dispositivos @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provea una contraseña para autenticar el proveedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Introduzca un nombre de usuario para autenticar el proveedor REST. provided-by-theme=Proporcionado por el tema +provider=Provider (Automatic Copy) provider-name=Nombre del proveedor provider-name-help=Establezca el nombre del proveedor de OpenID Connect. provisional-member=Miembro provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_MX.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_MX.properties index f7f5cbf7d386e0..adaa708d0ce29f 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_MX.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_es_MX.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQL Server database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Fecha date-and-time=Fecha y hora date-field-type-description=Permite seleccionar una fecha con un selector de fecha. @@ -10522,6 +10523,7 @@ new-custom-field=Añadir campo personalizado new-custom-object=Nuevo objeto personalizado new-data-export=Nueva exportación de datos new-data-source=Nuevo origen de datos +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nueva ordenación por defecto new-definition=Nueva definición new-device-family=Añadir familia de dispositivos @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provea una contraseña para autenticar el proveedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Introduzca un nombre de usuario para autenticar el proveedor REST. provided-by-theme=Proporcionado por el tema +provider=Provider (Automatic Copy) provider-name=Nombre del proveedor provider-name-help=Establezca el nombre del proveedor de OpenID Connect. provisional-member=Miembro provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_et.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_et.properties index 324dd092a957ce..e0cc24a0a63b48 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_et.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_et.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=SQLServer (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Kuupäev date-and-time=Kuupäev ja kellaaeg date-field-type-description=Valige kuupäevavalijalt kuupäev. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Lisa kohandatud atribuut new-custom-object=New Custom Object (Automatic Copy) new-data-export=Uus andmete eksport (Automatic Translation) new-data-source=Uus andmeallikas (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Uus määratlus (Automatic Translation) new-device-family=Uus seadmeperekond (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Sisestage REST-teenuse pakkujale autentimise parool. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Sisestage REST-teenuse pakkujale autentimise kasutajanimi. (Automatic Translation) provided-by-theme=Teema järgi (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Pakkuja nimi (Automatic Translation) provider-name-help=Määrake OpenID Connecti pakkuja nimi. (Automatic Translation) provisional-member=Ajutine liige (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_eu.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_eu.properties index ca13da17df54d2..fd0f98e7e230a8 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_eu.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_eu.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data eta ordua date-field-type-description=Data aukeratu data-hautagailu baten bidez. @@ -10520,6 +10521,7 @@ new-custom-field=Eremu pertsonalizatu berria new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=Gehitu Arau Multzoa @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=REST hornitzailean identifikatzeko pasahitza. provide-the-user-name-for-authenticating-to-the-rest-provider=REST hornitzailean identifikatzeko erabiltzaile izena. provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Behin-behineko kidea diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fa.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fa.properties index e3a20715f9b3a7..1c99f34a8716cc 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fa.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fa.properties @@ -4843,6 +4843,7 @@ database.oracle=اوراکل database.postgresql=پایگاه داده PostgreSQL database.sqlserver=بانک اطلاعاتی SQLServer database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=تاریخ date-and-time=تاریخ و زمان date-field-type-description=تاریخ را از یک انتخاب کننده تاریخ انتخاب کنید. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=فیلد شخصی‌سازی شده‌ی جدید new-custom-object=New Custom Object (Automatic Copy) new-data-export=صدور داده جدید new-data-source=منبع داده های جدید (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=تعریف جدید (Automatic Translation) new-device-family=افزودن قوانین گروه @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=برای شناسایی ارائه دهنده RESTیک رمز عبور وارد نمایید. provide-the-user-name-for-authenticating-to-the-rest-provider=برای شناسایی ارائه دهنده RESTیک کلمه کاربری وارد نمایید. provided-by-theme=ارائه شده توسط تم (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=نام ارائه دهنده provider-name-help=نام ارائه دهنده اتصال OpenID را تنظیم کنید. (Automatic Translation) provisional-member=عضو موقت diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fi.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fi.properties index 626f0a75ed6224..7e7a9d09691cff 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fi.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fi.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Päiväys date-and-time=Päivä ja kellonaika date-field-type-description=Valitse päivä päivämäärävalitsimesta. @@ -10520,6 +10521,7 @@ new-custom-field=Lisää attribuutti new-custom-object=Uusi Mukautettu Objekti new-data-export=Uusi Tietojen Vienti new-data-source=Uusi Tietolähde +new-dataset=New Dataset (Automatic Copy) new-default-sort=Uusi oletusjärjestys new-definition=Uusi Määritelmä new-device-family=Lisää uusi laiteryhmä @@ -12877,6 +12879,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Anna salasana autentikoituaksesi REST tarjoajalle. provide-the-user-name-for-authenticating-to-the-rest-provider=Anna käyttäjätunnus autentikoituaksesi REST tarjoajalle. provided-by-theme=Teeman Tarjoama +provider=Provider (Automatic Copy) provider-name=Tarjoajan Nimi provider-name-help=Aseta nimi OpenID Connect -tarjoajalle. provisional-member=Ehdollinen jäsen diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr.properties index 470053bf79904f..bbb1069d46b5e9 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Date date-and-time=Date et heure date-field-type-description=Sélectionnez la date d'un datepicker. @@ -10522,6 +10523,7 @@ new-custom-field=Nouveau champ fait sur commande new-custom-object=Nouvel objet personnalisé new-data-export=Nouvelle exportation de données new-data-source=Nouvelle source de données +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nouveau tri par défaut new-definition=Nouvelle Définition new-device-family=Nouvelle famille de périphérique @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Fournir le mots de passe pour authentification au fournisseur REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Fournir le nom d'utilisateur pour authentification au fournisseur REST. provided-by-theme=Fourni par le thème +provider=Provider (Automatic Copy) provider-name=Nom du fournisseur provider-name-help=Définissez le nom du fournisseur OpenID Connect. provisional-member=Membre provisoire diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr_CA.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr_CA.properties index 801942f540a916..baa197610d15cf 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr_CA.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_fr_CA.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Données date-and-time=Date et heure date-field-type-description=Sélectionnez la date d'un datepicker. @@ -10520,6 +10521,7 @@ new-custom-field=Nouveau champ fait sur commande new-custom-object=Nouvel objet personnalisé new-data-export=Nouvelle exportation de données new-data-source=Nouvelle source de données +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nouvelle Définition new-device-family=Nouvelle famille de périphérique @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Fournir le mots de passe pour authentification au fournisseur REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Fournir le nom d'utilisateur pour authentification au fournisseur REST. provided-by-theme=Fourni par le thème +provider=Provider (Automatic Copy) provider-name=Nom du fournisseur provider-name-help=Définissez le nom du fournisseur OpenID Connect. provisional-member=Membre provisoire diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_gl.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_gl.properties index 31005e1cd3ab5a..32b1a4e32a142a 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_gl.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_gl.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQL Server database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data e hora date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=Novo campo personalizado new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Nome do provedor provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Membro provisional diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hi_IN.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hi_IN.properties index eaa82de88d3659..0136f9581c0ec0 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hi_IN.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hi_IN.properties @@ -4843,6 +4843,7 @@ database.oracle=ओरेकल (Automatic Translation) database.postgresql=पोस्टग्रेस्कल (Automatic Translation) database.sqlserver=एसक्यूलसेवर (Automatic Translation) database.sybase=सिबेस (Automatic Translation) +datasets=Datasets (Automatic Copy) date=तिथि date-and-time=दिनांक और समय date-field-type-description=डेट पिकर से तिथि का चयन करें। (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=कस्टम फील्ड जोड़े new-custom-object=नई कस्टम वस्तु new-data-export=नया डेटा निर्यात (Automatic Translation) new-data-source=नया डेटा स्रोत (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=नई परिभाषा (Automatic Translation) new-device-family=नई डिवाइस परिवार (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=आरईएसटी प्रदाता को प्रमाणित करने के लिए पासवर्ड प्रदान करें। (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=आरईएसटी प्रदाता को प्रमाणित करने के लिए उपयोगकर्ता नाम प्रदान करें। (Automatic Translation) provided-by-theme=थीम द्वारा प्रदान किया गया (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=प्रदाता का नाम (Automatic Translation) provider-name-help=ओपनआईडी कनेक्ट प्रदाता के लिए नाम सेट करें। (Automatic Translation) provisional-member=अनंतिम सदस्य (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hr.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hr.properties index c02c12a56b5737..18cb3e7ad59df9 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hr.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hr.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum i vrijeme date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=Novo prilagođeno polje new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=Dodaj grupu pravila @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Privremeni član diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hu.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hu.properties index 74332b6d2b9aa5..6bd26dd457f3f5 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hu.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_hu.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Dátum date-and-time=Dátum és idő date-field-type-description=Válasszon dátumot egy dátumválasztóból. @@ -10523,6 +10524,7 @@ new-custom-field=Új egyedi mező new-custom-object=Új egyéni objektum new-data-export=Új adatexportálás new-data-source=Új adatforrás +new-dataset=New Dataset (Automatic Copy) new-default-sort=Új alapértelmezett rendezés new-definition=Új meghatározás new-device-family=Új eszköz család @@ -12881,6 +12883,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Add meg a jelszót a REST szolgáltatóhoz való hitelesítéshez. provide-the-user-name-for-authenticating-to-the-rest-provider=Add meg a felhasználónevet a REST szolgáltatóhoz való hitelesítéshez. provided-by-theme=A téma biztosította +provider=Provider (Automatic Copy) provider-name=Szolgáltató neve provider-name-help=Beállítja a nevet az OpenID csatlakozás-szolgáltató részére. provisional-member=Ideiglenes tag diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_in.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_in.properties index ccda097659a27f..185d7d7341babd 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_in.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_in.properties @@ -4843,6 +4843,7 @@ database.oracle=Peramal database.postgresql=Postgresql (Automatic Translation) database.sqlserver=SQLServer (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Tanggal date-and-time=Tanggal dan Waktu date-field-type-description=Pilih tanggal dari pemilih tanggal. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Field kustom baru new-custom-object=New Custom Object (Automatic Copy) new-data-export=Ekspor Data Baru (Automatic Translation) new-data-source=Sumber Data Baru (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Definisi Baru (Automatic Translation) new-device-family=Tambah Aturan Kelompok @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Berikan kata sandi untuk mengautentikasi ke penyedia REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Berikan nama pengguna untuk diautentikasi ke penyedia REST. (Automatic Translation) provided-by-theme=Disediakan oleh tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nama Penyedia (Automatic Translation) provider-name-help=Atur nama untuk penyedia OpenID Connect. (Automatic Translation) provisional-member=Anggota Sementara diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_it.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_it.properties index 88dcdfdcf35b8b..43b585d6dad3d9 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_it.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_it.properties @@ -4842,6 +4842,7 @@ database.oracle=oracolo (Automatic Translation) database.postgresql=PostgreSQL (Automatic Translation) database.sqlserver=SQL Server database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data e Ora date-field-type-description=Selezionare la data da una selezione data. (Automatic Translation) @@ -10521,6 +10522,7 @@ new-custom-field=Nuovo Campo Personalizzato new-custom-object=New Custom Object (Automatic Copy) new-data-export=Nuova esportazione dati new-data-source=Nuova origine dati (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nuova definizione (Automatic Translation) new-device-family=Aggiungi Famiglia Dispositivo @@ -12879,6 +12881,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Inserisci la password per autenticare il REST provider. provide-the-user-name-for-authenticating-to-the-rest-provider=Inserisci un nome utente per autenticarsi presso il provider REST. provided-by-theme=Fornito dal tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nome provider (Automatic Translation) provider-name-help=Impostare il nome per il provider OpenID Connect. (Automatic Translation) provisional-member=Membro Provvisorio diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_iw.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_iw.properties index 2134adea42b266..7eb8981fe5a830 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_iw.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_iw.properties @@ -4843,6 +4843,7 @@ database.oracle=אורקל database.postgresql=פוסטגרסקל (100 ק"מ) (Automatic Translation) database.sqlserver=שרת SQL database.sybase=בסיס בסיס (Automatic Translation) +datasets=Datasets (Automatic Copy) date=תאריך date-and-time=תאריך וזמן date-field-type-description=בחר תאריך מבורר התאריכים. @@ -10520,6 +10521,7 @@ new-custom-field=שדה חדש מותאם אישית new-custom-object=New Custom Object (Automatic Copy) new-data-export=ייצוא נתונים חדשים new-data-source=מקור נתונים חדש +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=הגדרה חדשה new-device-family=משפחת מכשירים חדשים @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=ספק את סיסמת האימות מול ספק ה-REST. provide-the-user-name-for-authenticating-to-the-rest-provider=ספק את שם המשתמש לאימות מול ספק ה-REST. provided-by-theme=בתנאי הנושא (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=שם הספק provider-name-help=הגדר את השם עבור ספק ה-OpenID Connect. provisional-member=חבר זמני diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ja.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ja.properties index 0f6cd959cbf330..93f9710eff5d65 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ja.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ja.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=日付 date-and-time=日時 date-field-type-description=日付選択ツールから日付を選択します。 @@ -10522,6 +10523,7 @@ new-custom-field=新規カスタムフィールド new-custom-object=新規カスタムオブジェクト new-data-export=新規データのエクスポート new-data-source=新規データソース +new-dataset=New Dataset (Automatic Copy) new-default-sort=新規デフォルトソート new-definition=新しい定義 new-device-family=新規デバイス種別 @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=RESTプロバイダーを認証するパスワードを入力してください。 provide-the-user-name-for-authenticating-to-the-rest-provider=RESTプロバイダーを認証するユーザー名を入力してください。 provided-by-theme=テーマによる提供 +provider=Provider (Automatic Copy) provider-name=プロバイダー名 provider-name-help=OpenID Connect プロバイダー名を設定 provisional-member=仮メンバー diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_kk.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_kk.properties index 3e31d1115155ee..c29381e4d88b30 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_kk.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_kk.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Date (Automatic Copy) date-and-time=Date and Time (Automatic Copy) date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=New Custom Field (Automatic Copy) new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Provisional Member (Automatic Copy) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ko.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ko.properties index e7600041b4f60f..4fb53b4bf12117 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ko.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ko.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=날짜 date-and-time=날자와 시간 date-field-type-description=날짜 선택기에서 날짜 선택 @@ -10520,6 +10521,7 @@ new-custom-field=주문 속성을 추가하십시오 new-custom-object=새 사용자 지정 개체 new-data-export=새 데이터 내보내기 new-data-source=새 데이터 원본 +new-dataset=New Dataset (Automatic Copy) new-default-sort=새 기본 정렬 new-definition=새 정의 new-device-family=새 장치 제품군 @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=REST 제공자 인증을 위한 비밀번호를 제공하십시오. provide-the-user-name-for-authenticating-to-the-rest-provider=REST 제공자 인증을 위한 사용자 이름을 제공하십시오. provided-by-theme=테마에서 제공 +provider=Provider (Automatic Copy) provider-name=제공자 이름 provider-name-help=OpenID Connect 공급자의 이름을 설정합니다. provisional-member=프로비저널 멤버 diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lo.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lo.properties index 0fa140a27374e3..7c3d682fe99967 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lo.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lo.properties @@ -4843,6 +4843,7 @@ database.oracle=ຖານຂໍ້ມູນ Oracle database.postgresql=ຖານຂໍ້ມູນ PostgreSQL database.sqlserver=ຖານຂໍ້ມູນ SQLServer database.sybase=ຖານຂໍ້ມູນ Sybase +datasets=Datasets (Automatic Copy) date=ວັນທີ date-and-time=ວັນທີ ແລະເວລາ date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=ຟິວລູກຄ້າໃໝ່ new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=ເພີ່ມລະບຽບຂອງກຸ່ມ @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=ສະມາຊິກຊົ່ວຄາວ diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lt.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lt.properties index 3f4166bbbdc64b..afee1ccf690f54 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lt.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_lt.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=SQLserveris (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Data (Automatic Translation) date-and-time=Data ir laikas (Automatic Translation) date-field-type-description=Pasirinkite datą iš datos parinkiklio. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Naujas pasirinktinis laukas (Automatic Translation) new-custom-object=New Custom Object (Automatic Copy) new-data-export=Naujų duomenų eksportavimas (Automatic Translation) new-data-source=Naujas duomenų šaltinis (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Naujas apibrėžimas (Automatic Translation) new-device-family=Nauja įrenginių šeima (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Pateikite slaptažodį, skirtą autentifikuoti REST teikėjui. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Pateikite vartotojo vardą, kad jis būtų autentifikuoti REST teikėjui. (Automatic Translation) provided-by-theme=Pateikė tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Teikėjo pavadinimas (Automatic Translation) provider-name-help=Nustatykite "OpenID Connect" teikėjo pavadinimą. (Automatic Translation) provisional-member=Laikinasis narys (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ms.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ms.properties index 0a8806105c8df5..0376e77ccf734a 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ms.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ms.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=PostgreSQL (Automatic Translation) database.sqlserver=SQLServer (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Tarikh (Automatic Translation) date-and-time=Tarikh dan Masa (Automatic Translation) date-field-type-description=Pilih tarikh daripada pemilih tarikh. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Medan Tersuai Baru (Automatic Translation) new-custom-object=New Custom Object (Automatic Copy) new-data-export=Eksport Data Baru (Automatic Translation) new-data-source=Sumber Data Baru (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Definisi Baru (Automatic Translation) new-device-family=Keluarga Peranti Baru (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Berikan kata laluan untuk mengesahkan kepada pembekal REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Berikan nama pengguna untuk mengesahkan kepada pembekal REST. (Automatic Translation) provided-by-theme=Disediakan oleh Tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nama Pembekal (Automatic Translation) provider-name-help=Tetapkan nama untuk pembekal OpenID Connect. (Automatic Translation) provisional-member=Ahli Sementara (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nb.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nb.properties index 5e9ce5b1669437..514fc7ee924b78 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nb.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nb.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Dato date-and-time=Dato og tid date-field-type-description=Velg dato fra en datovelger. @@ -10520,6 +10521,7 @@ new-custom-field=Nytt egendefinert felt new-custom-object=Nytt egendefinert objekt new-data-export=Ny dataeksport (Automatic Translation) new-data-source=Ny datakilde (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Ny definisjon (Automatic Translation) new-device-family=Ny enhetsfamilie @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Angi passordet for autentisering mot REST-tilbyderen. provide-the-user-name-for-authenticating-to-the-rest-provider=Angi brukernavnet for autentisering mot REST-tilbyderen. provided-by-theme=Levert av Theme (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Navn på leverandør (Automatic Translation) provider-name-help=Angi navnet på OpenID Connect-leverandøren. (Automatic Translation) provisional-member=Provisorisk medlem diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl.properties index 974e3b7d589db0..4b8d34af382504 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum en tijd date-field-type-description=Selecteer een datum in een datumkiezer. @@ -10523,6 +10524,7 @@ new-custom-field=Nieuw extra veld new-custom-object=Nieuw aangepast object new-data-export=Nieuwe gegevensexport new-data-source=Nieuwe databron +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nieuwe standaardsortering new-definition=Nieuwe Omschrijving new-device-family=Nieuwe apparatenfamilie @@ -12881,6 +12883,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Geef het wachtwoord op ter verificatie bij de REST provider. provide-the-user-name-for-authenticating-to-the-rest-provider=Geef de gebruikersnaam op ter verificatie bij de REST provider. provided-by-theme=Geleverd door het thema +provider=Provider (Automatic Copy) provider-name=Providernaam provider-name-help=Stel de naam in voor de OpenID Connect-provider. provisional-member=Voorlopig lid diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl_BE.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl_BE.properties index 796d120925b483..199d61fbe9b482 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl_BE.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_nl_BE.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum en tijd date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10523,6 +10524,7 @@ new-custom-field=Nieuwe eigen veld new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12881,6 +12883,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Voorlopig lid diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pl.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pl.properties index 75da138f9cb9bd..c6a3d169a0decf 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pl.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pl.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data i czas date-field-type-description=Wybierz datę z selektora daty. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Nowe pole użytkownika new-custom-object=New Custom Object (Automatic Copy) new-data-export=Eksport nowych danych (Automatic Translation) new-data-source=Nowe źródło danych (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nowa definicja (Automatic Translation) new-device-family=Nowa klasa urządzeń @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Podaj hasło do uwierzytelniania do dostawcy REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Podaj nazwę użytkownika do uwierzytelniania do dostawcy REST. (Automatic Translation) provided-by-theme=Dostarczone przez temat (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nazwa dostawcy (Automatic Translation) provider-name-help=Ustaw nazwę dostawcy OpenID Connect. (Automatic Translation) provisional-member=Uczestnik tymczasowy diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_BR.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_BR.properties index d86df5f1f8b3a3..68ea81c89c4dae 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_BR.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_BR.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=Servidor SQL database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data e hora date-field-type-description=Selecione a data de um seletor de data. @@ -10520,6 +10521,7 @@ new-custom-field=Novo Campo Personalizado new-custom-object=Novo Objeto Personalizado new-data-export=Exportar dados novos new-data-source=Novos dados da Fonte +new-dataset=New Dataset (Automatic Copy) new-default-sort=Nova ordem padrão new-definition=Nova definição new-device-family=Nova família de dispositivos @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Forneça a senha para autenticar no provedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Forneça o nome do usuário para autenticar no provedor REST. provided-by-theme=Fornecido por tema +provider=Provider (Automatic Copy) provider-name=Nome do fornecedor provider-name-help=Definir o nome para o fornecedor de OpenID Connect. provisional-member=Membro provisório diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_PT.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_PT.properties index 437500a29b1b28..74d1f22961b92c 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_PT.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_pt_PT.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data e Hora date-field-type-description=Selecione a data de um seletor de datas. (Automatic Translation) @@ -10522,6 +10523,7 @@ new-custom-field=Novo Campo Personalizado new-custom-object=New Custom Object (Automatic Copy) new-data-export=Exportação de novos dados (Automatic Translation) new-data-source=Nova fonte de dados (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nova Definição (Automatic Translation) new-device-family=Nova família de dispositivos @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Providencie a senha para autenticação com o fornecedor REST. provide-the-user-name-for-authenticating-to-the-rest-provider=Providencie o nome de utilizador para autenticação com o fornecedor REST. provided-by-theme=Fornecido por Tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nome do provedor (Automatic Translation) provider-name-help=Defina o nome para o provedor OpenID Connect. (Automatic Translation) provisional-member=Membro Provisório diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ro.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ro.properties index 526f3518b3f1d6..31fe8ee9c96dc9 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ro.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ro.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Data date-and-time=Data și Timp date-field-type-description=Selectați data dintr-un selector de date. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Camp Editabil Nou new-custom-object=New Custom Object (Automatic Copy) new-data-export=Export de date noi (Automatic Translation) new-data-source=Sursă de date nouă (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Definiție nouă (Automatic Translation) new-device-family=Familie de dispozitive noi (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Furnizați parola pentru autentificare furnizorului REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Furnizați numele de utilizator pentru autentificare furnizorului REST. (Automatic Translation) provided-by-theme=Furnizat de temă (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Nume furnizor (Automatic Translation) provider-name-help=Setați numele furnizorului OpenID Connect. (Automatic Translation) provisional-member=Membru provizoriu (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ru.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ru.properties index acf95c5ba59459..0626da12a6decc 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ru.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ru.properties @@ -4843,6 +4843,7 @@ database.oracle=оракул (Automatic Translation) database.postgresql=Постгресюл (Automatic Translation) database.sqlserver=СЛСервер (Automatic Translation) database.sybase=Сибаса (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Дата date-and-time=Дата и Время date-field-type-description=Выберите дату выбора даты. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Новое дополнительное поле new-custom-object=New Custom Object (Automatic Copy) new-data-export=Экспорт новых данных (Automatic Translation) new-data-source=Новый источник данных (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Новое определение (Automatic Translation) new-device-family=Новая группа устройств @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Предоставьте пароль для проверки подлинности поставщику REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Предоставьте имя пользователя для проверки подлинности поставщику REST. (Automatic Translation) provided-by-theme=Предоставлено Темой (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Имя поставщика (Automatic Translation) provider-name-help=Установите имя поставщика OpenID Connect. (Automatic Translation) provisional-member=Временный участник diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sk.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sk.properties index 6a87852f6846d2..7b5f6ad453a689 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sk.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sk.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Dátum date-and-time=Dátum a čas date-field-type-description=Vyberte dátum z výberu dátumu. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Nové vlastné pole new-custom-object=New Custom Object (Automatic Copy) new-data-export=Export nových údajov (Automatic Translation) new-data-source=Nový zdroj údajov (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nová definícia (Automatic Translation) new-device-family=Nová skupina zariadení @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Zadajte heslo na overenie poskytovateľovi REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Zadajte meno používateľa na overenie poskytovateľovi REST. (Automatic Translation) provided-by-theme=Poskytuje tému (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Názov poskytovateľa (Automatic Translation) provider-name-help=Nastavte názov poskytovateľa OpenID Connect. (Automatic Translation) provisional-member=Dočasný člen diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sl.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sl.properties index 02cfbeeeebad70..26ba5ede7811b7 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sl.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sl.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=SQLServer (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum in čas date-field-type-description=Izberite datum v izbirniku datuma. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Dodaj lastnost new-custom-object=New Custom Object (Automatic Copy) new-data-export=Izvoz novih podatkov (Automatic Translation) new-data-source=Nov vir podatkov (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Nova definicija (Automatic Translation) new-device-family=Nova družina naprav (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Navedite geslo za preverjanje pristnosti ponudniku REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Navedite uporabniško ime za preverjanje pristnosti ponudniku REST. (Automatic Translation) provided-by-theme=Pod pogojem, ki jih tema (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Ime ponudnika (Automatic Translation) provider-name-help=Nastavite ime ponudnika openID Connect. (Automatic Translation) provisional-member=Začasna članica (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS.properties index 7dc14b42c85405..436d275ac5685f 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Датум date-and-time=Датум и Време date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=Ново Прилагођено Поље new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=Додај Правило Групе @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Привремени Члан diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS_latin.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS_latin.properties index e788a59fbd913b..2b04e3adf8d827 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS_latin.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sr_RS_latin.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Copy) database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=Sybase (Automatic Copy) +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum i Vreme date-field-type-description=Select date from a date picker. (Automatic Copy) @@ -10520,6 +10521,7 @@ new-custom-field=Novo Prilagođeno Polje new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=New Device Family (Automatic Copy) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Provide the password for authenticating to the REST provider. (Automatic Copy) provide-the-user-name-for-authenticating-to-the-rest-provider=Provide the user name for authenticating to the REST provider. (Automatic Copy) provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=Privremeni Član diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sv.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sv.properties index 795a2b03b4dfed..05f511bbd8778c 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sv.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_sv.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=Datum date-and-time=Datum och tid date-field-type-description=Välj ett datum från en datumväljare. @@ -10520,6 +10521,7 @@ new-custom-field=Skapa eget fält new-custom-object=Nytt anpassat objekt new-data-export=Ny dataexport new-data-source=Ny datakälla +new-dataset=New Dataset (Automatic Copy) new-default-sort=Ny standardsortering new-definition=Ny definition new-device-family=Lägg till regelgrupp @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Ange lösenordet för att autentisera i REST-provider. provide-the-user-name-for-authenticating-to-the-rest-provider=Ange användarnamnet för att autentisera i REST-provider. provided-by-theme=Tillhandahålls av tema +provider=Provider (Automatic Copy) provider-name=Providernamn provider-name-help=Ange namn för OpenID Connect-provider. provisional-member=Preliminär medlem diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ta_IN.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ta_IN.properties index 925dd04f08af00..7ab20437d43bfb 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ta_IN.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_ta_IN.properties @@ -4843,6 +4843,7 @@ database.oracle=ஆரக்கிள் database.postgresql=PostgreSQL (Automatic Copy) database.sqlserver=SQLServer (Automatic Copy) database.sybase=சைபேஸ் +datasets=Datasets (Automatic Copy) date=தேதி date-and-time=தேதி மற்றும் நேரம் date-field-type-description=Datepicker லிருந்து date தேர்வு செய்யவும். @@ -10520,6 +10521,7 @@ new-custom-field=புதிய தனிப்பயன் புலம் new-custom-object=New Custom Object (Automatic Copy) new-data-export=New Data Export (Automatic Copy) new-data-source=New Data Source (Automatic Copy) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=New Definition (Automatic Copy) new-device-family=புதிய சாதனங்களின் வகைகள் @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=REST வழங்குநருக்கு அங்கீகரிப்பதற்கான கடவுச்சொல்லை வழங்கவும். provide-the-user-name-for-authenticating-to-the-rest-provider=REST வழங்குநருக்கு அங்கீகரிப்பதற்கான பயனர் பெயரை வழங்கவும். provided-by-theme=Provided by Theme (Automatic Copy) +provider=Provider (Automatic Copy) provider-name=Provider Name (Automatic Copy) provider-name-help=Set the name for the OpenID Connect provider. (Automatic Copy) provisional-member=தற்காலிக உறுப்பினர் diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_th.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_th.properties index cb23ce5662b5ac..dcc13e5a5dcbe1 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_th.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_th.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=วันที่ date-and-time=วันและเวลา date-field-type-description=เลือกวันที่จากตัวเลือกวันที่ @@ -10520,6 +10521,7 @@ new-custom-field=คัสตอมฟิลด์ใหม่ new-custom-object=คัสตอมออบเจ็คใหม่ new-data-export=ข้อมูลเอ็กพอร์ตใหม่ new-data-source=ดาต้าซอร์สใหม่ +new-dataset=New Dataset (Automatic Copy) new-default-sort=การจัดเรียงค่าเริ่มต้นใหม่ new-definition=คำจำกัดความใหม่ new-device-family=ตระกูลอุปกรณ์ใหม่ @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=จัดเตรียมรหัสผ่านสำหรับการพิสูจน์ตัวตนกับผู้ให้บริการ REST provide-the-user-name-for-authenticating-to-the-rest-provider=จัดเตรียมชื่อผู้ใช้สำหรับการพิสูจน์ตัวตนกับผู้ให้บริการ REST provided-by-theme=จัดเตรียมให้โดยธีม +provider=Provider (Automatic Copy) provider-name=ชื่อผู้ให้บริการ provider-name-help=กำหนดชื่อผู้ให้บริการการเชื่อมต่อ OpenID provisional-member=สมาชิกชั่วคราว diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_tr.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_tr.properties index cf3243e77bf072..4c3967be68d45e 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_tr.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_tr.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Sqlserver (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Tarih date-and-time=Tarih ve Zaman date-field-type-description=Tarih seçiciden tarih seçin. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Özellik Ekle new-custom-object=New Custom Object (Automatic Copy) new-data-export=Yeni Veri Verme (Automatic Translation) new-data-source=Yeni Veri Kaynağı (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Yeni Tanım (Automatic Translation) new-device-family=Yeni Cihaz Ailesi (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=REST sağlayıcısına kimlik doğrulaması için parola sağlayın. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=REST sağlayıcısında kimlik doğrulaması için kullanıcı adını sağlayın. (Automatic Translation) provided-by-theme=Tema tarafından sağlanan (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Sağlayıcı Adı (Automatic Translation) provider-name-help=OpenID Connect sağlayıcısının adını ayarlayın. (Automatic Translation) provisional-member=Geçici Üye (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_uk.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_uk.properties index 836c45391fd51c..d18f7f9fd68379 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_uk.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_uk.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=Сервер SQL (Automatic Translation) database.sybase=Сиба (Івате) (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Дата date-and-time=Дата і час date-field-type-description=Виберіть дату в елементі вибору дати. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Добавити свій атрибут new-custom-object=New Custom Object (Automatic Copy) new-data-export=Новий експорт даних (Automatic Translation) new-data-source=Нове джерело даних (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Нове визначення (Automatic Translation) new-device-family=Створити сімейство пристроїв (Automatic Translation) @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Укажіть пароль для автентифікації постачальника ПОСЛУГ REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Укажіть ім'я користувача для автентифікації постачальника REST. (Automatic Translation) provided-by-theme=Передбачено темою (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Ім'я постачальника (Automatic Translation) provider-name-help=Установіть ім'я постачальника підключення OpenID. (Automatic Translation) provisional-member=Тимчасовий член (Automatic Translation) diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_vi.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_vi.properties index 6a15f6f3b57db1..4f84bed910a33b 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_vi.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_vi.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle (Automatic Translation) database.postgresql=Postgresql (Automatic Translation) database.sqlserver=SQLServer (Automatic Translation) database.sybase=Sybase (Automatic Translation) +datasets=Datasets (Automatic Copy) date=Ngày date-and-time=Ngày và giờ date-field-type-description=Chọn ngày từ bộ chọn ngày. (Automatic Translation) @@ -10520,6 +10521,7 @@ new-custom-field=Thêm mới trường tùy biến new-custom-object=New Custom Object (Automatic Copy) new-data-export=Xuất Dữ liệu Mới (Automatic Translation) new-data-source=Nguồn Dữ liệu Mới (Automatic Translation) +new-dataset=New Dataset (Automatic Copy) new-default-sort=New Default Sort (Automatic Copy) new-definition=Định nghĩa mới (Automatic Translation) new-device-family=Thêm nhóm luật @@ -12878,6 +12880,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=Cung cấp mật khẩu để xác thực cho nhà cung cấp REST. (Automatic Translation) provide-the-user-name-for-authenticating-to-the-rest-provider=Cung cấp tên người dùng để xác thực cho nhà cung cấp REST. (Automatic Translation) provided-by-theme=Cung cấp bởi chủ đề (Automatic Translation) +provider=Provider (Automatic Copy) provider-name=Tên Nhà cung cấp (Automatic Translation) provider-name-help=Đặt tên cho nhà cung cấp OpenID Connect. (Automatic Translation) provisional-member=Thành viên tạm diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_CN.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_CN.properties index 7ac1a8d67eb220..18eb565e86210f 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_CN.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_CN.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=日期 date-and-time=日期和时间 date-field-type-description=从日期选取器选择日期。 @@ -10522,6 +10523,7 @@ new-custom-field=新的自定义字段 new-custom-object=新自定义对象 new-data-export=导出新数据 new-data-source=新数据源 +new-dataset=New Dataset (Automatic Copy) new-default-sort=新的默认排序 new-definition=新定义 new-device-family=新的设备类 @@ -12880,6 +12882,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=提供向其他提供程序进行身份验证的密码。 provide-the-user-name-for-authenticating-to-the-rest-provider=提供向其他提供程序进行身份验证的用户名称。 provided-by-theme=通过主题提供 +provider=Provider (Automatic Copy) provider-name=供应商名称 provider-name-help=为OpenID Connect供应商设置名称。 provisional-member=临时成员 diff --git a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_TW.properties b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_TW.properties index 3d16058196a7b2..dd86cddf91471a 100644 --- a/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_TW.properties +++ b/modules/apps/portal-language/portal-language-lang/src/main/resources/content/Language_zh_TW.properties @@ -4843,6 +4843,7 @@ database.oracle=Oracle database.postgresql=PostgreSQL database.sqlserver=SQLServer database.sybase=Sybase +datasets=Datasets (Automatic Copy) date=日期 date-and-time=日期和時間 date-field-type-description=從日期選取器選擇日期 @@ -10521,6 +10522,7 @@ new-custom-field=新增客製欄位 new-custom-object=新的自定義物件 new-data-export=新的資料匯出 new-data-source=新的 Data Source +new-dataset=New Dataset (Automatic Copy) new-default-sort=新增預設排序 new-definition=新的定義 new-device-family=新增裝置家族 @@ -12879,6 +12881,7 @@ provide-for-the-customer-the-possibility-of-condition-for-values-or-fields-and-d provide-the-password-for-authenticating-to-the-rest-provider=提供用於向 REST 提供器進行身份驗證的密碼。 provide-the-user-name-for-authenticating-to-the-rest-provider=提供用於向 REST 提供器進行身份驗證的使用者名稱。 provided-by-theme=透過主題提供 +provider=Provider (Automatic Copy) provider-name=提供者名稱 provider-name-help=Set the name for the OpenID Connect provider. provisional-member=臨時成員