diff --git a/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/components/SchedulePipeline.java b/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/components/SchedulePipeline.java index 6285b543cf..b530c901a7 100644 --- a/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/components/SchedulePipeline.java +++ b/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/components/SchedulePipeline.java @@ -33,6 +33,7 @@ import com.vaadin.data.Validator; import com.vaadin.data.util.ObjectProperty; import com.vaadin.event.FieldEvents; +import com.vaadin.server.Page; import com.vaadin.ui.AbstractTextField.TextChangeEventMode; import com.vaadin.ui.*; import com.vaadin.ui.Button.ClickEvent; @@ -52,17 +53,19 @@ import cz.cuni.mff.xrg.odcs.commons.app.scheduling.Schedule; import cz.cuni.mff.xrg.odcs.commons.app.scheduling.ScheduleNotificationRecord; import cz.cuni.mff.xrg.odcs.commons.app.scheduling.ScheduleType; +import cz.cuni.mff.xrg.odcs.frontend.AppEntry; import cz.cuni.mff.xrg.odcs.frontend.auxiliaries.SimpleTreeFilter; import cz.cuni.mff.xrg.odcs.frontend.container.ReadOnlyContainer; import cz.cuni.mff.xrg.odcs.frontend.container.accessor.PipelineNameAccessor; import cz.cuni.mff.xrg.odcs.frontend.doa.container.InMemorySource; import cz.cuni.mff.xrg.odcs.frontend.doa.container.db.DbInMemorySource; import cz.cuni.mff.xrg.odcs.frontend.i18n.Messages; +import cz.cuni.mff.xrg.odcs.frontend.navigation.ParametersHandler; /** * Dialog for the scheduling rule creation. Designed for setting the description * of when the pipeline should be executed. - * + * * @author Maria Kukhar */ public class SchedulePipeline extends Window { @@ -182,6 +185,12 @@ public SchedulePipeline() { this.setResizable(false); this.setModal(true); this.setCaption(Messages.getString("SchedulePipeline.schedule")); + this.addCloseListener(new Window.CloseListener() { + @Override + public void windowClose(CloseEvent e) { + resetURL(); + } + }); } /** @@ -196,7 +205,7 @@ public void init() { /** * Is initialized. - * + * * @return If is initialized */ public boolean isInitialized() { @@ -205,7 +214,7 @@ public boolean isInitialized() { /** * Sets the corresponding value of Pipeline to the dialog. - * + * * @param selectedPipeline */ public void setSelectePipeline(Pipeline selectedPipeline) { @@ -237,7 +246,7 @@ public void setSelectePipeline(Pipeline selectedPipeline) { /** * Selects given schedule and displays it. - * + * * @param selectedSchedule */ public void setSelectedSchedule(Schedule selectedSchedule) { @@ -314,7 +323,7 @@ public void setSelectedSchedule(Schedule selectedSchedule) { } //AFTER_PIPELINE type else { - //setting after_pipeline list + //setting after_pipeline list Set after = selectedSchedule.getAfterPipelines(); List afterNames = new ArrayList<>(); for (Pipeline afteritem : after) { @@ -348,7 +357,7 @@ public void setSelectedSchedule(Schedule selectedSchedule) { /** * Builds main layout contains pipeline, the type of pipeline scheduling, * layouts with components for setting each of the type. - * + * * @return mainLayout GridLayout with all dialog components */ @AutoGenerated @@ -707,6 +716,7 @@ public void buttonClick(ClickEvent event) { } } + resetURL(); close(); } @@ -722,6 +732,7 @@ public void buttonClick(ClickEvent event) { @Override public void buttonClick(Button.ClickEvent event) { + resetURL(); close(); } @@ -789,7 +800,7 @@ public void valueChange(ValueChangeEvent event) { /** * Building layout for the AFTER_PIPELINE scheduling type. Calls from {@link #buildMainLayout} in case of {@link #scheduleType} is setting as * {@link ScheduleType#AFTER_PIPELINE} - * + * * @return afterLayout GridLayout with components that designed for setting * schedule the pipeline to run after selected pipelines finish. */ @@ -835,7 +846,7 @@ public void textChange(final FieldEvents.TextChangeEvent event) { filter = new SimpleTreeFilter(event.getText(), true, false); f.addContainerFilter(filter); - // update filters + // update filters source.showAll(); source.filter(isInitialized, new InMemorySource.Filter() { @@ -871,7 +882,7 @@ public boolean filter(Pipeline object) { selectPipe.setItemCaptionPropertyId("name"); selectPipe.setLeftColumnCaption(Messages.getString("SchedulePipeline.pipelines.available")); selectPipe.setRightColumnCaption(Messages.getString("SchedulePipeline.pipelines.selected")); - //selectPipe is mandatory component + //selectPipe is mandatory component selectPipe.addValidator(new Validator() { private static final long serialVersionUID = 1L; @@ -897,7 +908,7 @@ public void validate(Object value) throws InvalidValueException { /** * Building layout for the PERIODICALLY scheduling type. Calls from {@link #buildMainLayout} in case of {@link #scheduleType} is setting as * {@link ScheduleType#PERIODICALLY} - * + * * @return autoLayout GridLayout with components that designed for setting * schedule the pipeline to run automatically in fixed interval. */ @@ -955,7 +966,7 @@ public void valueChange(ValueChangeEvent event) { dateIntervalLayout.addComponent(new Label(Messages.getString("SchedulePipeline.interval"))); - //OptionGroup with an interval + //OptionGroup with an interval inervalLayout = new VerticalLayout(); intervalOption = new OptionGroup(); intervalOption.setImmediate(true); @@ -1141,7 +1152,7 @@ public void validate(Object val) throws InvalidValueException { /** * Creating error message in case of wrong email format or duplicate emails * in Notification tab - * + * * @return String with error message */ private String emailValidation() { @@ -1275,4 +1286,29 @@ private String getScheduleAuthorDisplayName(Schedule schedule) { return ownerDisplayName; } } + + public void setPipeline(Long pipelineId) { + if (pipelineId != null) { + comboPipeline.setValue(pipelineId); + comboPipeline.setEnabled(false); + } + } + + public void enableComboPipeline() { + if (!comboPipeline.isEnabled()) { + comboPipeline.setEnabled(true); + } + } + + private void resetURL() { + String uriFragment = Page.getCurrent().getUriFragment(); + if (uriFragment.contains("New/")) { + uriFragment = uriFragment.replace("New/", ""); + } + ParametersHandler handler = new ParametersHandler(uriFragment); + handler.removeParameter("schedule"); + handler.removeParameter("pipeline"); + ((AppEntry) UI.getCurrent()).setUriFragment(handler.getUriFragment(), false); + } + } diff --git a/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/views/Scheduler.java b/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/views/Scheduler.java index 85ee464d50..14963b4743 100644 --- a/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/views/Scheduler.java +++ b/frontend/src/main/java/cz/cuni/mff/xrg/odcs/frontend/gui/views/Scheduler.java @@ -18,7 +18,9 @@ import java.text.DateFormat; import java.util.Date; +import java.util.Iterator; import java.util.List; +import java.util.Map; import java.util.Set; import org.apache.commons.lang3.StringUtils; @@ -26,6 +28,8 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; +import org.tepi.filtertable.paged.PagedFilterTable; +import org.tepi.filtertable.paged.PagedTableChangeEvent; import org.vaadin.dialogs.ConfirmDialog; import ru.xpoft.vaadin.VaadinView; @@ -35,6 +39,7 @@ import com.vaadin.data.util.IndexedContainer; import com.vaadin.event.ItemClickEvent; import com.vaadin.navigator.ViewChangeListener.ViewChangeEvent; +import com.vaadin.server.Page; import com.vaadin.server.Resource; import com.vaadin.server.ThemeResource; import com.vaadin.ui.*; @@ -62,18 +67,19 @@ import cz.cuni.mff.xrg.odcs.frontend.gui.tables.IntlibPagedTable; import cz.cuni.mff.xrg.odcs.frontend.i18n.Messages; import cz.cuni.mff.xrg.odcs.frontend.navigation.Address; +import cz.cuni.mff.xrg.odcs.frontend.navigation.ParametersHandler; /** * GUI for Scheduler page which opens from the main menu. Contains table with * scheduler rules and button for scheduler rule creation. - * + * * @author Maria Kukhar */ @org.springframework.stereotype.Component @Scope("session") @VaadinView(Scheduler.NAME) @Address(url = "Scheduler") -public class Scheduler extends ViewComponent implements PostLogoutCleaner { +public class Scheduler extends ViewComponent implements PostLogoutCleaner, Presenter { private static final org.slf4j.Logger log = LoggerFactory.getLogger( Scheduler.class); @@ -182,11 +188,12 @@ public void refresh(Refresher source) { } }); refreshManager.triggerRefresh(); + setParameters(ParametersHandler.getConfiguration(event.getParameters())); } /** * Builds main layout contains table with created scheduling pipeline rules. - * + * * @return mainLayout VerticalLayout with all components of Scheduler page. */ private VerticalLayout buildMainLayout() { @@ -215,7 +222,7 @@ private VerticalLayout buildMainLayout() { @Override public void buttonClick(ClickEvent event) { // open scheduler dialog - showSchedulePipeline(null); + showSchedulePipeline(null, null); } }); topLine.addComponent(addRuleButton); @@ -293,7 +300,8 @@ public void itemClick(ItemClickEvent event) { if (!schedulerTable.isSelected(event.getItemId())) { try { Long schId = Long.parseLong(event.getItem().getItemProperty("schid").getValue().toString()); - showSchedulePipeline(schId); + showSchedulePipeline(schId, null); + changeURI(schId); } catch (NumberFormatException e) { log.error(e.getLocalizedMessage()); // cannot cast String to Long probably @@ -302,13 +310,20 @@ public void itemClick(ItemClickEvent event) { } } }); + schedulerTable.addListener(new PagedFilterTable.PageChangeListener() { + @Override + public void pageChanged(PagedTableChangeEvent event) { + int newPageNumber = event.getCurrentPage(); + pageChangedHandler(newPageNumber); + } + }); return mainLayout; } /** * Container with data for table {@link #schedulerTable}. - * + * * @param data * List of {@link Schedule}. * @return result IndexedContainer with data for {@link #schedulerTable}. @@ -371,8 +386,8 @@ public IndexedContainer getTableData(List data) { + Messages.getString("Scheduler.and.repeat") + " " + Messages.getString("Scheduler." + item.getPeriodUnit().toString() - .toLowerCase() + ".one")); - } else if(item.getPeriod() <= 4) { + .toLowerCase() + ".one")); + } else if (item.getPeriod() <= 4) { result.getContainerProperty(id, "rule").setValue( Messages.getString("Scheduler.run.on", df.format(item.getFirstExecution())) + Messages.getString("Scheduler.and.repeat") @@ -380,8 +395,8 @@ public IndexedContainer getTableData(List data) { + item.getPeriod().toString() + " " + Messages.getString("Scheduler." + item.getPeriodUnit().toString() - .toLowerCase() + ".lte.four")); - }else { + .toLowerCase() + ".lte.four")); + } else { result.getContainerProperty(id, "rule").setValue( Messages.getString("Scheduler.run.on", df.format(item.getFirstExecution())) + Messages.getString("Scheduler.and.repeat") @@ -389,7 +404,7 @@ public IndexedContainer getTableData(List data) { + item.getPeriod().toString() + " " + Messages.getString("Scheduler." + item.getPeriodUnit().toString() - .toLowerCase() + ".more")); + .toLowerCase() + ".more")); } } } else { @@ -458,11 +473,11 @@ private void refreshData() { /** * Shows dialog for scheduling pipeline with given scheduling rule. - * + * * @param id * Id of schedule to show. */ - private void showSchedulePipeline(Long id) { + private void showSchedulePipeline(Long id, Long pipelineId) { // open scheduler dialog if (!schedulePipeline.isInitialized()) { @@ -480,15 +495,24 @@ public void windowClose(CloseEvent e) { schedule = scheduleFacade.getSchedule(id); } schedulePipeline.setSelectedSchedule(schedule); + schedulePipeline.enableComboPipeline(); + if (pipelineId != null) { + schedulePipeline.setPipeline(pipelineId); + } if (!UI.getCurrent().getWindows().contains(schedulePipeline)) { + if (schedulePipeline.isAttached()) { + schedulePipeline.detach(); + schedulePipeline.close(); + } + refreshManager.removeListener(RefreshManager.SCHEDULER); UI.getCurrent().addWindow(schedulePipeline); } } /** * Generate column "commands" in the table {@link #schedulerTable}. - * + * * @author Maria Kukhar */ class actionColumnGenerator implements CustomTable.ColumnGenerator { @@ -517,8 +541,9 @@ public void buttonClick(ClickEvent event) { refreshData(); } }); - if (canEdit(schedule)) + if (canEdit(schedule)) { layout.addComponent(enableButton); + } } //If item in the scheduler table has Enabled status, then for that item will be shown //Disable button @@ -534,8 +559,9 @@ public void buttonClick(ClickEvent event) { refreshData(); } }); - if (canEdit(schedule)) + if (canEdit(schedule)) { layout.addComponent(disableButton); + } } } @@ -547,11 +573,13 @@ public void buttonClick(ClickEvent event) { editButton.addClickListener(new com.vaadin.ui.Button.ClickListener() { @Override public void buttonClick(ClickEvent event) { - showSchedulePipeline(schId); + showSchedulePipeline(schId, null); + changeURI(schId); } }); - if (canEdit(schedule)) + if (canEdit(schedule)) { layout.addComponent(editButton); + } //Delete button. Delete scheduling rule from the table. Button deleteButton = new Button(); @@ -579,8 +607,9 @@ public void onClose(ConfirmDialog cd) { }); } }); - if (canDelete(schedule)) + if (canDelete(schedule)) { layout.addComponent(deleteButton); + } return layout; } @@ -626,4 +655,131 @@ public String getBooleanFilterDisplayName(Object propertyId, boolean value) { public void doAfterLogout() { isMainLayoutInitialized = false; } + + private void changeURI(Long scheduleId) { + String uriFragment = Page.getCurrent().getUriFragment(); + ParametersHandler handler = new ParametersHandler(uriFragment); + handler.addParameter("schedule", "" + scheduleId); + ((AppEntry) UI.getCurrent()).setUriFragment(handler.getUriFragment(), false); + } + + @Override + public Object enter() { + if (!isMainLayoutInitialized) { + buildMainLayout(); + isMainLayoutInitialized = true; + } + setCompositionRoot(mainLayout); + + refreshManager = ((AppEntry) UI.getCurrent()).getRefreshManager(); + refreshManager.addListener(RefreshManager.SCHEDULER, new Refresher.RefreshListener() { + private long lastRefreshFinished = 0; + + @Override + public void refresh(Refresher source) { + if (new Date().getTime() - lastRefreshFinished > RefreshManager.MIN_REFRESH_INTERVAL) { + boolean hasModifiedExecutions = pipelineFacade.hasModifiedExecutions(lastLoad); + if (hasModifiedExecutions) { + lastLoad = new Date(); + refreshData(); + } + LOG.debug("Scheduler refreshed."); + lastRefreshFinished = new Date().getTime(); + } + } + }); + refreshManager.triggerRefresh(); + + return this; + } + + @Override + public void setParameters(Object configuration) { + if (configuration != null && Map.class.isAssignableFrom(configuration.getClass())) { + schedulerTable.resetFilters(); + int pageNumber = 0; + Long pipelineId = null; + Map config = (Map) configuration; + Long scheduleId = null; + boolean showNewScheduleForm = false; + for (Map.Entry entry : config.entrySet()) { + if (entry.getKey().contains("New/")) { + showNewScheduleForm = true; + } + switch (entry.getKey()) { + case "schedule": + case "New/schedule": + scheduleId = Long.parseLong(entry.getValue()); + schedulerTable.select(scheduleId); + changeURI(scheduleId); + showDebugEventHandler(scheduleId); + break; + case "page": + case "New/page": + pageNumber = Integer.parseInt(entry.getValue()); + break; + case "pipeline": + case "New/pipeline": + pipelineId = Long.parseLong(entry.getValue()); + Pipeline pipeline = pipelineFacade.getPipeline(pipelineId); + List pipelineSchedules = scheduleFacade.getSchedulesFor(pipeline); + schedulerTable.removeAllItems(); + tableData = getTableData(pipelineSchedules); + schedulerTable.setContainerDataSource(tableData); + schedulerTable.setCurrentPage(pageNumber); + schedulerTable.setVisibleColumns((Object[]) visibleCols); + schedulerTable.setFilterFieldVisible("commands", false); + schedulerTable.setFilterFieldVisible("duration", false); + LOG.debug("Scheduler refreshed."); + refreshManager.triggerRefresh(); + break; + default: + schedulerTable.setFilterFieldValue(entry.getKey(), entry.getValue()); + break; + } + } + if (showNewScheduleForm) { + showSchedulePipeline(null, pipelineId); + showNewScheduleForm = false; + } + pageNumber = scheduleId == null ? pageNumber : getExecPage(scheduleId); + if (pageNumber != 0) { + //Page number is set as last, because filtering automatically moves table to first page. + schedulerTable.setCurrentPage(pageNumber); + } + } + } + + public int getExecPage(Long scheduleId) { + Iterator it = schedulerTable.getItemIds().iterator(); + int index = 0; + while (it.hasNext()) { + Long id = ((Integer) it.next()).longValue(); + if (id.equals(scheduleId)) { + return (index / schedulerTable.getPageLength()) + 1; // pages are from 1 + } + index++; + } + return 0; + } + + public void showDebugEventHandler(long scheduleId) { + if (!schedulerTable.getItemIds().contains((new Long(scheduleId)).intValue())) { + return; + } + Schedule schedule = scheduleFacade.getSchedule(scheduleId); + if (schedule == null) { + Notification.show(Messages.getString("Scheduler.0", scheduleId), Notification.Type.ERROR_MESSAGE); + return; + } + showSchedulePipeline(scheduleId, null); + } + + public void pageChangedHandler(Integer newPageNumber) { + String uriFragment = Page.getCurrent().getUriFragment(); + ParametersHandler handler = new ParametersHandler(uriFragment); + handler.addParameter("page", newPageNumber.toString()); + ((AppEntry) UI.getCurrent()).setUriFragment(handler.getUriFragment(), false); + } + } diff --git a/frontend/src/main/resources/frontend-messages.properties b/frontend/src/main/resources/frontend-messages.properties index b6a5d0a3f1..18978a0309 100644 --- a/frontend/src/main/resources/frontend-messages.properties +++ b/frontend/src/main/resources/frontend-messages.properties @@ -1,25 +1,25 @@ #Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) # Example of English language bundle. Used as default. -AppEntry.confirmDialog.cancel = Cancel -AppEntry.confirmDialog.discard = Discard changes -AppEntry.confirmDialog.name = Unsaved changes -AppEntry.confirmDialog.save = Save -AppEntry.confirmDialog.text = There are unsaved changes.\nDo you wish to save them or discard? -AppEntry.database.error = Cannot connect to database! -AppEntry.database.error.description = Please make sure that the database is running and properly configured. -AppEntry.permission.denied = Permission denied +AppEntry.confirmDialog.cancel = Cancel +AppEntry.confirmDialog.discard = Discard changes +AppEntry.confirmDialog.name = Unsaved changes +AppEntry.confirmDialog.save = Save +AppEntry.confirmDialog.text = There are unsaved changes.\nDo you wish to save them or discard? +AppEntry.database.error = Cannot connect to database! +AppEntry.database.error.description = Please make sure that the database is running and properly configured. +AppEntry.permission.denied = Permission denied AppEntry.permission.denied.description = You don't have sufficient permissions to execute this operation -AppEntry.unexpected.error = Unexpected error occured. -AppEntry.unexpected.error.description = Please reload the application. +AppEntry.unexpected.error = Unexpected error occured. +AppEntry.unexpected.error.description = Please reload the application. -AuthenticationService.token.expired = Remember-me token has expired. +AuthenticationService.token.expired = Remember-me token has expired. AuthenticationService.token.hash.invalid = Invalid authentication token hash. -AuthenticationService.token.invalid = Invalid token provided! -AuthenticationService.user.not.found = User ''{0}'' could not be found when trying remember-me authentication. -AuthenticationService.validation.error = Could not validate hash for given remember-me token. +AuthenticationService.token.invalid = Invalid token provided! +AuthenticationService.user.not.found = User ''{0}'' could not be found when trying remember-me authentication. +AuthenticationService.validation.error = Could not validate hash for given remember-me token. -BindingSetItem.add.exception = Not supported for BindingSetItem. +BindingSetItem.add.exception = Not supported for BindingSetItem. BindingSetItem.remove.exception = Not supported for BindingSetItem. ClassNavigatorImpl.no.address = There is no address for presenter: @@ -28,177 +28,177 @@ ConfigurationDialogValidator.exception = Failed to load dialog for exception: DPUConfigHolder.configuration = This DPU does not provide configuration component. -DPUCreate.cancel = Cancel -DPUCreate.close = Close -DPUCreate.create = DPU Template Creation -DPUCreate.create.description = It creates DPU templates from DPUs inside ZIP -DPUCreate.create.description2 = \ file using DPU template name from DPU defined by DPU developer. -DPUCreate.create.description3 = \ DPU template name can be later changed. -DPUCreate.create.failed = Failed to create DPU -DPUCreate.description = Description -DPUCreate.file.choose = Choose file -DPUCreate.jars.empty = There is no jars in file: -DPUCreate.load.failed = Problem with loading file: -DPUCreate.load.failed.list = Problem with loading dpu template list file -DPUCreate.name = Name -DPUCreate.name.filled = Name must be filled! -DPUCreate.prompt = -DPUCreate.result.log = Result log -DPUCreate.save = Save -DPUCreate.save.failed = Failed to save DPURecord +DPUCreate.cancel = Cancel +DPUCreate.close = Close +DPUCreate.create = DPU Template Creation +DPUCreate.create.description = It creates DPU templates from DPUs inside ZIP +DPUCreate.create.description2 = \ file using DPU template name from DPU defined by DPU developer. +DPUCreate.create.description3 = \ DPU template name can be later changed. +DPUCreate.create.failed = Failed to create DPU +DPUCreate.description = Description +DPUCreate.file.choose = Choose file +DPUCreate.jars.empty = There is no jars in file: +DPUCreate.load.failed = Problem with loading file: +DPUCreate.load.failed.list = Problem with loading dpu template list file +DPUCreate.name = Name +DPUCreate.name.filled = Name must be filled! +DPUCreate.prompt = +DPUCreate.result.log = Result log +DPUCreate.save = Save +DPUCreate.save.failed = Failed to save DPURecord DPUCreate.save.failed.description = Mandatory fields should be filled -DPUCreate.save.jar = Save -DPUCreate.select.jar = Select .jar file -DPUCreate.select.zip = Select .zip file -DPUCreate.selected.file = Selected file is not .{0} file -DPUCreate.temp.dir.fail = Failed to get temp directory. -DPUCreate.upload = Upload file must be filled! -DPUCreate.visibility = Visibility - -DPUDetail.cancel = Cancel +DPUCreate.save.jar = Save +DPUCreate.select.jar = Select .jar file +DPUCreate.select.zip = Select .zip file +DPUCreate.selected.file = Selected file is not .{0} file +DPUCreate.temp.dir.fail = Failed to get temp directory. +DPUCreate.upload = Upload file must be filled! +DPUCreate.visibility = Visibility + +DPUDetail.cancel = Cancel DPUDetail.configuration.loadFail.dialog = Failed to load configuration dialog. -DPUDetail.configuration.problem = Configuration problem -DPUDetail.configuration.store.fail = Method for storing configuration threw exception: -DPUDetail.copy = Copy from template -DPUDetail.detail = {0} detail{1} -DPUDetail.dpu.loadFail.dialog = Failed to load DPU, -DPUDetail.exception.message = Exception: {0}, Message: {1} -DPUDetail.missing.jar = Missing DPU jar file. -DPUDetail.query.validator = Query Validator -DPUDetail.query.validator.description = Validation of {0}. query failed: {1} -DPUDetail.read-only.mode = \ - Read only mode -DPUDetail.save = Save -DPUDetail.save.fail.dialog = Failed to save configuration. Reason: -DPUDetail.saveAs = Save as DPU template -DPUDetail.saveAs.dialog = Save as new DPU template? - -DPUGeneralDetail.custom.description = Use custom description -DPUGeneralDetail.description = Description -DPUGeneralDetail.dpu.filled = DPU name must be filled! -DPUGeneralDetail.dpu.saving.error = Error saving DPU configuration. Reason: -DPUGeneralDetail.name = Name -DPUGeneralDetail.parent = Parent -DPUGeneralDetail.parent.not.set = no parent is set! +DPUDetail.configuration.problem = Configuration problem +DPUDetail.configuration.store.fail = Method for storing configuration threw exception: +DPUDetail.copy = Copy from template +DPUDetail.detail = {0} detail{1} +DPUDetail.dpu.loadFail.dialog = Failed to load DPU, +DPUDetail.exception.message = Exception: {0}, Message: {1} +DPUDetail.missing.jar = Missing DPU jar file. +DPUDetail.query.validator = Query Validator +DPUDetail.query.validator.description = Validation of {0}. query failed: {1} +DPUDetail.read-only.mode = \ - Read only mode +DPUDetail.save = Save +DPUDetail.save.fail.dialog = Failed to save configuration. Reason: +DPUDetail.saveAs = Save as DPU template +DPUDetail.saveAs.dialog = Save as new DPU template? + +DPUGeneralDetail.custom.description = Use custom description +DPUGeneralDetail.description = Description +DPUGeneralDetail.dpu.filled = DPU name must be filled! +DPUGeneralDetail.dpu.saving.error = Error saving DPU configuration. Reason: +DPUGeneralDetail.name = Name +DPUGeneralDetail.parent = Parent +DPUGeneralDetail.parent.not.set = no parent is set! DPUGeneralDetail.template.configuration = Use template configuration -DPUPresenterImpl.cannot.remove.dpu = DPURecord can not be removed because it has child elements -DPUPresenterImpl.configuration.save.failed = The configuration have not been saved. -DPUPresenterImpl.copy.of = Copy of -DPUPresenterImpl.delete.dialog = Would you really like to delete the "{0}" pipeline and all associated records (DPU instances e.g.)? -DPUPresenterImpl.delete.dialog.confirmation = Confirmation of deleting pipeline +DPUPresenterImpl.cannot.remove.dpu = DPURecord can not be removed because it has child elements +DPUPresenterImpl.configuration.save.failed = The configuration have not been saved. +DPUPresenterImpl.copy.of = Copy of +DPUPresenterImpl.delete.dialog = Would you really like to delete the "{0}" pipeline and all associated records (DPU instances e.g.)? +DPUPresenterImpl.delete.dialog.confirmation = Confirmation of deleting pipeline DPUPresenterImpl.delete.dialog.confirmation.cancel = Cancel DPUPresenterImpl.delete.dialog.confirmation.delete = Delete pipeline -DPUPresenterImpl.dpu.not.removed = DPURecord can not be removed because it has been used in Pipeline: -DPUPresenterImpl.dpu.removed = DPURecord was removed -DPUPresenterImpl.dpu.used = DPURecord can not be removed because it is being used in pipelines: -DPUPresenterImpl.dpurecord.saved = DPURecord was saved -DPUPresenterImpl.not.supported = Not supported yet. -DPUPresenterImpl.pipeline.running = Pipeline {0} has current(QUEUED or RUNNING) execution(s) and cannot be deleted now! -DPUPresenterImpl.replace.failed = Failed to replace DPU -DPUPresenterImpl.replace.finished = Replace finished -DPUPresenterImpl.unExpected.error = Unexpected error. The configuration may have not been saved. -DPUPresenterImpl.unsaved.changes = Unsaved changes -DPUPresenterImpl.unsaved.changes.cancel = Cancel -DPUPresenterImpl.unsaved.changes.dialog = There are unsaved changes.\nDo you wish to save them or discard? -DPUPresenterImpl.unsaved.changes.discard = Discard changes -DPUPresenterImpl.unsaved.changes.save = Save +DPUPresenterImpl.dpu.not.removed = DPURecord can not be removed because it has been used in Pipeline: +DPUPresenterImpl.dpu.removed = DPURecord was removed +DPUPresenterImpl.dpu.used = DPURecord can not be removed because it is being used in pipelines: +DPUPresenterImpl.dpurecord.saved = DPURecord was saved +DPUPresenterImpl.not.supported = Not supported yet. +DPUPresenterImpl.pipeline.running = Pipeline {0} has current(QUEUED or RUNNING) execution(s) and cannot be deleted now! +DPUPresenterImpl.replace.failed = Failed to replace DPU +DPUPresenterImpl.replace.finished = Replace finished +DPUPresenterImpl.unExpected.error = Unexpected error. The configuration may have not been saved. +DPUPresenterImpl.unsaved.changes = Unsaved changes +DPUPresenterImpl.unsaved.changes.cancel = Cancel +DPUPresenterImpl.unsaved.changes.dialog = There are unsaved changes.\nDo you wish to save them or discard? +DPUPresenterImpl.unsaved.changes.discard = Discard changes +DPUPresenterImpl.unsaved.changes.save = Save DPURecordWrap.configure = Failed to configure dpu's dialog. DPURecordWrap.exception = Configuration dialog throws an exception. DPURecordWrap.load = Failed to load dialog. DPURecordWrap.save = Failed to save configuration. -DPUTemplateDetail.description.jar = Description of JAR: -DPUTemplateDetail.jar.error = Selected file is not .jar file -DPUTemplateDetail.path.jar = JAR path: -DPUTemplateDetail.replace = Replace +DPUTemplateDetail.description.jar = Description of JAR: +DPUTemplateDetail.jar.error = Selected file is not .jar file +DPUTemplateDetail.path.jar = JAR path: +DPUTemplateDetail.replace = Replace DPUTemplateDetail.uploading.failed = Uploading {0} failed. -DPUTemplateDetail.visibility = Visibility: +DPUTemplateDetail.visibility = Visibility: -DPUTemplatesExport.cancel = Cancel -DPUTemplatesExport.checkAll = Check All -DPUTemplatesExport.dpu.templates = DPU templates -DPUTemplatesExport.export = Export -DPUTemplatesExport.export.fail = Failed to export templates. +DPUTemplatesExport.cancel = Cancel +DPUTemplatesExport.checkAll = Check All +DPUTemplatesExport.dpu.templates = DPU templates +DPUTemplatesExport.export = Export +DPUTemplatesExport.export.fail = Failed to export templates. DPUTemplatesExport.export.fail.fileNotFound = Failed to export templates. -DPUTemplatesExport.template = Template name -DPUTemplatesExport.type = Type -DPUTemplatesExport.uncheckAll = Uncheck All - -DPUTree.create.dpu = Create DPU template -DPUTree.expand.tree = Expand DPU tree -DPUTree.export.dpu = Export DPU templates -DPUTree.extractors = Extractors -DPUTree.filter.tree = Type to filter tree -DPUTree.loaders = Loaders +DPUTemplatesExport.template = Template name +DPUTemplatesExport.type = Type +DPUTemplatesExport.uncheckAll = Uncheck All + +DPUTree.create.dpu = Create DPU template +DPUTree.expand.tree = Expand DPU tree +DPUTree.export.dpu = Export DPU templates +DPUTree.extractors = Extractors +DPUTree.filter.tree = Type to filter tree +DPUTree.loaders = Loaders DPUTree.minimize.tree = Minimize DPU tree -DPUTree.private.only = Only private DPU templates -DPUTree.quality = Quality +DPUTree.private.only = Only private DPU templates +DPUTree.quality = Quality DPUTree.template.tree = DPU Templates Tree -DPUTree.transformers = Transformers -DPUTree.unknown = Unknown type: - -DPUViewImpl.actionColumn.delete = Delete -DPUViewImpl.actionColumn.detail = Detail -DPUViewImpl.actionColumn.status = Status -DPUViewImpl.configuration.problem = Configuration problem -DPUViewImpl.copy = Copy -DPUViewImpl.create.template = Create DPU template -DPUViewImpl.defaultDpuDescription = See DPU Template Configuration, About tab -DPUViewImpl.delete = Delete -DPUViewImpl.delete.confirmation = Confirmation of deleting DPU template -DPUViewImpl.delete.confirmation.cancelButton = Cancel -DPUViewImpl.delete.confirmation.deleteButton = Delete -DPUViewImpl.delete.confirmation.description = Delete {0} DPU template? -DPUViewImpl.description = Description: -DPUViewImpl.dpu.configuration.changes = DPU's configuration dialog throws when asked for changes. It is assumed to be changed. -DPUViewImpl.dpu.instances = DPU instances -DPUViewImpl.exception.configuration.fail = Failed to load configuration dialog -DPUViewImpl.export = Export -DPUViewImpl.export.all = Export All -DPUViewImpl.file.not.jar = Selected file is not .jar file -DPUViewImpl.fileNotFound = File not found +DPUTree.transformers = Transformers +DPUTree.unknown = Unknown type: + +DPUViewImpl.actionColumn.delete = Delete +DPUViewImpl.actionColumn.detail = Detail +DPUViewImpl.actionColumn.status = Status +DPUViewImpl.configuration.problem = Configuration problem +DPUViewImpl.copy = Copy +DPUViewImpl.create.template = Create DPU template +DPUViewImpl.defaultDpuDescription = See DPU Template Configuration, About tab +DPUViewImpl.delete = Delete +DPUViewImpl.delete.confirmation = Confirmation of deleting DPU template +DPUViewImpl.delete.confirmation.cancelButton = Cancel +DPUViewImpl.delete.confirmation.deleteButton = Delete +DPUViewImpl.delete.confirmation.description = Delete {0} DPU template? +DPUViewImpl.description = Description: +DPUViewImpl.dpu.configuration.changes = DPU's configuration dialog throws when asked for changes. It is assumed to be changed. +DPUViewImpl.dpu.instances = DPU instances +DPUViewImpl.exception.configuration.fail = Failed to load configuration dialog +DPUViewImpl.export = Export +DPUViewImpl.export.all = Export All +DPUViewImpl.file.not.jar = Selected file is not .jar file +DPUViewImpl.fileNotFound = File not found DPUViewImpl.fileNotFound.configuration.load.fail = Failed to load configuration dialog -DPUViewImpl.general = General -DPUViewImpl.import.template = Import DPU template -DPUViewImpl.jar.description = Description of JAR: -DPUViewImpl.jar.path = JAR path: -DPUViewImpl.name = Name: -DPUViewImpl.name.empty = Name must be filled! -DPUViewImpl.pipelines = Pipelines: -DPUViewImpl.replace = Replace -DPUViewImpl.save = Save -DPUViewImpl.select.dpu.info = Select DPU template from the DPU template tree for displaying it is details. -DPUViewImpl.template.configuration = Template Configuration -DPUViewImpl.unexpected.error = Unexpected error. The configuration dialog may not be loaded correctly. -DPUViewImpl.uploding.failed = Uploading {0} failed. -DPUViewImpl.validation.error = Error validating DPU -DPUViewImpl.visibility = Visibility: -DPUViewImpl.visibility.help.public = Please be aware that public DPU templates can be viewed and used in pipelines by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public DPU templates (e.g. user names, passwords or other private authentication credentials) +DPUViewImpl.general = General +DPUViewImpl.import.template = Import DPU template +DPUViewImpl.jar.description = Description of JAR: +DPUViewImpl.jar.path = JAR path: +DPUViewImpl.name = Name: +DPUViewImpl.name.empty = Name must be filled! +DPUViewImpl.pipelines = Pipelines: +DPUViewImpl.replace = Replace +DPUViewImpl.save = Save +DPUViewImpl.select.dpu.info = Select DPU template from the DPU template tree for displaying it is details. +DPUViewImpl.template.configuration = Template Configuration +DPUViewImpl.unexpected.error = Unexpected error. The configuration dialog may not be loaded correctly. +DPUViewImpl.uploding.failed = Uploading {0} failed. +DPUViewImpl.validation.error = Error validating DPU +DPUViewImpl.visibility = Visibility: +DPUViewImpl.visibility.help.public = Please be aware that public DPU templates can be viewed and used in pipelines by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public DPU templates (e.g. user names, passwords or other private authentication credentials) DataBrowser.browser =

DataBrowser DataUnitNamesValidator.same.dataunit = DPU contains two data units with same name (''{0}'')! -DataUnitSelector.browse = Browse +DataUnitSelector.browse = Browse DataUnitSelector.dataUnit = Select Data Unit: -DataUnitSelector.dpu = Select DPU: -DataUnitSelector.input = Input -DataUnitSelector.output = Output +DataUnitSelector.dpu = Select DPU: +DataUnitSelector.input = Input +DataUnitSelector.output = Output DbCachedSource.data.failed = Failed to load data. DbCachedSource.index.fail = Can not determine the index of non cached data. -DebuggingView.browse = Browse/Query +DebuggingView.browse = Browse/Query DebuggingView.case.browse = Browse -DebuggingView.download = Download all logs -DebuggingView.events = Events -DebuggingView.log = Log -DebuggingView.options = Options -DebuggingView.refresh = Refresh automatically -DebuggingView.status = Pipeline status: - -DecorationHelper.manual = Manual +DebuggingView.download = Download all logs +DebuggingView.events = Events +DebuggingView.log = Log +DebuggingView.options = Options +DebuggingView.refresh = Refresh automatically +DebuggingView.status = Pipeline status: + +DecorationHelper.manual = Manual DecorationHelper.shceduled = Scheduled EdgeDetail.available.mappings = Available mappings: @@ -215,63 +215,63 @@ EdgeDetail.output.dataUnits = Output data units of the source DPU: EdgeDetail.run.after = Is "run after" edge EdgeDetail.save = Save -EmailComponent.email.duplicate = duplicate e-mail +EmailComponent.email.duplicate = duplicate e-mail EmailComponent.email.not.filled = e-mail must be filled -EmailComponent.email.prompt = user@email.com -EmailComponent.email.wrong = wrong e-mail format +EmailComponent.email.prompt = user@email.com +EmailComponent.email.wrong = wrong e-mail format -EmailNotifications.bulk.report = Daily bulk report +EmailNotifications.bulk.report = Daily bulk report EmailNotifications.bulk.report.default = Daily bulk report (default) -EmailNotifications.error = Error in execution: -EmailNotifications.instant = Instant -EmailNotifications.instant.default = Instant (default) -EmailNotifications.manual = Send reports also for non-scheduled executions -EmailNotifications.no.report = No report -EmailNotifications.no.report.default = No report (default) -EmailNotifications.started = Execution started -EmailNotifications.successful = Successful execution: - -ExecutionAccessor.duration = Duration -ExecutionAccessor.id = Id +EmailNotifications.error = Error in execution: +EmailNotifications.instant = Instant +EmailNotifications.instant.default = Instant (default) +EmailNotifications.manual = Send reports also for non-scheduled executions +EmailNotifications.no.report = No report +EmailNotifications.no.report.default = No report (default) +EmailNotifications.started = Execution started +EmailNotifications.successful = Successful execution: + +ExecutionAccessor.duration = Duration +ExecutionAccessor.id = Id ExecutionAccessor.isDebugging = Debug -ExecutionAccessor.lastChange = Last modification -ExecutionAccessor.owner = Executed by -ExecutionAccessor.pipeline = Pipeline -ExecutionAccessor.schedule = Sch. -ExecutionAccessor.started = Started -ExecutionAccessor.status = Status +ExecutionAccessor.lastChange = Last modification +ExecutionAccessor.owner = Executed by +ExecutionAccessor.pipeline = Pipeline +ExecutionAccessor.schedule = Sch. +ExecutionAccessor.started = Started +ExecutionAccessor.status = Status ExecutionListPresenterImpl.error = Execution with ID={0} does not exist! -ExecutionListViewImpl.FALSE = FALSE -ExecutionListViewImpl.TRUE = TRUE -ExecutionListViewImpl.actions = Actions +ExecutionListViewImpl.FALSE = FALSE +ExecutionListViewImpl.TRUE = TRUE +ExecutionListViewImpl.actions = Actions ExecutionListViewImpl.back.to.exexution = Back to Execution Monitor -ExecutionListViewImpl.cancel = Cancel -ExecutionListViewImpl.clear.filters = Clear Filters -ExecutionListViewImpl.clear.sort = Clear Sort -ExecutionListViewImpl.debug = Debug -ExecutionListViewImpl.debug.data = Debug data -ExecutionListViewImpl.debug.pipeline = Debug pipeline -ExecutionListViewImpl.detail = Detail -ExecutionListViewImpl.inDebug.false = False -ExecutionListViewImpl.inDebug.true = True -ExecutionListViewImpl.manual = Manual -ExecutionListViewImpl.refresh = Refresh -ExecutionListViewImpl.run = Run -ExecutionListViewImpl.run.pipeline = Run pipeline -ExecutionListViewImpl.scheduled = Scheduled -ExecutionListViewImpl.show.log = Show log - -ExecutionViewAccessor.duration = Duration -ExecutionViewAccessor.id = Id +ExecutionListViewImpl.cancel = Cancel +ExecutionListViewImpl.clear.filters = Clear Filters +ExecutionListViewImpl.clear.sort = Clear Sort +ExecutionListViewImpl.debug = Debug +ExecutionListViewImpl.debug.data = Debug data +ExecutionListViewImpl.debug.pipeline = Debug pipeline +ExecutionListViewImpl.detail = Detail +ExecutionListViewImpl.inDebug.false = False +ExecutionListViewImpl.inDebug.true = True +ExecutionListViewImpl.manual = Manual +ExecutionListViewImpl.refresh = Refresh +ExecutionListViewImpl.run = Run +ExecutionListViewImpl.run.pipeline = Run pipeline +ExecutionListViewImpl.scheduled = Scheduled +ExecutionListViewImpl.show.log = Show log + +ExecutionViewAccessor.duration = Duration +ExecutionViewAccessor.id = Id ExecutionViewAccessor.isDebugging = Debug -ExecutionViewAccessor.lastChange = Last modification -ExecutionViewAccessor.owner = Executed by -ExecutionViewAccessor.pipeline = Pipeline -ExecutionViewAccessor.schedule = Sch. -ExecutionViewAccessor.started = Started -ExecutionViewAccessor.status = Status +ExecutionViewAccessor.lastChange = Last modification +ExecutionViewAccessor.owner = Executed by +ExecutionViewAccessor.pipeline = Pipeline +ExecutionViewAccessor.schedule = Sch. +ExecutionViewAccessor.started = Started +ExecutionViewAccessor.status = Status FileQueryView.browser.not.available =  Browser is not available. @@ -290,61 +290,61 @@ IntlibFilterDecorator.set = Set IntlibFilterDecorator.to = To IntlibFilterDecorator.true = True -IntlibPagedTable.page = Page: +IntlibPagedTable.page = Page: IntlibPagedTable.records = Number of Records: -LogMessageDetail.close = Close -LogMessageDetail.level = Level: +LogMessageDetail.close = Close +LogMessageDetail.level = Level: LogMessageDetail.log.message = Log message detail -LogMessageDetail.message = Message: -LogMessageDetail.source = Source: -LogMessageDetail.time = Time: +LogMessageDetail.message = Message: +LogMessageDetail.source = Source: +LogMessageDetail.time = Time: -Login.admin.contact = For account creation, please contact admin at: {0}. -Login.database.error = Database error, check connection and configuration. +Login.admin.contact = For account creation, please contact admin at: {0}. +Login.database.error = Database error, check connection and configuration. Login.invalid.credentials = Invalid credentials for username {0}. -Login.login =

Login

-Login.login.button = Login -Login.password = Password: -Login.rememberMe = Remember me -Login.user = User: +Login.login =

Login

+Login.login.button = Login +Login.password = Password: +Login.rememberMe = Remember me +Login.user = User: MaxLengthValidator.exception = Max length is {0} characters! Current length is {1} characters! -MenuLayout.backend.offline = Backend is offline! +MenuLayout.backend.offline = Backend is offline! # Other -MenuLayout.backend.online = Backend is online! -MenuLayout.dpuTemplates = DPU Templates +MenuLayout.backend.online = Backend is online! +MenuLayout.dpuTemplates = DPU Templates MenuLayout.executionMonitor = Execution Monitor -MenuLayout.home = Home -MenuLayout.icon.logout = Log out -MenuLayout.logout = Logout -MenuLayout.pipelines = Pipelines -MenuLayout.scheduler = Scheduler -MenuLayout.settings = Settings - -MessageRecordAccessor.dpu = DPU Instance -MessageRecordAccessor.short = Short message +MenuLayout.home = Home +MenuLayout.icon.logout = Log out +MenuLayout.logout = Logout +MenuLayout.pipelines = Pipelines +MenuLayout.scheduler = Scheduler +MenuLayout.settings = Settings + +MessageRecordAccessor.dpu = DPU Instance +MessageRecordAccessor.short = Short message MessageRecordAccessor.timestamp = Timestamp -MessageRecordAccessor.type = type +MessageRecordAccessor.type = type -NamespacePrefixes.actions = Actions -NamespacePrefixes.delete = Delete -NamespacePrefixes.dialog.cancel = Cancel -NamespacePrefixes.dialog.delete = Delete +NamespacePrefixes.actions = Actions +NamespacePrefixes.delete = Delete +NamespacePrefixes.dialog.cancel = Cancel +NamespacePrefixes.dialog.delete = Delete NamespacePrefixes.dialog.delete.prefix = Confirmation of deleting prefix -NamespacePrefixes.dialog.description = Delete the {0} prefix? -NamespacePrefixes.edit = Edit -NamespacePrefixes.filters.clear = Clear Filters -NamespacePrefixes.id = ID -NamespacePrefixes.prefix.URI = Prefix URI -NamespacePrefixes.prefix.name = Prefix name -NamespacePrefixes.prefix.new = Create new prefix - -NewLogAccessor.dpu = DPU Instance -NewLogAccessor.message = Message +NamespacePrefixes.dialog.description = Delete the {0} prefix? +NamespacePrefixes.edit = Edit +NamespacePrefixes.filters.clear = Clear Filters +NamespacePrefixes.id = ID +NamespacePrefixes.prefix.URI = Prefix URI +NamespacePrefixes.prefix.name = Prefix name +NamespacePrefixes.prefix.new = Create new prefix + +NewLogAccessor.dpu = DPU Instance +NewLogAccessor.message = Message NewLogAccessor.timestamp = Timestamp -NewLogAccessor.type = Type +NewLogAccessor.type = Type # Enumeration PRIVATE = Private @@ -353,435 +353,435 @@ PUBLIC_RO = Public (ReadOnly) PUBLIC_RW = Public -PipelineAccessor.id = Id +PipelineAccessor.id = Id PipelineAccessor.lastExecution = Last execution time -PipelineAccessor.lastRun = Last run time -PipelineAccessor.lastStatus = Last status -PipelineAccessor.name = Name - -PipelineCanvas.edge.failed = Adding edge failed -PipelineCanvas.edge.from = Edge from {0} to {1}: {2}.\n -PipelineCanvas.invalid.mappings = Invalid mappings found! -PipelineCanvas.mandatory.missing = Mandatory input/output(s) missing! -PipelineCanvas.pipeline.invalid = Pipeline contained invalid mapping(s). They were removed. List of removed mappings:\n +PipelineAccessor.lastRun = Last run time +PipelineAccessor.lastStatus = Last status +PipelineAccessor.name = Name + +PipelineCanvas.edge.failed = Adding edge failed +PipelineCanvas.edge.from = Edge from {0} to {1}: {2}.\n +PipelineCanvas.invalid.mappings = Invalid mappings found! +PipelineCanvas.mandatory.missing = Mandatory input/output(s) missing! +PipelineCanvas.pipeline.invalid = Pipeline contained invalid mapping(s). They were removed. List of removed mappings:\n PipelineCanvas.pipeline.invalid.blank.pipeline = Pipeline has no DPUs -PipelineCanvas.pipeline.valid = Pipeline is valid! +PipelineCanvas.pipeline.valid = Pipeline is valid! -PipelineConflicts.cancel = Cancel -PipelineConflicts.clear.conflicts = Clear Conflicts +PipelineConflicts.cancel = Cancel +PipelineConflicts.clear.conflicts = Clear Conflicts PipelineConflicts.conflicting.pipelines = Conflict pipelines -PipelineConflicts.description = Pipelines which this pipeline depends on can be chosen here. Then this pipeline will be run only if none of the chosen pipelines run, or if all the chosen pipelines have ended. -PipelineConflicts.ok = OK -PipelineConflicts.pipeline.conflicts = Pipeline Conflicts -PipelineConflicts.pipeline.list = Pipeline list - -PipelineEdit.align.bottom = Align bottom -PipelineEdit.align.left = Align left -PipelineEdit.align.right = Align right -PipelineEdit.align.top = Align top -PipelineEdit.close = Close -PipelineEdit.conflict.another.user = Another user made changes to the version you are editing, please refresh the pipeline detail! -PipelineEdit.conflicts = Conflicts -PipelineEdit.copy = Copy -PipelineEdit.copy.and.close = Copy & Close -PipelineEdit.copy.notActual = Copying not actual pipeline version. -PipelineEdit.copy.notActual.cancel = Cancel -PipelineEdit.copy.notActual.copyAnyway = Copy anyway -PipelineEdit.copy.notActual.description = You are copying not actual version of this pipeline. Not actual means that some other user did some changes to the pipeline. Copying will copy the current not actual version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. Copied pipeline will be opened. -PipelineEdit.copy.unsaved = Copying unsaved pipeline version. -PipelineEdit.copy.unsaved.cancel = Cancel -PipelineEdit.copy.unsaved.copyAnyway = Copy anyway -PipelineEdit.copy.unsaved.description = You are copying unsaved version of this pipeline. Copying will copy the current unsaved version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. Copied pipeline will be opened. -PipelineEdit.copyClose.notActual = Copying not actual pipeline version. -PipelineEdit.copyClose.notActual.cancel = Cancel -PipelineEdit.copyClose.notActual.copyAnyway = Copy anyway -PipelineEdit.copyClose.notActual.description = You are copying not actual version of this pipeline. Not actual means that some other user did some changes to the pipeline. Copying will copy the current not actual version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. -PipelineEdit.copyClose.unsaved = Copying unsaved pipeline version. -PipelineEdit.copyClose.unsaved.cancel = Cancel -PipelineEdit.copyClose.unsaved.copyAnyway = Copy anyway -PipelineEdit.copyClose.unsaved.description = You are copying unsaved version of this pipeline. Copying will copy the current unsaved version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. -PipelineEdit.created.by = Created by -PipelineEdit.debug.window = Debug window -PipelineEdit.description = Description -PipelineEdit.developMode.caption.develop = Develop -PipelineEdit.developMode.caption.standard = Standard -PipelineEdit.distribute.horizontally = Distribute horizontally -PipelineEdit.distribute.vertically = Distribute vertically -PipelineEdit.exapand = Expand pipeline detail -PipelineEdit.export = Export -PipelineEdit.export.fail.not.saved = Pipeline was not saved yet. Save it and try again. -PipelineEdit.icon.align.bottom = Align bottom -PipelineEdit.icon.align.left = Align left -PipelineEdit.icon.align.right = Align right -PipelineEdit.icon.align.top = Align top -PipelineEdit.icon.distribute.horizontally = Distribute horizontally -PipelineEdit.icon.distribute.vertically = Distribute vertically -PipelineEdit.icon.undo = Undo -PipelineEdit.icon.zoomIn = Zoom in -PipelineEdit.icon.zoomOut = Zoom out -PipelineEdit.idLabel.id = ID -PipelineEdit.idValue.id = ID -PipelineEdit.minimize = Minimize pipeline detail -PipelineEdit.name = Name -PipelineEdit.name.empty = Name must be filled! -PipelineEdit.opening.error = Error opening pipeline detail. -PipelineEdit.opening.error.description = You do not have permission to view this pipeline -PipelineEdit.opening.error.notExisting = Error opening pipeline detail. +PipelineConflicts.description = Pipelines which this pipeline depends on can be chosen here. Then this pipeline will be run only if none of the chosen pipelines run, or if all the chosen pipelines have ended. +PipelineConflicts.ok = OK +PipelineConflicts.pipeline.conflicts = Pipeline Conflicts +PipelineConflicts.pipeline.list = Pipeline list + +PipelineEdit.align.bottom = Align bottom +PipelineEdit.align.left = Align left +PipelineEdit.align.right = Align right +PipelineEdit.align.top = Align top +PipelineEdit.close = Close +PipelineEdit.conflict.another.user = Another user made changes to the version you are editing, please refresh the pipeline detail! +PipelineEdit.conflicts = Conflicts +PipelineEdit.copy = Copy +PipelineEdit.copy.and.close = Copy & Close +PipelineEdit.copy.notActual = Copying not actual pipeline version. +PipelineEdit.copy.notActual.cancel = Cancel +PipelineEdit.copy.notActual.copyAnyway = Copy anyway +PipelineEdit.copy.notActual.description = You are copying not actual version of this pipeline. Not actual means that some other user did some changes to the pipeline. Copying will copy the current not actual version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. Copied pipeline will be opened. +PipelineEdit.copy.unsaved = Copying unsaved pipeline version. +PipelineEdit.copy.unsaved.cancel = Cancel +PipelineEdit.copy.unsaved.copyAnyway = Copy anyway +PipelineEdit.copy.unsaved.description = You are copying unsaved version of this pipeline. Copying will copy the current unsaved version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. Copied pipeline will be opened. +PipelineEdit.copyClose.notActual = Copying not actual pipeline version. +PipelineEdit.copyClose.notActual.cancel = Cancel +PipelineEdit.copyClose.notActual.copyAnyway = Copy anyway +PipelineEdit.copyClose.notActual.description = You are copying not actual version of this pipeline. Not actual means that some other user did some changes to the pipeline. Copying will copy the current not actual version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. +PipelineEdit.copyClose.unsaved = Copying unsaved pipeline version. +PipelineEdit.copyClose.unsaved.cancel = Cancel +PipelineEdit.copyClose.unsaved.copyAnyway = Copy anyway +PipelineEdit.copyClose.unsaved.description = You are copying unsaved version of this pipeline. Copying will copy the current unsaved version of this pipeline to a new pipeline; this pipeline remains unchanged and is closed. +PipelineEdit.created.by = Created by +PipelineEdit.debug.window = Debug window +PipelineEdit.description = Description +PipelineEdit.developMode.caption.develop = Develop +PipelineEdit.developMode.caption.standard = Standard +PipelineEdit.distribute.horizontally = Distribute horizontally +PipelineEdit.distribute.vertically = Distribute vertically +PipelineEdit.exapand = Expand pipeline detail +PipelineEdit.export = Export +PipelineEdit.export.fail.not.saved = Pipeline was not saved yet. Save it and try again. +PipelineEdit.icon.align.bottom = Align bottom +PipelineEdit.icon.align.left = Align left +PipelineEdit.icon.align.right = Align right +PipelineEdit.icon.align.top = Align top +PipelineEdit.icon.distribute.horizontally = Distribute horizontally +PipelineEdit.icon.distribute.vertically = Distribute vertically +PipelineEdit.icon.undo = Undo +PipelineEdit.icon.zoomIn = Zoom in +PipelineEdit.icon.zoomOut = Zoom out +PipelineEdit.idLabel.id = ID +PipelineEdit.idValue.id = ID +PipelineEdit.minimize = Minimize pipeline detail +PipelineEdit.name = Name +PipelineEdit.name.empty = Name must be filled! +PipelineEdit.opening.error = Error opening pipeline detail. +PipelineEdit.opening.error.description = You do not have permission to view this pipeline +PipelineEdit.opening.error.notExisting = Error opening pipeline detail. PipelineEdit.opening.error.notExisting.description = Pipeline does not exist. -PipelineEdit.pipeline.detail =

Pipeline detail: ''{0}''

-PipelineEdit.pipeline.duplicate = Pipeline with same name already exists in the system. -PipelineEdit.pipeline.error.saving = Error saving pipeline -PipelineEdit.pipeline.insert = Insert pipeline name -PipelineEdit.pipeline.insert.description = Insert pipeline description -PipelineEdit.pipeline.overwrite = Overwriting pipeline -PipelineEdit.pipeline.overwrite.cancel = Cancel -PipelineEdit.pipeline.overwrite.description = You are editing version, which is not actual. If saved, changes made by other user will be overwritten. -PipelineEdit.pipeline.overwrite.saveAnyway = Save anyway -PipelineEdit.pipeline.save.public = Saving public pipeline -PipelineEdit.pipeline.save.public.cancel = Cancel -PipelineEdit.pipeline.save.public.description = Saving pipeline as public will cause all DPU templates, the pipeline is using, to become public. When they become public, they cannot be reverted to private. -PipelineEdit.pipeline.save.public.save = Save -PipelineEdit.read-only.mode = Pipeline is open in read-only mode -PipelineEdit.refresh = Refresh -PipelineEdit.rerun = Rerun -PipelineEdit.revert = Revert to last commit -PipelineEdit.save = Save -PipelineEdit.save.and.close = Save & Close -PipelineEdit.save.and.commit = Save & Commit -PipelineEdit.save.close.debug = Save & Close & Debug -PipelineEdit.save.successfull = Pipeline saved successfully! -PipelineEdit.setMode.isDevelop.develop = Develop -PipelineEdit.setMode.isDevelop.standard = Standard -PipelineEdit.setMode.isStandard.develop = Develop -PipelineEdit.setMode.isStandard.standard = Standard -PipelineEdit.standardMode.caption.develop = Develop -PipelineEdit.standardMode.caption.standard = Standard -PipelineEdit.tab.develop = Develop -PipelineEdit.tab.standard = Standard -PipelineEdit.under.construction = Under construction -PipelineEdit.undo = Undo -PipelineEdit.user.browsing = User {0} is also browsing this pipeline. -PipelineEdit.users.browsing = Users {0} are also browsing this pipeline. -PipelineEdit.validate = Validate -PipelineEdit.visibility = Visibility -PipelineEdit.visibility.help.public = Please be aware that public pipelines can be viewed and copied by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public pipelines (e.g. user names, passwords, or other private authentication credentials) -PipelineEdit.visibility.help.public.rw = Please be aware that public pipelines can be viewed and copied and even modified or run (if not ReadOnly) by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public pipelines (e.g. user names, passwords, or other private authentication credentials) -PipelineEdit.zoomIn = Zoom In -PipelineEdit.zoomOut = Zoom out - -PipelineExport.close = Close -PipelineExport.dpu.export = Export DPU data -PipelineExport.dpu.jarName = DPU jar's name -PipelineExport.dpu.template = DPU template -PipelineExport.dpu.version = Version -PipelineExport.dpus.used = Used DPUs: -PipelineExport.export = Export -PipelineExport.export.fail = Failed to export pipeline. -PipelineExport.export.fail2 = Failed to export pipeline. -PipelineExport.jar.export = Export DPUs JARs +PipelineEdit.pipeline.detail =

Pipeline detail: ''{0}''

+PipelineEdit.pipeline.duplicate = Pipeline with same name already exists in the system. +PipelineEdit.pipeline.error.saving = Error saving pipeline +PipelineEdit.pipeline.insert = Insert pipeline name +PipelineEdit.pipeline.insert.description = Insert pipeline description +PipelineEdit.pipeline.overwrite = Overwriting pipeline +PipelineEdit.pipeline.overwrite.cancel = Cancel +PipelineEdit.pipeline.overwrite.description = You are editing version, which is not actual. If saved, changes made by other user will be overwritten. +PipelineEdit.pipeline.overwrite.saveAnyway = Save anyway +PipelineEdit.pipeline.save.public = Saving public pipeline +PipelineEdit.pipeline.save.public.cancel = Cancel +PipelineEdit.pipeline.save.public.description = Saving pipeline as public will cause all DPU templates, the pipeline is using, to become public. When they become public, they cannot be reverted to private. +PipelineEdit.pipeline.save.public.save = Save +PipelineEdit.read-only.mode = Pipeline is open in read-only mode +PipelineEdit.refresh = Refresh +PipelineEdit.rerun = Rerun +PipelineEdit.revert = Revert to last commit +PipelineEdit.save = Save +PipelineEdit.save.and.close = Save & Close +PipelineEdit.save.and.commit = Save & Commit +PipelineEdit.save.close.debug = Save & Close & Debug +PipelineEdit.save.successfull = Pipeline saved successfully! +PipelineEdit.setMode.isDevelop.develop = Develop +PipelineEdit.setMode.isDevelop.standard = Standard +PipelineEdit.setMode.isStandard.develop = Develop +PipelineEdit.setMode.isStandard.standard = Standard +PipelineEdit.standardMode.caption.develop = Develop +PipelineEdit.standardMode.caption.standard = Standard +PipelineEdit.tab.develop = Develop +PipelineEdit.tab.standard = Standard +PipelineEdit.under.construction = Under construction +PipelineEdit.undo = Undo +PipelineEdit.user.browsing = User {0} is also browsing this pipeline. +PipelineEdit.users.browsing = Users {0} are also browsing this pipeline. +PipelineEdit.validate = Validate +PipelineEdit.visibility = Visibility +PipelineEdit.visibility.help.public = Please be aware that public pipelines can be viewed and copied by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public pipelines (e.g. user names, passwords, or other private authentication credentials) +PipelineEdit.visibility.help.public.rw = Please be aware that public pipelines can be viewed and copied and even modified or run (if not ReadOnly) by any UnifiedViews user. Therefore please be very careful not to put any confidential information into public pipelines (e.g. user names, passwords, or other private authentication credentials) +PipelineEdit.zoomIn = Zoom In +PipelineEdit.zoomOut = Zoom out + +PipelineExport.close = Close +PipelineExport.dpu.export = Export DPU data +PipelineExport.dpu.jarName = DPU jar's name +PipelineExport.dpu.template = DPU template +PipelineExport.dpu.version = Version +PipelineExport.dpus.used = Used DPUs: +PipelineExport.export = Export +PipelineExport.export.fail = Failed to export pipeline. +PipelineExport.export.fail2 = Failed to export pipeline. +PipelineExport.jar.export = Export DPUs JARs PipelineExport.pipeline.export = Pipeline export PipelineExport.schedule.export = Export pipeline's schedule -PipelineHelper.backend.offline.dialog.cancel = Cancel -PipelineHelper.backend.offline.dialog.message = Backend is offline. Should the pipeline be scheduled to be launched when backend is online or do you want to cancel the execution? -PipelineHelper.backend.offline.dialog.name = Pipeline execution +PipelineHelper.backend.offline.dialog.cancel = Cancel +PipelineHelper.backend.offline.dialog.message = Backend is offline. Should the pipeline be scheduled to be launched when backend is online or do you want to cancel the execution? +PipelineHelper.backend.offline.dialog.name = Pipeline execution PipelineHelper.backend.offline.dialog.schedule = Schedule -PipelineHelper.execution.started = Pipeline execution started .. -PipelineHelper.execution.state.description = Execution state changed in the meantime. Check and try again. -PipelineHelper.execution.state.title = Execution not sheduled / canceled -PipelineHelper.start.failed = Failed to start execution. -PipelineHelper.start.failed.description = Pipeline execution already queued or running. - -PipelineImport.archive.notSelected = No archive selected. -PipelineImport.cancel = Cancel -PipelineImport.dpu.jarName = DPU jar's name -PipelineImport.dpu.template = DPU template -PipelineImport.dpu.used = The DPUs which are used in imported pipeline: -PipelineImport.dpu.version = Version -PipelineImport.import = Import -PipelineImport.import.fail = Import failed. -PipelineImport.import.schedule = Import pipeline's schedule -PipelineImport.import.usersData = Import user's data -PipelineImport.install.dpu = Please install DPUs from table and then run import again -PipelineImport.missing.dpu.fail = It is not possible to import pipeline due to missing DPUs.\n +PipelineHelper.execution.started = Pipeline execution started .. +PipelineHelper.execution.state.description = Execution state changed in the meantime. Check and try again. +PipelineHelper.execution.state.title = Execution not sheduled / canceled +PipelineHelper.start.failed = Failed to start execution. +PipelineHelper.start.failed.description = Pipeline execution already queued or running. + +PipelineImport.archive.notSelected = No archive selected. +PipelineImport.cancel = Cancel +PipelineImport.dpu.jarName = DPU jar's name +PipelineImport.dpu.template = DPU template +PipelineImport.dpu.used = The DPUs which are used in imported pipeline: +PipelineImport.dpu.version = Version +PipelineImport.import = Import +PipelineImport.import.fail = Import failed. +PipelineImport.import.schedule = Import pipeline's schedule +PipelineImport.import.usersData = Import user's data +PipelineImport.install.dpu = Please install DPUs from table and then run import again +PipelineImport.missing.dpu.fail = It is not possible to import pipeline due to missing DPUs.\n PipelineImport.missing.dpu.template = DPU template -PipelineImport.missing.dpus = The DPUs which are missing in system. Install them before import: -PipelineImport.missing.jarName = DPU jar's name -PipelineImport.missing.version = version -PipelineImport.not.zip.file = Selected file is not zip file -PipelineImport.pipeline.import = Pipeline import -PipelineImport.read.file.fail = It is not possible to read the file [used_dpu.xml]\nwhere used dpus are. -PipelineImport.upload.file = Upload file -PipelineImport.zip.archive = Zip archive: - -PipelineListPresenterImpl.copy.successfull = Pipeline {0} was successfully copied. -PipelineListPresenterImpl.delete.confirmation = Confirmation of deleting pipeline +PipelineImport.missing.dpus = The DPUs which are missing in system. Install them before import: +PipelineImport.missing.jarName = DPU jar's name +PipelineImport.missing.version = version +PipelineImport.not.zip.file = Selected file is not zip file +PipelineImport.pipeline.import = Pipeline import +PipelineImport.read.file.fail = It is not possible to read the file [used_dpu.xml]\nwhere used dpus are. +PipelineImport.upload.file = Upload file +PipelineImport.zip.archive = Zip archive: + +PipelineListPresenterImpl.copy.successfull = Pipeline {0} was successfully copied. +PipelineListPresenterImpl.delete.confirmation = Confirmation of deleting pipeline PipelineListPresenterImpl.delete.confirmation.cancelButton = Cancel PipelineListPresenterImpl.delete.confirmation.deleteButton = Delete pipeline -PipelineListPresenterImpl.delete.dialog = Would you really like to delete the "{0}" pipeline and all associated records (DPU instances e.g.)? -PipelineListPresenterImpl.pipeline.running = Pipeline {0} has current(QUEUED or RUNNING) execution(s) and cannot be deleted now! -PipelineListPresenterImpl.pipeline.scheduled = \ This pipeline is scheduled by user(s) {0}. Delete anyway? - -PipelineListViewImpl.actions = Actions -PipelineListViewImpl.clear.filters = Clear Filters -PipelineListViewImpl.clear.sort = Clear Sort -PipelineListViewImpl.copy = Copy +PipelineListPresenterImpl.delete.dialog = Would you really like to delete the "{0}" pipeline and all associated records (DPU instances e.g.)? +PipelineListPresenterImpl.pipeline.running = Pipeline {0} has current(QUEUED or RUNNING) execution(s) and cannot be deleted now! +PipelineListPresenterImpl.pipeline.scheduled = \ This pipeline is scheduled by user(s) {0}. Delete anyway? + +PipelineListViewImpl.actions = Actions +PipelineListViewImpl.clear.filters = Clear Filters +PipelineListViewImpl.clear.sort = Clear Sort +PipelineListViewImpl.copy = Copy PipelineListViewImpl.create.pipeline = Create pipeline -PipelineListViewImpl.debug = Debug -PipelineListViewImpl.delete = Delete -PipelineListViewImpl.edit = Edit +PipelineListViewImpl.debug = Debug +PipelineListViewImpl.delete = Delete +PipelineListViewImpl.edit = Edit PipelineListViewImpl.import.pipeline = Import pipeline -PipelineListViewImpl.run = Run -PipelineListViewImpl.schedule = Schedule +PipelineListViewImpl.run = Run +PipelineListViewImpl.schedule = Schedule -PipelineStatus.last.run = Last run: +PipelineStatus.last.run = Last run: PipelineStatus.run.numbers = Number of runs: -PipelineStatus.status = Pipeline status +PipelineStatus.status = Pipeline status -PipelineViewAccessor.createdBy = Created by -PipelineViewAccessor.id = Id +PipelineViewAccessor.createdBy = Created by +PipelineViewAccessor.id = Id PipelineViewAccessor.lastExecution = Last execution time -PipelineViewAccessor.lastRun = Last run time -PipelineViewAccessor.lastStatus = Last status -PipelineViewAccessor.name = Name +PipelineViewAccessor.lastRun = Last run time +PipelineViewAccessor.lastStatus = Last status +PipelineViewAccessor.name = Name -PrefixCreate.cancel = Cancel +PrefixCreate.cancel = Cancel PrefixCreate.prefix.details = Prefix details -PrefixCreate.prefix.empty = Prefix Name field must be filled -PrefixCreate.prefix.exists = prefix with this name is already exist -PrefixCreate.prefix.name = Prefix Name: -PrefixCreate.save = Save -PrefixCreate.save.failed = Failed to save settings. Reason: -PrefixCreate.uri.empty = Prefix URI field must be filled -PrefixCreate.uri.prefix = Prefix URI: -PrefixCreate.uri.wrong = wrong Uri format +PrefixCreate.prefix.empty = Prefix Name field must be filled +PrefixCreate.prefix.exists = prefix with this name is already exist +PrefixCreate.prefix.name = Prefix Name: +PrefixCreate.save = Save +PrefixCreate.save.failed = Failed to save settings. Reason: +PrefixCreate.uri.empty = Prefix URI field must be filled +PrefixCreate.uri.prefix = Prefix URI: +PrefixCreate.uri.wrong = wrong Uri format PresenterViewDisplay_no.component = Presenter do not return a component: PresenterViewDisplay_view.not.component = View is not a component: -RDFQuery.constructItem.unsupported = RDFLazyQueryContainer is read-only. -RDFQuery.constructSize.invalidQuery = This query is probably not valid. -RDFQuery.constructSize.malformedQuery = This query is probably not valid as construct query. -RDFQuery.deleteAllItems.unsupported = RDFLazyQueryContainer is read-only. -RDFQuery.loadItems.dataUnit.description = Error: -RDFQuery.loadItems.dataUnit.name = DataUnit problem -RDFQuery.loadItems.exception = Unable to load RDFDataUnit. -RDFQuery.loadItems.invalidQuery.description = Query is not valid: -RDFQuery.loadItems.invalidQuery.name = Query Validator -RDFQuery.loadItems.queryEvaluation.description = Error in query evaluation: -RDFQuery.loadItems.queryEvaluation.name = Query Evaluation -RDFQuery.queryType.invalidQuery = Invalid query: -RDFQuery.resultSize.invalidQuery = Given query: {0} have to be SELECT or CONSTRUCT type. -RDFQuery.saveItems.unsupported = RDFLazyQueryContainer is read-only. -RDFQuery.selectSize.invalidQuery = Query: {0} has no bindings for information about its size. -RDFQuery.selectSize.malformedQuery = This query is probably not valid. -RDFQuery.selectSize.notValid = This query is probably not valid. -RDFQuery.size.exception = Unable to load RDFDataUnit. -RDFQuery.size.invalidQuery.description = Query is not valid: -RDFQuery.size.invalidQuery.name = Query Validator +RDFQuery.constructItem.unsupported = RDFLazyQueryContainer is read-only. +RDFQuery.constructSize.invalidQuery = This query is probably not valid. +RDFQuery.constructSize.malformedQuery = This query is probably not valid as construct query. +RDFQuery.deleteAllItems.unsupported = RDFLazyQueryContainer is read-only. +RDFQuery.loadItems.dataUnit.description = Error: +RDFQuery.loadItems.dataUnit.name = DataUnit problem +RDFQuery.loadItems.exception = Unable to load RDFDataUnit. +RDFQuery.loadItems.invalidQuery.description = Query is not valid: +RDFQuery.loadItems.invalidQuery.name = Query Validator +RDFQuery.loadItems.queryEvaluation.description = Error in query evaluation: +RDFQuery.loadItems.queryEvaluation.name = Query Evaluation +RDFQuery.queryType.invalidQuery = Invalid query: +RDFQuery.resultSize.invalidQuery = Given query: {0} have to be SELECT or CONSTRUCT type. +RDFQuery.saveItems.unsupported = RDFLazyQueryContainer is read-only. +RDFQuery.selectSize.invalidQuery = Query: {0} has no bindings for information about its size. +RDFQuery.selectSize.malformedQuery = This query is probably not valid. +RDFQuery.selectSize.notValid = This query is probably not valid. +RDFQuery.size.exception = Unable to load RDFDataUnit. +RDFQuery.size.invalidQuery.description = Query is not valid: +RDFQuery.size.invalidQuery.name = Query Validator RDFQueryFactory.exception = Unsupported QueryDefinition class. -RDFQueryView.closing.problem = Problem closing connection -RDFQueryView.consctuct.not.supported = Not suported format for CONSTRUCT query ! +RDFQueryView.closing.problem = Problem closing connection +RDFQueryView.consctuct.not.supported = Not suported format for CONSTRUCT query ! RDFQueryView.consctuct.not.supported.description = This format can be used only for SELECT queries ! -RDFQueryView.dataunit.problem = Problem with DataUnit -RDFQueryView.download = Download -RDFQueryView.download.error = There was error in creating donwload file! -RDFQueryView.download.query.not.valid = Query is not valid: -RDFQueryView.download.validator = Query Validator -RDFQueryView.format.empty = Format not selected! -RDFQueryView.format.empty.description = Format must be selected for download! -RDFQueryView.format.not.supported.construct = This format can be used only for CONSTRUCT queries ! -RDFQueryView.query = SPARQL Query: -RDFQueryView.query.empty = No query was specified. Please specify query before running it. -RDFQueryView.query.invalid = Invalid query: -RDFQueryView.query.not.valid = Query is not valid: -RDFQueryView.run = Run Query -RDFQueryView.run.and.download = Run Query and Download -RDFQueryView.run.query.not.valid = Query is not valid: -RDFQueryView.run.validator = Query Validator -RDFQueryView.select.not.supported = Not suported format for SELECT query ! -RDFQueryView.validator = Query Validator - -RecordDetail.close = Close -RecordDetail.excecution = Pipeline execution: -RecordDetail.message = Message: +RDFQueryView.dataunit.problem = Problem with DataUnit +RDFQueryView.download = Download +RDFQueryView.download.error = There was error in creating donwload file! +RDFQueryView.download.query.not.valid = Query is not valid: +RDFQueryView.download.validator = Query Validator +RDFQueryView.format.empty = Format not selected! +RDFQueryView.format.empty.description = Format must be selected for download! +RDFQueryView.format.not.supported.construct = This format can be used only for CONSTRUCT queries ! +RDFQueryView.query = SPARQL Query: +RDFQueryView.query.empty = No query was specified. Please specify query before running it. +RDFQueryView.query.invalid = Invalid query: +RDFQueryView.query.not.valid = Query is not valid: +RDFQueryView.run = Run Query +RDFQueryView.run.and.download = Run Query and Download +RDFQueryView.run.query.not.valid = Query is not valid: +RDFQueryView.run.validator = Query Validator +RDFQueryView.select.not.supported = Not suported format for SELECT query ! +RDFQueryView.validator = Query Validator + +RecordDetail.close = Close +RecordDetail.excecution = Pipeline execution: +RecordDetail.message = Message: RecordDetail.record.detail = Record detail RecordDetail.short.message = Short message: -RecordDetail.time = Time: -RecordDetail.type = Type: +RecordDetail.time = Time: +RecordDetail.type = Type: RelationalQueryView.browser.not.available =  Browser is not available. -RepositoryFrontendHelper.construct.evaluation = This query is probably not valid. -RepositoryFrontendHelper.construct.failed = Getting GraphQueryResult using SPARQL construct query failed. -RepositoryFrontendHelper.construct.malformed = This query is probably not valid. -RepositoryFrontendHelper.construct2.evaluation = This query is probably not valid. -RepositoryFrontendHelper.construct2.failed = Creating File with RDF data fault. -RepositoryFrontendHelper.describe.resource = Resource {0} is not URI type. -RepositoryFrontendHelper.evaluationException = This query is probably not valid. -RepositoryFrontendHelper.select.dataFault = Creating File with RDF data fault. -RepositoryFrontendHelper.select.invalidQuery = This query is probably not valid. +RepositoryFrontendHelper.construct.evaluation = This query is probably not valid. +RepositoryFrontendHelper.construct.failed = Getting GraphQueryResult using SPARQL construct query failed. +RepositoryFrontendHelper.construct.malformed = This query is probably not valid. +RepositoryFrontendHelper.construct2.evaluation = This query is probably not valid. +RepositoryFrontendHelper.construct2.failed = Creating File with RDF data fault. +RepositoryFrontendHelper.describe.resource = Resource {0} is not URI type. +RepositoryFrontendHelper.evaluationException = This query is probably not valid. +RepositoryFrontendHelper.select.dataFault = Creating File with RDF data fault. +RepositoryFrontendHelper.select.invalidQuery = This query is probably not valid. RepositoryFrontendHelper.selectAsTuples.evaluation = This query is probably not valid. -RepositoryFrontendHelper.selectAsTuples.failed = Getting TupleQueryResult using SPARQL select query failed. -RepositoryFrontendHelper.selectAsTuples.malformed = This query is probably not valid. -RepositoryFrontendHelper.update.exception = Connection to repository is not available. -RepositoryFrontendHelper.update.not.executed = SPARQL query was not executed! - -SchedulePipeline.are.introduced = , are introduced more times, please correct. -SchedulePipeline.cancel = Cancel -SchedulePipeline.core = Core -SchedulePipeline.create.rule.failed = Failed to create scheduler rule. +RepositoryFrontendHelper.selectAsTuples.failed = Getting TupleQueryResult using SPARQL select query failed. +RepositoryFrontendHelper.selectAsTuples.malformed = This query is probably not valid. +RepositoryFrontendHelper.update.exception = Connection to repository is not available. +RepositoryFrontendHelper.update.not.executed = SPARQL query was not executed! + +SchedulePipeline.are.introduced = , are introduced more times, please correct. +SchedulePipeline.cancel = Cancel +SchedulePipeline.core = Core +SchedulePipeline.create.rule.failed = Failed to create scheduler rule. SchedulePipeline.create.rule.failed.description = \ Please correct that before saving. -SchedulePipeline.date.and.time.execution = Date and time of first execution: -SchedulePipeline.days = Days -SchedulePipeline.description = Description -SchedulePipeline.email = Email -SchedulePipeline.email.at.least.once = At least one mail has to be filled, so that the notification can be send. -SchedulePipeline.email2 = Email -SchedulePipeline.emails = Emails -SchedulePipeline.emails.format.wrong = , have wrong format. -SchedulePipeline.emails2 = Emails -SchedulePipeline.every = every -SchedulePipeline.every.day = every day -SchedulePipeline.every.month = every month -SchedulePipeline.every.week = every week -SchedulePipeline.format.wrong = \ has wrong format. -SchedulePipeline.hours = Hours -SchedulePipeline.id = ID -SchedulePipeline.immediate.start = \ - immediate start -SchedulePipeline.interval = Interval: -SchedulePipeline.interval.positive = ; Interval value must be a positive integer number, you entered " -SchedulePipeline.interval.positive2 = Interval value must be a positive integer number, you entered " -SchedulePipeline.is.introduced = \ is introduced more times, please correct. -SchedulePipeline.minutes = Minutes -SchedulePipeline.months = Months -SchedulePipeline.new = New -SchedulePipeline.notifications = Notifications -SchedulePipeline.once = Just once -SchedulePipeline.pipeline = Pipeline -SchedulePipeline.pipeline.empty = Pipeline must be filled -SchedulePipeline.pipeline.filter = type to filter pipelines -SchedulePipeline.pipeline.select = Select pipeline: -SchedulePipeline.pipelines.available = Available pipelines -SchedulePipeline.pipelines.selected = Selected pipelines -SchedulePipeline.pipelines.selected.empty = Selected pipeline must be filled -SchedulePipeline.positive.value = Value must be positive -SchedulePipeline.priority = Priority -SchedulePipeline.save = Save -SchedulePipeline.save.success = Pipeline {0} scheduled successfuly! -SchedulePipeline.schedule = Schedule a pipeline -SchedulePipeline.schedule.after = Schedule the pipeline to run after selected pipelines finish. -SchedulePipeline.schedule.periodically = Schedule the pipeline to run automatically in fixed interval. -SchedulePipeline.scheduled.by = Schedulled by -SchedulePipeline.settings.save.failed = Failed to save settings, reason: -SchedulePipeline.timed.strictly = Strictly Timed -SchedulePipeline.tolerance = Tolerance: -SchedulePipeline.tolerance.positive = ; Tolerance value must be a positive integer number, you entered " -SchedulePipeline.tolerance.positive2 = Tolerance value must be a positive integer number, you entered " -SchedulePipeline.use.default = Use default notification settings -SchedulePipeline.value.minutes = minutes -SchedulePipeline.value.positive = Value must be positive - -Scheduler.actions = Actions -Scheduler.add.rule = Add new scheduling rule -Scheduler.and.repeat = \ and then repeat every -Scheduler.button.disable = Disable -Scheduler.button.enable = Enable -Scheduler.clear.filters = Clear Filters -Scheduler.day.lte.four = =days -Scheduler.day.more = days -Scheduler.day.one = day -Scheduler.delete = Delete -Scheduler.delete.scheduling = Confirmation of deleting scheduling rule +SchedulePipeline.date.and.time.execution = Date and time of first execution: +SchedulePipeline.days = Days +SchedulePipeline.description = Description +SchedulePipeline.email = Email +SchedulePipeline.email.at.least.once = At least one mail has to be filled, so that the notification can be send. +SchedulePipeline.email2 = Email +SchedulePipeline.emails = Emails +SchedulePipeline.emails.format.wrong = , have wrong format. +SchedulePipeline.emails2 = Emails +SchedulePipeline.every = every +SchedulePipeline.every.day = every day +SchedulePipeline.every.month = every month +SchedulePipeline.every.week = every week +SchedulePipeline.format.wrong = \ has wrong format. +SchedulePipeline.hours = Hours +SchedulePipeline.id = ID +SchedulePipeline.immediate.start = \ - immediate start +SchedulePipeline.interval = Interval: +SchedulePipeline.interval.positive = ; Interval value must be a positive integer number, you entered " +SchedulePipeline.interval.positive2 = Interval value must be a positive integer number, you entered " +SchedulePipeline.is.introduced = \ is introduced more times, please correct. +SchedulePipeline.minutes = Minutes +SchedulePipeline.months = Months +SchedulePipeline.new = New +SchedulePipeline.notifications = Notifications +SchedulePipeline.once = Just once +SchedulePipeline.pipeline = Pipeline +SchedulePipeline.pipeline.empty = Pipeline must be filled +SchedulePipeline.pipeline.filter = type to filter pipelines +SchedulePipeline.pipeline.select = Select pipeline: +SchedulePipeline.pipelines.available = Available pipelines +SchedulePipeline.pipelines.selected = Selected pipelines +SchedulePipeline.pipelines.selected.empty = Selected pipeline must be filled +SchedulePipeline.positive.value = Value must be positive +SchedulePipeline.priority = Priority +SchedulePipeline.save = Save +SchedulePipeline.save.success = Pipeline {0} scheduled successfuly! +SchedulePipeline.schedule = Schedule a pipeline +SchedulePipeline.schedule.after = Schedule the pipeline to run after selected pipelines finish. +SchedulePipeline.schedule.periodically = Schedule the pipeline to run automatically in fixed interval. +SchedulePipeline.scheduled.by = Schedulled by +SchedulePipeline.settings.save.failed = Failed to save settings, reason: +SchedulePipeline.timed.strictly = Strictly Timed +SchedulePipeline.tolerance = Tolerance: +SchedulePipeline.tolerance.positive = ; Tolerance value must be a positive integer number, you entered " +SchedulePipeline.tolerance.positive2 = Tolerance value must be a positive integer number, you entered " +SchedulePipeline.use.default = Use default notification settings +SchedulePipeline.value.minutes = minutes +SchedulePipeline.value.positive = Value must be positive + +Scheduler.actions = Actions +Scheduler.add.rule = Add new scheduling rule +Scheduler.and.repeat = \ and then repeat every +Scheduler.button.disable = Disable +Scheduler.button.enable = Enable +Scheduler.clear.filters = Clear Filters +Scheduler.day.lte.four = =days +Scheduler.day.more = days +Scheduler.day.one = day +Scheduler.delete = Delete +Scheduler.delete.scheduling = Confirmation of deleting scheduling rule Scheduler.delete.scheduling.calcelButton = Cancel Scheduler.delete.scheduling.deleteButton = Delete -Scheduler.delete.scheduling.description = Delete "{0}" pipeline scheduling rule? -Scheduler.disabled = Disabled -Scheduler.edit = Edit -Scheduler.enabled = Enabled -Scheduler.hour.lte.four = =hours -Scheduler.hour.more = hours -Scheduler.hour.one = hour -Scheduler.image.disabled = Disabled -Scheduler.image.enabled = Enabled -Scheduler.last = Last -Scheduler.last.runTime = Duration -Scheduler.minute.lte.four = minutes -Scheduler.minute.more = minutes -Scheduler.minute.one = minute -Scheduler.month.lte.four = =months -Scheduler.month.more = months -Scheduler.month.one = month -Scheduler.next = Next -Scheduler.pipeline = Pipeline -Scheduler.rule = Rule -Scheduler.run.after.pipeline = Run after pipeline: -Scheduler.run.after.pipelines = Run after pipelines: -Scheduler.run.on = Run on {0} -Scheduler.scheduled.by = Scheduled by -Scheduler.status = Status -Scheduler.week.lte.four = weeks -Scheduler.week.more = weeks -Scheduler.week.one = week -Scheduler.week.the.four = weeks -Scheduler.year.lte.four = =years -Scheduler.year.more = years -Scheduler.year.one = year - -Settings.default.form = Default form of report about scheduled pipeline execution -Settings.default.form.detail = (may be overriden in the particular schedulled event) : -Settings.email.notifications = Email Notifications to: -Settings.failed.to.save = Failed to save settings, reason: -Settings.failed.to.save.description = "Number of rows in tables" must be a number between 5 and 100. You entered "{0}". Please correct that before saving. -Settings.failed.to.save.reason = Failed to save settings, reason: -Settings.manage.debugAndWorkingData = Manage debug and working data -Settings.manage.debugAndWorkingData.WDdelErr = Unable to delete working data from pipeline execution. -Settings.manage.debugAndWorkingData.btnDelete = Delete -Settings.manage.debugAndWorkingData.lblDays = \u00A0 days.\u00A0 -Settings.manage.debugAndWorkingData.lblStatus = Status: -Settings.manage.debugAndWorkingData.lblStatus.done = Status: Done -Settings.manage.debugAndWorkingData.lblStatus.running = Status: Deleting in progress -Settings.manage.debugAndWorkingData.recordsDeleted = Records deleted:\u00A0 -Settings.manage.debugAndWorkingData.txtDayCount.blank = Number of days to delete is not specified. -Settings.manage.debugAndWorkingData.txtDayCount.negative = Number of Days must be a non-negative number. +Scheduler.delete.scheduling.description = Delete "{0}" pipeline scheduling rule? +Scheduler.disabled = Disabled +Scheduler.edit = Edit +Scheduler.enabled = Enabled +Scheduler.hour.lte.four = =hours +Scheduler.hour.more = hours +Scheduler.hour.one = hour +Scheduler.image.disabled = Disabled +Scheduler.image.enabled = Enabled +Scheduler.last = Last +Scheduler.last.runTime = Duration +Scheduler.minute.lte.four = minutes +Scheduler.minute.more = minutes +Scheduler.minute.one = minute +Scheduler.month.lte.four = =months +Scheduler.month.more = months +Scheduler.month.one = month +Scheduler.next = Next +Scheduler.pipeline = Pipeline +Scheduler.rule = Rule +Scheduler.run.after.pipeline = Run after pipeline: +Scheduler.run.after.pipelines = Run after pipelines: +Scheduler.run.on = Run on {0} +Scheduler.scheduled.by = Scheduled by +Scheduler.status = Status +Scheduler.week.lte.four = weeks +Scheduler.week.more = weeks +Scheduler.week.one = week +Scheduler.week.the.four = weeks +Scheduler.year.lte.four = =years +Scheduler.year.more = years +Scheduler.year.one = year + +Settings.default.form = Default form of report about scheduled pipeline execution +Settings.default.form.detail = (may be overriden in the particular schedulled event) : +Settings.email.notifications = Email Notifications to: +Settings.failed.to.save = Failed to save settings, reason: +Settings.failed.to.save.description = "Number of rows in tables" must be a number between 5 and 100. You entered "{0}". Please correct that before saving. +Settings.failed.to.save.reason = Failed to save settings, reason: +Settings.manage.debugAndWorkingData = Manage debug and working data +Settings.manage.debugAndWorkingData.WDdelErr = Unable to delete working data from pipeline execution. +Settings.manage.debugAndWorkingData.btnDelete = Delete +Settings.manage.debugAndWorkingData.lblDays = \u00A0 days.\u00A0 +Settings.manage.debugAndWorkingData.lblStatus = Status: +Settings.manage.debugAndWorkingData.lblStatus.done = Status: Done +Settings.manage.debugAndWorkingData.lblStatus.running = Status: Deleting in progress +Settings.manage.debugAndWorkingData.recordsDeleted = Records deleted:\u00A0 +Settings.manage.debugAndWorkingData.txtDayCount.blank = Number of days to delete is not specified. +Settings.manage.debugAndWorkingData.txtDayCount.negative = Number of Days must be a non-negative number. Settings.manage.debugAndWorkingData.txtDayCount.notNumber = Number of days must be an integer. -Settings.manage.debugAndWorkingData.txtDaysCount = Delete all pipeline execution data older than\u00A0 -Settings.manage.users = Manage users -Settings.my.account = My account -Settings.myAccount.save = Save -Settings.myAccout.successfull = My account settings were successfully saved -Settings.name.required = Name is Required -Settings.notifications.save = Save -Settings.notifications.unsaved = Unsaved changes -Settings.notifications.unsaved.dialog = There are unsaved changes.\nDo you wish to save them or discard? -Settings.notifications.unsaved.discard = Discard changes -Settings.notifications.unsaved.save = Save -Settings.prompt.name = name -Settings.prompt.value = value -Settings.range.validation = Please enter value between 5 and 100. -Settings.runtime.properties = Runtime properties -Settings.runtime.properties.invalid.value = Save failed. -Settings.runtime.properties.save = Save -Settings.runtime.properties.save.failed = Save failed. -Settings.runtime.properties.save.failed.description = There are two or more properties with the same name: -Settings.runtime.properties.save.successfull = Save succesfull. -Settings.runtime.properties.save.successfull.description = Runtime properties were saved succesfully. -Settings.schedule.fail = Failed to save settings, reason: -Settings.schedule.fail.description = ; "Number of rows in tables" must be a number between 5 and 100. You entered "{0}". Please correct that before saving. -Settings.scheduler.notifications = Scheduler notifications -Settings.table.row.count = Number of rows in tables: -Settings.unsaved.changes = Unsaved changes -Settings.unsaved.changes.dialog = There are unsaved changes.\nDo you wish to save them or discard? -Settings.unsaved.changes.discard = Discard changes -Settings.unsaved.changes.save = Save -Settings.validation.email = Email -Settings.validation.email.minimum = At least one mail has to be filled, so that the notification can be send. -Settings.validation.emails = Emails -Settings.validation.emails.wrong.format = , have wrong format. -Settings.validation.wrong.format = \ has wrong format. +Settings.manage.debugAndWorkingData.txtDaysCount = Delete all pipeline execution data older than\u00A0 +Settings.manage.users = Manage users +Settings.my.account = My account +Settings.myAccount.save = Save +Settings.myAccout.successfull = My account settings were successfully saved +Settings.name.required = Name is Required +Settings.notifications.save = Save +Settings.notifications.unsaved = Unsaved changes +Settings.notifications.unsaved.dialog = There are unsaved changes.\nDo you wish to save them or discard? +Settings.notifications.unsaved.discard = Discard changes +Settings.notifications.unsaved.save = Save +Settings.prompt.name = name +Settings.prompt.value = value +Settings.range.validation = Please enter value between 5 and 100. +Settings.runtime.properties = Runtime properties +Settings.runtime.properties.invalid.value = Save failed. +Settings.runtime.properties.save = Save +Settings.runtime.properties.save.failed = Save failed. +Settings.runtime.properties.save.failed.description = There are two or more properties with the same name: +Settings.runtime.properties.save.successfull = Save succesfull. +Settings.runtime.properties.save.successfull.description = Runtime properties were saved succesfully. +Settings.schedule.fail = Failed to save settings, reason: +Settings.schedule.fail.description = ; "Number of rows in tables" must be a number between 5 and 100. You entered "{0}". Please correct that before saving. +Settings.scheduler.notifications = Scheduler notifications +Settings.table.row.count = Number of rows in tables: +Settings.unsaved.changes = Unsaved changes +Settings.unsaved.changes.dialog = There are unsaved changes.\nDo you wish to save them or discard? +Settings.unsaved.changes.discard = Discard changes +Settings.unsaved.changes.save = Save +Settings.validation.email = Email +Settings.validation.email.minimum = At least one mail has to be filled, so that the notification can be send. +Settings.validation.emails = Emails +Settings.validation.emails.wrong.format = , have wrong format. +Settings.validation.wrong.format = \ has wrong format. SystemMessages.authenticationErrorCaption = Authentication problem SystemMessages.authenticationErrorMessage = Take note of any unsaved data, and click here or press ESC to continue @@ -796,52 +796,52 @@ SystemMessages.outOfSyncMessage = Something has caused us to be out of SystemMessages.sessionExpiredCaption = Session Expired SystemMessages.sessionExpiredMessage = Take note of any unsaved data, and click here or press ESC key to continue. -UploadInfoWindow.cancel = Cancel +UploadInfoWindow.cancel = Cancel UploadInfoWindow.current.state = Current state -UploadInfoWindow.file.name = File name -UploadInfoWindow.idle = Idle -UploadInfoWindow.processed = Processed {0} k bytes of {1} k. -UploadInfoWindow.progress = Progress -UploadInfoWindow.status = Status -UploadInfoWindow.upload.idle = Idle -UploadInfoWindow.uploading = Uploading - -UserCreate.cancel = Cancel -UserCreate.email = E-mail: -UserCreate.email.empty = e-mail field must be filled -UserCreate.full.empty = Full user name must be filled -UserCreate.full.user.name = Full user name: -UserCreate.password = Password: +UploadInfoWindow.file.name = File name +UploadInfoWindow.idle = Idle +UploadInfoWindow.processed = Processed {0} k bytes of {1} k. +UploadInfoWindow.progress = Progress +UploadInfoWindow.status = Status +UploadInfoWindow.upload.idle = Idle +UploadInfoWindow.uploading = Uploading + +UserCreate.cancel = Cancel +UserCreate.email = E-mail: +UserCreate.email.empty = e-mail field must be filled +UserCreate.full.empty = Full user name must be filled +UserCreate.full.user.name = Full user name: +UserCreate.password = Password: UserCreate.password.confirmation = Password
confirmation: -UserCreate.password.different = The typed pasword is different than the retyped password -UserCreate.password.different2 = The typed pasword is different than the retyped password -UserCreate.password.empty = The pasword can not be empty -UserCreate.password.empty2 = The pasword can not be empty -UserCreate.roles.atLeastOne = at least one role must be set -UserCreate.roles.defined = Defined Roles: -UserCreate.roles.set = Set Roles: -UserCreate.save = Save -UserCreate.save.failed = Failed to save settings. Reason: -UserCreate.user.details = User's details -UserCreate.user.exists = user with this user name is already exist -UserCreate.user.filled = user name field must be filled -UserCreate.user.name = User name: -UserCreate.wrong.confirmation = Password confirmation is wrong -UserCreate.wrong.confirmation2 = Password confirmation is wrong -UserCreate.wrong.confirmation3 = Password confirmation is wrong -UserCreate.wrong.confirmation4 = Password confirmation is wrong -UserCreate.wrong.email = wrong e-mail format - -UsersList.actions = Actions -UsersList.cancel.option = Cancel -UsersList.delete = Delete +UserCreate.password.different = The typed pasword is different than the retyped password +UserCreate.password.different2 = The typed pasword is different than the retyped password +UserCreate.password.empty = The pasword can not be empty +UserCreate.password.empty2 = The pasword can not be empty +UserCreate.roles.atLeastOne = at least one role must be set +UserCreate.roles.defined = Defined Roles: +UserCreate.roles.set = Set Roles: +UserCreate.save = Save +UserCreate.save.failed = Failed to save settings. Reason: +UserCreate.user.details = User's details +UserCreate.user.exists = user with this user name is already exist +UserCreate.user.filled = user name field must be filled +UserCreate.user.name = User name: +UserCreate.wrong.confirmation = Password confirmation is wrong +UserCreate.wrong.confirmation2 = Password confirmation is wrong +UserCreate.wrong.confirmation3 = Password confirmation is wrong +UserCreate.wrong.confirmation4 = Password confirmation is wrong +UserCreate.wrong.email = wrong e-mail format + +UsersList.actions = Actions +UsersList.cancel.option = Cancel +UsersList.delete = Delete UsersList.delete.confirmation = Confirmation of deleting user -UsersList.delete.option = Delete -UsersList.detele.message = Delete the {0} user? -UsersList.edit = Edit -UsersList.filter.clear = Clear Filters -UsersList.full.username = Full User Name -UsersList.id = Id -UsersList.roles = Role(s) -UsersList.user.create = Create new user -UsersList.username = User Name +UsersList.delete.option = Delete +UsersList.detele.message = Delete the {0} user? +UsersList.edit = Edit +UsersList.filter.clear = Clear Filters +UsersList.full.username = Full User Name +UsersList.id = Id +UsersList.roles = Role(s) +UsersList.user.create = Create new user +UsersList.username = User Name diff --git a/frontend/src/main/resources/frontend-messages_sk.properties b/frontend/src/main/resources/frontend-messages_sk.properties index c0bc0b2c6e..ce91cc3869 100644 --- a/frontend/src/main/resources/frontend-messages_sk.properties +++ b/frontend/src/main/resources/frontend-messages_sk.properties @@ -1,25 +1,25 @@ #Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) # Example of Slovak language bundle -AppEntry.confirmDialog.cancel = Zru\u0161i\u0165 -AppEntry.confirmDialog.discard = Zru\u0161i\u0165 zmeny -AppEntry.confirmDialog.name = Neulo\u017Een\u00E9 zmeny -AppEntry.confirmDialog.save = Ulo\u017Ei\u0165 -AppEntry.confirmDialog.text = Neulo\u017Een\u00E9 zmeny. Chcete ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? -AppEntry.database.error = Nie je mo\u017En\u00E9 pripojenie na datab\u00E1zu! -AppEntry.database.error.description = Pros\u00EDm uistite sa, \u017Ee datab\u00E1za be\u017E\u00ED a je spr\u00E1vne nakonfigurovan\u00E1. -AppEntry.permission.denied = Pr\u00EDstup odmietnut\u00FD +AppEntry.confirmDialog.cancel = Zru\u0161i\u0165 +AppEntry.confirmDialog.discard = Zru\u0161i\u0165 zmeny +AppEntry.confirmDialog.name = Neulo\u017Een\u00E9 zmeny +AppEntry.confirmDialog.save = Ulo\u017Ei\u0165 +AppEntry.confirmDialog.text = Neulo\u017Een\u00E9 zmeny. Chcete ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? +AppEntry.database.error = Nie je mo\u017En\u00E9 pripojenie na datab\u00E1zu! +AppEntry.database.error.description = Pros\u00EDm uistite sa, \u017Ee datab\u00E1za be\u017E\u00ED a je spr\u00E1vne nakonfigurovan\u00E1. +AppEntry.permission.denied = Pr\u00EDstup odmietnut\u00FD AppEntry.permission.denied.description = Nem\u00E1te dostato\u010Dn\u00E9 opr\u00E1vnenia na vykonanie tejto oper\u00E1cie -AppEntry.unexpected.error = Vyskytla sa neo\u010Dak\u00E1van\u00E1 chyba. -AppEntry.unexpected.error.description = Pros\u00EDm obnovte aplik\u00E1ciu. +AppEntry.unexpected.error = Vyskytla sa neo\u010Dak\u00E1van\u00E1 chyba. +AppEntry.unexpected.error.description = Pros\u00EDm obnovte aplik\u00E1ciu. -AuthenticationService.token.expired = Remember-me token expiroval. +AuthenticationService.token.expired = Remember-me token expiroval. AuthenticationService.token.hash.invalid = Neplatn\u00FD autentifika\u010Dn\u00FD hash token. -AuthenticationService.token.invalid = Poskytnut\u00FD neplatn\u00FD token! -AuthenticationService.user.not.found = Pou\u017E\u00EDvate\u013E ''{0}'' nebol n\u00E1jden\u00FD pri pokuse autentifikova\u0165 remember-me. -AuthenticationService.validation.error = Nebolo mo\u017En\u00E9 overi\u0165 hash token pre dan\u00E9 remember-me. +AuthenticationService.token.invalid = Poskytnut\u00FD neplatn\u00FD token! +AuthenticationService.user.not.found = Pou\u017E\u00EDvate\u013E ''{0}'' nebol n\u00E1jden\u00FD pri pokuse autentifikova\u0165 remember-me. +AuthenticationService.validation.error = Nebolo mo\u017En\u00E9 overi\u0165 hash token pre dan\u00E9 remember-me. -BindingSetItem.add.exception = Nepodporuje BindingSetItem. +BindingSetItem.add.exception = Nepodporuje BindingSetItem. BindingSetItem.remove.exception = BindingSetItem nie je podporovan\u00E1. ClassNavigatorImpl.no.address = Neexistuje \u017Eiadna adresa pre prezentuj\u00FAceho: @@ -28,177 +28,177 @@ ConfigurationDialogValidator.exception = Zlyhalo na\u010D\u00EDtane dial\u00F3gu DPUConfigHolder.configuration = Tento krok neposkytuje konfigura\u010Dn\u00FD komponent. -DPUCreate.cancel = Zru\u0161i\u0165 -DPUCreate.close = Zatvori\u0165 -DPUCreate.create = ytv\u00E1ranie \u0161abl\u00F3ny kroku -DPUCreate.create.description = Vytv\u00E1ranie \u0161abl\u00F3n krokov vo vn\u00FAtri ZIP -DPUCreate.create.description2 = \ s\u00FAboru. Ako meno \u0161abl\u00F3ny kroku sa pou\u017Eije n\u00E1zov definovan\u00FD v\u00FDvoj\u00E1rom kroku. -DPUCreate.create.description3 = \ Meno \u0161abl\u00F3ny kroku m\u00F4\u017Ee by\u0165 nesk\u00F4r zmenen\u00E9. -DPUCreate.create.failed = Nepodarilo sa vytvori\u0165 krok -DPUCreate.description = Popis -DPUCreate.file.choose = Vybra\u0165 s\u00FAbor -DPUCreate.jars.empty = S\u00FAbor neobsahuje java arch\u00EDvne s\u00FAbory: -DPUCreate.load.failed = Prob\u00E9m pri na\u010D\u00EDtan\u00ED s\u00FAboru: -DPUCreate.load.failed.list = Probl\u00E9m pri na\u010D\u00EDtan\u00ED zoznamu \u0161abl\u00F3n krokov -DPUCreate.name = N\u00E1zov -DPUCreate.name.filled = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! -DPUCreate.prompt = -DPUCreate.result.log = V\u00FDsledkov\u00FD log s\u00FAbor -DPUCreate.save = Ulo\u017Ei\u0165 -DPUCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 krok do datab\u00E1zy +DPUCreate.cancel = Zru\u0161i\u0165 +DPUCreate.close = Zatvori\u0165 +DPUCreate.create = ytv\u00E1ranie \u0161abl\u00F3ny kroku +DPUCreate.create.description = Vytv\u00E1ranie \u0161abl\u00F3n krokov vo vn\u00FAtri ZIP +DPUCreate.create.description2 = \ s\u00FAboru. Ako meno \u0161abl\u00F3ny kroku sa pou\u017Eije n\u00E1zov definovan\u00FD v\u00FDvoj\u00E1rom kroku. +DPUCreate.create.description3 = \ Meno \u0161abl\u00F3ny kroku m\u00F4\u017Ee by\u0165 nesk\u00F4r zmenen\u00E9. +DPUCreate.create.failed = Nepodarilo sa vytvori\u0165 krok +DPUCreate.description = Popis +DPUCreate.file.choose = Vybra\u0165 s\u00FAbor +DPUCreate.jars.empty = S\u00FAbor neobsahuje java arch\u00EDvne s\u00FAbory: +DPUCreate.load.failed = Prob\u00E9m pri na\u010D\u00EDtan\u00ED s\u00FAboru: +DPUCreate.load.failed.list = Probl\u00E9m pri na\u010D\u00EDtan\u00ED zoznamu \u0161abl\u00F3n krokov +DPUCreate.name = N\u00E1zov +DPUCreate.name.filled = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! +DPUCreate.prompt = +DPUCreate.result.log = V\u00FDsledkov\u00FD log s\u00FAbor +DPUCreate.save = Ulo\u017Ei\u0165 +DPUCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 krok do datab\u00E1zy DPUCreate.save.failed.description = Povinn\u00E9 polia musia by\u0165 vyplnen\u00E9 -DPUCreate.save.jar = Ulo\u017Ei\u0165 -DPUCreate.select.jar = Vybra\u0165 .jar s\u00FAbor -DPUCreate.select.zip = Vybra\u0165 .zip s\u00FAbor -DPUCreate.selected.file = Vybran\u00FD s\u00FAbor nie je .{0} s\u00FAbor -DPUCreate.temp.dir.fail = Nepodarilo sa na\u010D\u00EDta\u0165 temp adres\u00E1r. -DPUCreate.upload = S\u00FAbor na odovzdanie mus\u00ED by\u0165 vyplnen\u00FD! -DPUCreate.visibility = Vidite\u013Enos\u0165 - -DPUDetail.cancel = Zru\u0161i\u0165 +DPUCreate.save.jar = Ulo\u017Ei\u0165 +DPUCreate.select.jar = Vybra\u0165 .jar s\u00FAbor +DPUCreate.select.zip = Vybra\u0165 .zip s\u00FAbor +DPUCreate.selected.file = Vybran\u00FD s\u00FAbor nie je .{0} s\u00FAbor +DPUCreate.temp.dir.fail = Nepodarilo sa na\u010D\u00EDta\u0165 temp adres\u00E1r. +DPUCreate.upload = S\u00FAbor na odovzdanie mus\u00ED by\u0165 vyplnen\u00FD! +DPUCreate.visibility = Vidite\u013Enos\u0165 + +DPUDetail.cancel = Zru\u0161i\u0165 DPUDetail.configuration.loadFail.dialog = Zlyhalo na\u010D\u00EDtanie konfigura\u010Dn\u00E9ho dial\u00F3gu. -DPUDetail.configuration.problem = Konfigura\u010Dn\u00FD probl\u00E9m -DPUDetail.configuration.store.fail = Met\u00F3da na ulo\u017Eenie konfigur\u00E1cie hodila v\u00FDnimku: -DPUDetail.copy = Kop\u00EDrova\u0165 zo \u0161abl\u00F3ny -DPUDetail.detail = {0} detail {1} -DPUDetail.dpu.loadFail.dialog = Zlyhalo na\u010D\u00EDtanie kroku, -DPUDetail.exception.message = V\u00FDnimka: {0}, Spr\u00E1va: {1} -DPUDetail.missing.jar = Ch\u00FDba jar s\u00FAbor pre krok. -DPUDetail.query.validator = Valid\u00E1tor dotazu -DPUDetail.query.validator.description = Valid\u00E1cia {0}. Dotaz nezbehol: {1} -DPUDetail.read-only.mode = \ - Iba na \u010D\u00EDtanie -DPUDetail.save = Ulo\u017Ei\u0165 -DPUDetail.save.fail.dialog = Nepodarilo sa ulo\u017Ei\u0165 konfigur\u00E1ciu. D\u00F4vod: -DPUDetail.saveAs = Ulo\u017Ei\u0165 ako \u0161abl\u00F3nu kroku -DPUDetail.saveAs.dialog = Ulo\u017Ei\u0165 ako nov\u00FA \u0161abl\u00F3nu kroku? - -DPUGeneralDetail.custom.description = Pou\u017Ei\u0165 vlastn\u00FD popis -DPUGeneralDetail.description = Popis -DPUGeneralDetail.dpu.filled = N\u00E1zov kroku mus\u00ED by\u0165 vyplnen\u00FD! -DPUGeneralDetail.dpu.saving.error = Chyba pri ukladan\u00ED konfigur\u00E1cie kroku. D\u00F4vod: -DPUGeneralDetail.name = N\u00E1zov -DPUGeneralDetail.parent = Rodi\u010D -DPUGeneralDetail.parent.not.set = rodi\u010D nie je nastaven\u00FD! +DPUDetail.configuration.problem = Konfigura\u010Dn\u00FD probl\u00E9m +DPUDetail.configuration.store.fail = Met\u00F3da na ulo\u017Eenie konfigur\u00E1cie hodila v\u00FDnimku: +DPUDetail.copy = Kop\u00EDrova\u0165 zo \u0161abl\u00F3ny +DPUDetail.detail = {0} detail {1} +DPUDetail.dpu.loadFail.dialog = Zlyhalo na\u010D\u00EDtanie kroku, +DPUDetail.exception.message = V\u00FDnimka: {0}, Spr\u00E1va: {1} +DPUDetail.missing.jar = Ch\u00FDba jar s\u00FAbor pre krok. +DPUDetail.query.validator = Valid\u00E1tor dotazu +DPUDetail.query.validator.description = Valid\u00E1cia {0}. Dotaz nezbehol: {1} +DPUDetail.read-only.mode = \ - Iba na \u010D\u00EDtanie +DPUDetail.save = Ulo\u017Ei\u0165 +DPUDetail.save.fail.dialog = Nepodarilo sa ulo\u017Ei\u0165 konfigur\u00E1ciu. D\u00F4vod: +DPUDetail.saveAs = Ulo\u017Ei\u0165 ako \u0161abl\u00F3nu kroku +DPUDetail.saveAs.dialog = Ulo\u017Ei\u0165 ako nov\u00FA \u0161abl\u00F3nu kroku? + +DPUGeneralDetail.custom.description = Pou\u017Ei\u0165 vlastn\u00FD popis +DPUGeneralDetail.description = Popis +DPUGeneralDetail.dpu.filled = N\u00E1zov kroku mus\u00ED by\u0165 vyplnen\u00FD! +DPUGeneralDetail.dpu.saving.error = Chyba pri ukladan\u00ED konfigur\u00E1cie kroku. D\u00F4vod: +DPUGeneralDetail.name = N\u00E1zov +DPUGeneralDetail.parent = Rodi\u010D +DPUGeneralDetail.parent.not.set = rodi\u010D nie je nastaven\u00FD! DPUGeneralDetail.template.configuration = Pou\u017Ei\u0165 \u0161abl\u00F3nu na konfigur\u00E1ciu -DPUPresenterImpl.cannot.remove.dpu = Krok nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee m\u00E1 potomkov -DPUPresenterImpl.configuration.save.failed = Konfigur\u00E1cia nebola ulo\u017Een\u00E1. -DPUPresenterImpl.copy.of = K\u00F3pia -DPUPresenterImpl.delete.dialog = Skuto\u010Dne chcete zmaza\u0165 "{0}" proces a asociovan\u00E9 z\u00E1znamy (In\u0161tancie kroku napr.)? -DPUPresenterImpl.delete.dialog.confirmation = Potvrdi\u0165 zmazanie procesu +DPUPresenterImpl.cannot.remove.dpu = Krok nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee m\u00E1 potomkov +DPUPresenterImpl.configuration.save.failed = Konfigur\u00E1cia nebola ulo\u017Een\u00E1. +DPUPresenterImpl.copy.of = K\u00F3pia +DPUPresenterImpl.delete.dialog = Skuto\u010Dne chcete zmaza\u0165 "{0}" proces a asociovan\u00E9 z\u00E1znamy (In\u0161tancie kroku napr.)? +DPUPresenterImpl.delete.dialog.confirmation = Potvrdi\u0165 zmazanie procesu DPUPresenterImpl.delete.dialog.confirmation.cancel = Zrusi\u0165 DPUPresenterImpl.delete.dialog.confirmation.delete = Zmaza\u0165 proces -DPUPresenterImpl.dpu.not.removed = \u0160abl\u00F3nu kroku nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee sa pou\u017E\u00EDva v procese: -DPUPresenterImpl.dpu.removed = \u0160abl\u00F3na kroku bola odstr\u00E1nen\u00E1 -DPUPresenterImpl.dpu.used = \u0160abl\u00F3nu kroku nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee sa pou\u017E\u00EDva v procese: -DPUPresenterImpl.dpurecord.saved = \u0160abl\u00F3na kroku bola ulo\u017Een\u00E1 -DPUPresenterImpl.not.supported = Nie je podporovan\u00E9. -DPUPresenterImpl.pipeline.running = Proces {0} je aktu\u00E1lne v stave (QUEUED alebo RUNNING) a nie je mo\u017En\u00E9 ho odstr\u00E1ni\u0165! -DPUPresenterImpl.replace.failed = Nepodarilo sa nahradi\u0165 krok -DPUPresenterImpl.replace.finished = Nahradenie ukon\u010Den\u00E9 -DPUPresenterImpl.unExpected.error = Neo\u010Dak\u00E1van\u00E1 chyba. Konfigur\u00E1ciu nie je mo\u017En\u00E9 ulo\u017Ei\u0165. -DPUPresenterImpl.unsaved.changes = Neulo\u017Een\u00E9 zmeny -DPUPresenterImpl.unsaved.changes.cancel = Zru\u0161i\u0165 -DPUPresenterImpl.unsaved.changes.dialog = Neulo\u017Een\u00E9 zmeny. Chcete ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? -DPUPresenterImpl.unsaved.changes.discard = Zru\u0161i\u0165 zmeny -DPUPresenterImpl.unsaved.changes.save = Ulo\u017Ei\u0165 +DPUPresenterImpl.dpu.not.removed = \u0160abl\u00F3nu kroku nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee sa pou\u017E\u00EDva v procese: +DPUPresenterImpl.dpu.removed = \u0160abl\u00F3na kroku bola odstr\u00E1nen\u00E1 +DPUPresenterImpl.dpu.used = \u0160abl\u00F3nu kroku nie je mo\u017En\u00E9 odstr\u00E1ni\u0165 preto\u017Ee sa pou\u017E\u00EDva v procese: +DPUPresenterImpl.dpurecord.saved = \u0160abl\u00F3na kroku bola ulo\u017Een\u00E1 +DPUPresenterImpl.not.supported = Nie je podporovan\u00E9. +DPUPresenterImpl.pipeline.running = Proces {0} je aktu\u00E1lne v stave (QUEUED alebo RUNNING) a nie je mo\u017En\u00E9 ho odstr\u00E1ni\u0165! +DPUPresenterImpl.replace.failed = Nepodarilo sa nahradi\u0165 krok +DPUPresenterImpl.replace.finished = Nahradenie ukon\u010Den\u00E9 +DPUPresenterImpl.unExpected.error = Neo\u010Dak\u00E1van\u00E1 chyba. Konfigur\u00E1ciu nie je mo\u017En\u00E9 ulo\u017Ei\u0165. +DPUPresenterImpl.unsaved.changes = Neulo\u017Een\u00E9 zmeny +DPUPresenterImpl.unsaved.changes.cancel = Zru\u0161i\u0165 +DPUPresenterImpl.unsaved.changes.dialog = Neulo\u017Een\u00E9 zmeny. Chcete ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? +DPUPresenterImpl.unsaved.changes.discard = Zru\u0161i\u0165 zmeny +DPUPresenterImpl.unsaved.changes.save = Ulo\u017Ei\u0165 DPURecordWrap.configure = Nepodarilo sa nakonfigurova\u0165 dial\u00F3g kroku. DPURecordWrap.exception = Konfigura\u010Dn\u00FD dial\u00F3g hodil v\u00FDnimku. DPURecordWrap.load = Nepodarilo sa na\u010D\u00EDta\u0165 dial\u00F3g. DPURecordWrap.save = Nepodarilo sa ulo\u017Ei\u0165 konfigur\u00E1ciu. -DPUTemplateDetail.description.jar = Popis JAR s\u00FAboru: -DPUTemplateDetail.jar.error = Vybran\u00FD s\u00FAbor nie je .jar s\u00FAbor -DPUTemplateDetail.path.jar = JAR cesta: -DPUTemplateDetail.replace = Nahradi\u0165 +DPUTemplateDetail.description.jar = Popis JAR s\u00FAboru: +DPUTemplateDetail.jar.error = Vybran\u00FD s\u00FAbor nie je .jar s\u00FAbor +DPUTemplateDetail.path.jar = JAR cesta: +DPUTemplateDetail.replace = Nahradi\u0165 DPUTemplateDetail.uploading.failed = Posielanie {0} zlyhalo. -DPUTemplateDetail.visibility = Vidite\u013Enos\u0165: +DPUTemplateDetail.visibility = Vidite\u013Enos\u0165: -DPUTemplatesExport.cancel = Zru\u0161i\u0165 -DPUTemplatesExport.checkAll = Skontrolova\u0165 v\u0161etko -DPUTemplatesExport.dpu.templates = \u0160abl\u00F3ny krokov -DPUTemplatesExport.export = Export -DPUTemplatesExport.export.fail = Nepodarilo sa exportova\u0165 \u0161abl\u00F3ny. +DPUTemplatesExport.cancel = Zru\u0161i\u0165 +DPUTemplatesExport.checkAll = Skontrolova\u0165 v\u0161etko +DPUTemplatesExport.dpu.templates = \u0160abl\u00F3ny krokov +DPUTemplatesExport.export = Export +DPUTemplatesExport.export.fail = Nepodarilo sa exportova\u0165 \u0161abl\u00F3ny. DPUTemplatesExport.export.fail.fileNotFound = Nepodarilo sa exportova\u0165 \u0161abl\u00F3ny. -DPUTemplatesExport.template = N\u00E1zov \u0161abl\u00F3ny -DPUTemplatesExport.type = Typ -DPUTemplatesExport.uncheckAll = Od\u0161ktrn\u00FA\u0165 v\u0161etky - -DPUTree.create.dpu = Vytvori\u0165 \u0161abl\u00F3nu kroku -DPUTree.expand.tree = Expandova\u0165 strom krokov -DPUTree.export.dpu = Exportova\u0165 \u0161abl\u00F3ny krokov -DPUTree.extractors = Stiahnutie d\u00E1t -DPUTree.filter.tree = Filtrujte kroky -DPUTree.loaders = Publik\u00E1cia d\u00E1t +DPUTemplatesExport.template = N\u00E1zov \u0161abl\u00F3ny +DPUTemplatesExport.type = Typ +DPUTemplatesExport.uncheckAll = Od\u0161ktrn\u00FA\u0165 v\u0161etky + +DPUTree.create.dpu = Vytvori\u0165 \u0161abl\u00F3nu kroku +DPUTree.expand.tree = Expandova\u0165 strom krokov +DPUTree.export.dpu = Exportova\u0165 \u0161abl\u00F3ny krokov +DPUTree.extractors = Stiahnutie d\u00E1t +DPUTree.filter.tree = Filtrujte kroky +DPUTree.loaders = Publik\u00E1cia d\u00E1t DPUTree.minimize.tree = Minimalizov\u0165 strom krokov -DPUTree.private.only = Len osobn\u00E9 \u0161abl\u00F3ny krokov -DPUTree.quality = Kvalita +DPUTree.private.only = Len osobn\u00E9 \u0161abl\u00F3ny krokov +DPUTree.quality = Kvalita DPUTree.template.tree = Strom \u0161abl\u00F3n krokov -DPUTree.transformers = Transform\u00E1cie d\u00E1t -DPUTree.unknown = Nezn\u00E1my typ: - -DPUViewImpl.actionColumn.delete = Zmaza\u0165 -DPUViewImpl.actionColumn.detail = Detail -DPUViewImpl.actionColumn.status = Stav -DPUViewImpl.configuration.problem = Konfigura\u010Dn\u00FD probl\u00E9m -DPUViewImpl.copy = Kop\u00EDrova\u0165 -DPUViewImpl.create.template = Vytvori\u0165 \u0161abl\u00F3nu kroku -DPUViewImpl.defaultDpuDescription = Vi\u010F z\u00E1lo\u017Eka Konfigur\u00E1cia, O kroku -DPUViewImpl.delete = Zmaza\u0165 -DPUViewImpl.delete.confirmation = Potvrdenie zmazania \u0161abl\u00F3ny kroku -DPUViewImpl.delete.confirmation.cancelButton = Zru\u0161i\u0165 -DPUViewImpl.delete.confirmation.deleteButton = Zmaza\u0165 -DPUViewImpl.delete.confirmation.description = Zmaza\u0165 {0} \u0161abl\u00F3nu kroku? -DPUViewImpl.description = Popis: -DPUViewImpl.dpu.configuration.changes = Konfigura\u010Dn\u00FD dial\u00F3g kroku sa zobraz\u00ED ak po\u017Eiadate o zmeny. Predpoklad\u00E1 sa, \u017Ee bude zmenen\u00FD. -DPUViewImpl.dpu.instances = In\u0161tancie kroku -DPUViewImpl.exception.configuration.fail = Nepodarilo sa na\u010D\u00EDta\u0165 konfigura\u010Dn\u00FD dial\u00F3g -DPUViewImpl.export = Export -DPUViewImpl.export.all = Exportova\u0165 v\u0161etko -DPUViewImpl.file.not.jar = Vybran\u00FD s\u00FAbor nie je .jar s\u00FAbor -DPUViewImpl.fileNotFound = S\u00FAbor nebol n\u00E1jden\u00FD +DPUTree.transformers = Transform\u00E1cie d\u00E1t +DPUTree.unknown = Nezn\u00E1my typ: + +DPUViewImpl.actionColumn.delete = Zmaza\u0165 +DPUViewImpl.actionColumn.detail = Detail +DPUViewImpl.actionColumn.status = Stav +DPUViewImpl.configuration.problem = Konfigura\u010Dn\u00FD probl\u00E9m +DPUViewImpl.copy = Kop\u00EDrova\u0165 +DPUViewImpl.create.template = Vytvori\u0165 \u0161abl\u00F3nu kroku +DPUViewImpl.defaultDpuDescription = Vi\u010F z\u00E1lo\u017Eka Konfigur\u00E1cia, O kroku +DPUViewImpl.delete = Zmaza\u0165 +DPUViewImpl.delete.confirmation = Potvrdenie zmazania \u0161abl\u00F3ny kroku +DPUViewImpl.delete.confirmation.cancelButton = Zru\u0161i\u0165 +DPUViewImpl.delete.confirmation.deleteButton = Zmaza\u0165 +DPUViewImpl.delete.confirmation.description = Zmaza\u0165 {0} \u0161abl\u00F3nu kroku? +DPUViewImpl.description = Popis: +DPUViewImpl.dpu.configuration.changes = Konfigura\u010Dn\u00FD dial\u00F3g kroku sa zobraz\u00ED ak po\u017Eiadate o zmeny. Predpoklad\u00E1 sa, \u017Ee bude zmenen\u00FD. +DPUViewImpl.dpu.instances = In\u0161tancie kroku +DPUViewImpl.exception.configuration.fail = Nepodarilo sa na\u010D\u00EDta\u0165 konfigura\u010Dn\u00FD dial\u00F3g +DPUViewImpl.export = Export +DPUViewImpl.export.all = Exportova\u0165 v\u0161etko +DPUViewImpl.file.not.jar = Vybran\u00FD s\u00FAbor nie je .jar s\u00FAbor +DPUViewImpl.fileNotFound = S\u00FAbor nebol n\u00E1jden\u00FD DPUViewImpl.fileNotFound.configuration.load.fail = Nepodarilo sa na\u010D\u00EDta\u0165 konfigura\u010Dn\u00FD dial\u00F3g -DPUViewImpl.general = V\u0161eobecn\u00FD -DPUViewImpl.import.template = Importova\u0165 \u0161abl\u00F3nu kroku -DPUViewImpl.jar.description = Popis JAR s\u00FAboru: -DPUViewImpl.jar.path = cesta k JARu: -DPUViewImpl.name = N\u00E1zov: -DPUViewImpl.name.empty = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! -DPUViewImpl.pipelines = Procesy: -DPUViewImpl.replace = Nahradi\u0165 -DPUViewImpl.save = Ulo\u017Ei\u0165 -DPUViewImpl.select.dpu.info = Vyberte \u0161abl\u00F3nu kroku zo stromu \u0161abl\u00F3n krokov na zobrazenie detailov. -DPUViewImpl.template.configuration = Konfigur\u00E1cia \u0161abl\u00F3ny -DPUViewImpl.unexpected.error = Neo\u010Dak\u00E1van\u00E1 chyba. Konfigura\u010Dn\u00FD dial\u00F3g sa nemusel na\u010D\u00EDta\u0165 spr\u00E1vne. -DPUViewImpl.uploding.failed = Posielanie {0} zlyhalo. -DPUViewImpl.validation.error = Chyba pri valid\u00E1cii kroku -DPUViewImpl.visibility = Vidite\u013Enos\u0165: -DPUViewImpl.visibility.help.public = Majte pros\u00EDm na pam\u00E4ti, \u017Ee verejn\u00E9 DPU \u0161abl\u00F3ny m\u00F4\u017Eu by\u0165 zobrazen\u00E9 ak\u00FDmko\u013Evek pou\u017E\u00EDvate\u013Eov. Nikdy do nich nezad\u00E1vajte d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovacie men\u00E1, hesl\u00E1 a in\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) +DPUViewImpl.general = V\u0161eobecn\u00FD +DPUViewImpl.import.template = Importova\u0165 \u0161abl\u00F3nu kroku +DPUViewImpl.jar.description = Popis JAR s\u00FAboru: +DPUViewImpl.jar.path = cesta k JARu: +DPUViewImpl.name = N\u00E1zov: +DPUViewImpl.name.empty = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! +DPUViewImpl.pipelines = Procesy: +DPUViewImpl.replace = Nahradi\u0165 +DPUViewImpl.save = Ulo\u017Ei\u0165 +DPUViewImpl.select.dpu.info = Vyberte \u0161abl\u00F3nu kroku zo stromu \u0161abl\u00F3n krokov na zobrazenie detailov. +DPUViewImpl.template.configuration = Konfigur\u00E1cia \u0161abl\u00F3ny +DPUViewImpl.unexpected.error = Neo\u010Dak\u00E1van\u00E1 chyba. Konfigura\u010Dn\u00FD dial\u00F3g sa nemusel na\u010D\u00EDta\u0165 spr\u00E1vne. +DPUViewImpl.uploding.failed = Posielanie {0} zlyhalo. +DPUViewImpl.validation.error = Chyba pri valid\u00E1cii kroku +DPUViewImpl.visibility = Vidite\u013Enos\u0165: +DPUViewImpl.visibility.help.public = Majte pros\u00EDm na pam\u00E4ti, \u017Ee verejn\u00E9 DPU \u0161abl\u00F3ny m\u00F4\u017Eu by\u0165 zobrazen\u00E9 ak\u00FDmko\u013Evek pou\u017E\u00EDvate\u013Eov. Nikdy do nich nezad\u00E1vajte d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovacie men\u00E1, hesl\u00E1 a in\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) DataBrowser.browser =

Prehliada\u010D DataUnitNamesValidator.same.dataunit = Krok obsahuje dve d\u00E1tov\u00E9 jednotky sa rovnak\u00FDm menom (''{0}'')! -DataUnitSelector.browse = Prezera\u0165 +DataUnitSelector.browse = Prezera\u0165 DataUnitSelector.dataUnit = Vybra\u0165 d\u00E1tov\u00FA jednotku: -DataUnitSelector.dpu = Vybra\u0165 krok: -DataUnitSelector.input = Vstup -DataUnitSelector.output = V\u00FDstup +DataUnitSelector.dpu = Vybra\u0165 krok: +DataUnitSelector.input = Vstup +DataUnitSelector.output = V\u00FDstup DbCachedSource.data.failed = Nepodarilo sa na\u010D\u00EDta\u0165 d\u00E1ta. DbCachedSource.index.fail = Nebolo mo\u017En\u00E9 ur\u010Di\u0165 index neulo\u017Een\u00FDch d\u00E1t. -DebuggingView.browse = Prezera\u0165/Dotaz +DebuggingView.browse = Prezera\u0165/Dotaz DebuggingView.case.browse = Prezera\u0165 -DebuggingView.download = Stiahnu\u0165 v\u0161etky logy -DebuggingView.events = Udalosti -DebuggingView.log = Logy -DebuggingView.options = Mo\u017Enosti -DebuggingView.refresh = Obnovi\u0165 automaticky -DebuggingView.status = Stav procesu: - -DecorationHelper.manual = Manu\u00E1ny +DebuggingView.download = Stiahnu\u0165 v\u0161etky logy +DebuggingView.events = Udalosti +DebuggingView.log = Logy +DebuggingView.options = Mo\u017Enosti +DebuggingView.refresh = Obnovi\u0165 automaticky +DebuggingView.status = Stav procesu: + +DecorationHelper.manual = Manu\u00E1ny DecorationHelper.shceduled = \u010Casovan\u00FD EdgeDetail.available.mappings = Dostupn\u00E9 prepojenia: @@ -215,63 +215,63 @@ EdgeDetail.output.dataUnits = V\u00FDstupn\u00E9 d\u00E1tov\u00E9 jednotky zdr EdgeDetail.run.after = Spusti\u0165 po EdgeDetail.save = Ulo\u017Ei\u0165 -EmailComponent.email.duplicate = duplicitn\u00FD e-mail +EmailComponent.email.duplicate = duplicitn\u00FD e-mail EmailComponent.email.not.filled = e-mail mus\u00ED by\u0165 vyplnen\u00FD -EmailComponent.email.prompt = user@email.com -EmailComponent.email.wrong = zl\u00FD form\u00E1t e-mailu +EmailComponent.email.prompt = user@email.com +EmailComponent.email.wrong = zl\u00FD form\u00E1t e-mailu -EmailNotifications.bulk.report = Denn\u00E1 hromadn\u00E1 spr\u00E1va +EmailNotifications.bulk.report = Denn\u00E1 hromadn\u00E1 spr\u00E1va EmailNotifications.bulk.report.default = Denn\u00E1 hromadn\u00E1 spr\u00E1va (predvolen\u00E9) -EmailNotifications.error = Chyba pri spracovan\u00ED: -EmailNotifications.instant = Okam\u017Eit\u00E1 spr\u00E1va -EmailNotifications.instant.default = Okam\u017Eit\u00E1 spr\u00E1va (predvolen\u00E9) -EmailNotifications.manual = Posiela\u0165 spr\u00E1vy pre nepl\u00E1novan\u00E9 spracovania (pou\u017Eij\u00FA sa rovnak\u00E9 nastavenia ako pre pl\u00E1novan\u00E9 spracovania) -EmailNotifications.no.report = Bez spr\u00E1vy -EmailNotifications.no.report.default = Bez spr\u00E1vy (predvolen\u00E9) -EmailNotifications.started = Za\u010Diatok spracovania: -EmailNotifications.successful = \u00DAspe\u0161n\u00E9 spracovanie: - -ExecutionAccessor.duration = Trvanie -ExecutionAccessor.id = Id +EmailNotifications.error = Chyba pri spracovan\u00ED: +EmailNotifications.instant = Okam\u017Eit\u00E1 spr\u00E1va +EmailNotifications.instant.default = Okam\u017Eit\u00E1 spr\u00E1va (predvolen\u00E9) +EmailNotifications.manual = Posiela\u0165 spr\u00E1vy pre nepl\u00E1novan\u00E9 spracovania (pou\u017Eij\u00FA sa rovnak\u00E9 nastavenia ako pre pl\u00E1novan\u00E9 spracovania) +EmailNotifications.no.report = Bez spr\u00E1vy +EmailNotifications.no.report.default = Bez spr\u00E1vy (predvolen\u00E9) +EmailNotifications.started = Za\u010Diatok spracovania: +EmailNotifications.successful = \u00DAspe\u0161n\u00E9 spracovanie: + +ExecutionAccessor.duration = Trvanie +ExecutionAccessor.id = Id ExecutionAccessor.isDebugging = Debug -ExecutionAccessor.lastChange = Posledn\u00E1 zmena -ExecutionAccessor.owner = Spracoval -ExecutionAccessor.pipeline = Proces -ExecutionAccessor.schedule = Pl\u00E1novan\u00FD -ExecutionAccessor.started = Za\u010Diatok -ExecutionAccessor.status = Stav +ExecutionAccessor.lastChange = Posledn\u00E1 zmena +ExecutionAccessor.owner = Spracoval +ExecutionAccessor.pipeline = Proces +ExecutionAccessor.schedule = Pl\u00E1novan\u00FD +ExecutionAccessor.started = Za\u010Diatok +ExecutionAccessor.status = Stav ExecutionListPresenterImpl.error = Spracovanie s ID={0} neexistuje! -ExecutionListViewImpl.FALSE = NEPRAVDA -ExecutionListViewImpl.TRUE = PRAVDA -ExecutionListViewImpl.actions = Akcie +ExecutionListViewImpl.FALSE = NEPRAVDA +ExecutionListViewImpl.TRUE = PRAVDA +ExecutionListViewImpl.actions = Akcie ExecutionListViewImpl.back.to.exexution = N\u00E1vrat do monitoru spracovania -ExecutionListViewImpl.cancel = Zru\u0161i\u0165 -ExecutionListViewImpl.clear.filters = Vy\u010Disti\u0165 filtre -ExecutionListViewImpl.clear.sort = Vy\u010Disti\u0165 triedenie -ExecutionListViewImpl.debug = Debugova\u0165 -ExecutionListViewImpl.debug.data = Debugovan\u00E9 d\u00E1ta -ExecutionListViewImpl.debug.pipeline = Debugovan\u00FD proces -ExecutionListViewImpl.detail = Detail -ExecutionListViewImpl.inDebug.false = Nepravda -ExecutionListViewImpl.inDebug.true = Pravda -ExecutionListViewImpl.manual = Manu\u00E1lny -ExecutionListViewImpl.refresh = Obnovi\u0165 -ExecutionListViewImpl.run = Spusti\u0165 -ExecutionListViewImpl.run.pipeline = Spusti\u0165 proces -ExecutionListViewImpl.scheduled = Pl\u00E1novan\u00FD -ExecutionListViewImpl.show.log = Uk\u00E1za\u0165 log - -ExecutionViewAccessor.duration = Trvanie -ExecutionViewAccessor.id = Id +ExecutionListViewImpl.cancel = Zru\u0161i\u0165 +ExecutionListViewImpl.clear.filters = Vy\u010Disti\u0165 filtre +ExecutionListViewImpl.clear.sort = Vy\u010Disti\u0165 triedenie +ExecutionListViewImpl.debug = Debugova\u0165 +ExecutionListViewImpl.debug.data = Debugovan\u00E9 d\u00E1ta +ExecutionListViewImpl.debug.pipeline = Debugovan\u00FD proces +ExecutionListViewImpl.detail = Detail +ExecutionListViewImpl.inDebug.false = Nepravda +ExecutionListViewImpl.inDebug.true = Pravda +ExecutionListViewImpl.manual = Manu\u00E1lny +ExecutionListViewImpl.refresh = Obnovi\u0165 +ExecutionListViewImpl.run = Spusti\u0165 +ExecutionListViewImpl.run.pipeline = Spusti\u0165 proces +ExecutionListViewImpl.scheduled = Pl\u00E1novan\u00FD +ExecutionListViewImpl.show.log = Uk\u00E1za\u0165 log + +ExecutionViewAccessor.duration = Trvanie +ExecutionViewAccessor.id = Id ExecutionViewAccessor.isDebugging = Debug -ExecutionViewAccessor.lastChange = Posledn\u00E1 zmena -ExecutionViewAccessor.owner = Spracoval -ExecutionViewAccessor.pipeline = Proces -ExecutionViewAccessor.schedule = Pl\u00E1novan\u00FD -ExecutionViewAccessor.started = Za\u010Diatok -ExecutionViewAccessor.status = Stav +ExecutionViewAccessor.lastChange = Posledn\u00E1 zmena +ExecutionViewAccessor.owner = Spracoval +ExecutionViewAccessor.pipeline = Proces +ExecutionViewAccessor.schedule = Pl\u00E1novan\u00FD +ExecutionViewAccessor.started = Za\u010Diatok +ExecutionViewAccessor.status = Stav FileQueryView.browser.not.available =  Prehliada\u010D nie je dostupn\u00FD. @@ -290,60 +290,60 @@ IntlibFilterDecorator.set = Nastavi\u0165 IntlibFilterDecorator.to = Do IntlibFilterDecorator.true = Pravda -IntlibPagedTable.page = Strana:  +IntlibPagedTable.page = Strana:  IntlibPagedTable.records = Po\u010Det z\u00E1znamov: -LogMessageDetail.close = Zatvori\u0165 -LogMessageDetail.level = \u00DArove\u0148: +LogMessageDetail.close = Zatvori\u0165 +LogMessageDetail.level = \u00DArove\u0148: LogMessageDetail.log.message = Detail spr\u00E1vy -LogMessageDetail.message = Spr\u00E1va: -LogMessageDetail.source = Zdroj: -LogMessageDetail.time = \u010Cas: +LogMessageDetail.message = Spr\u00E1va: +LogMessageDetail.source = Zdroj: +LogMessageDetail.time = \u010Cas: -Login.admin.contact = Pre vytvorenie \u00FA\u010Dtu pros\u00EDm kontaktujte administr\u00E1tora na adrese: {0}. -Login.database.error = Chyba datab\u00E1zy, pros\u00EDm skontrolujte pripojenie a konfigur\u00E1ciu DB. +Login.admin.contact = Pre vytvorenie \u00FA\u010Dtu pros\u00EDm kontaktujte administr\u00E1tora na adrese: {0}. +Login.database.error = Chyba datab\u00E1zy, pros\u00EDm skontrolujte pripojenie a konfigur\u00E1ciu DB. Login.invalid.credentials = Neplatn\u00E9 prihlasovacie \u00FAdaje pre pou\u017E\u00EDvate\u013Esk\u00E9 meno {0}. -Login.login =

Prihl\u00E1senie

-Login.login.button = Prihl\u00E1si\u0165 -Login.password = Heslo: -Login.rememberMe = Pam\u00E4taj si ma -Login.user = Pou\u017E\u00EDvate\u013E: +Login.login =

Prihl\u00E1senie

+Login.login.button = Prihl\u00E1si\u0165 +Login.password = Heslo: +Login.rememberMe = Pam\u00E4taj si ma +Login.user = Pou\u017E\u00EDvate\u013E: MaxLengthValidator.exception = Maxim\u00E1lna d\u013A\u017Eka je {0} znakov! Aktu\u00E1lna d\u013A\u017Eka je {1} znakov! -MenuLayout.backend.offline = Server je offline! -MenuLayout.backend.online = Server je online! -MenuLayout.dpuTemplates = \u0160abl\u00F3ny krokov +MenuLayout.backend.offline = Server je offline! +MenuLayout.backend.online = Server je online! +MenuLayout.dpuTemplates = \u0160abl\u00F3ny krokov MenuLayout.executionMonitor = Monitor behu -MenuLayout.home = Domov -MenuLayout.icon.logout = Odhl\u00E1si\u0165 -MenuLayout.logout = Odhl\u00E1si\u0165 -MenuLayout.pipelines = Procesy -MenuLayout.scheduler = Pl\u00E1nova\u010D -MenuLayout.settings = Nastavenia - -MessageRecordAccessor.dpu = In\u0161tancie kroku -MessageRecordAccessor.short = Kr\u00E1tka spr\u00E1va +MenuLayout.home = Domov +MenuLayout.icon.logout = Odhl\u00E1si\u0165 +MenuLayout.logout = Odhl\u00E1si\u0165 +MenuLayout.pipelines = Procesy +MenuLayout.scheduler = Pl\u00E1nova\u010D +MenuLayout.settings = Nastavenia + +MessageRecordAccessor.dpu = In\u0161tancie kroku +MessageRecordAccessor.short = Kr\u00E1tka spr\u00E1va MessageRecordAccessor.timestamp = \u010Casov\u00E1 zn\u00E1mka -MessageRecordAccessor.type = Typ +MessageRecordAccessor.type = Typ -NamespacePrefixes.actions = Akcie -NamespacePrefixes.delete = Zmaza\u0165 -NamespacePrefixes.dialog.cancel = Zru\u0161i\u0165 -NamespacePrefixes.dialog.delete = Zmaza\u0165 +NamespacePrefixes.actions = Akcie +NamespacePrefixes.delete = Zmaza\u0165 +NamespacePrefixes.dialog.cancel = Zru\u0161i\u0165 +NamespacePrefixes.dialog.delete = Zmaza\u0165 NamespacePrefixes.dialog.delete.prefix = Potvrdi\u0165 zmazanie prefixu -NamespacePrefixes.dialog.description = Zmaza\u0165 {0} prefix? -NamespacePrefixes.edit = Editova\u0165 -NamespacePrefixes.filters.clear = Vy\u010Disti\u0165 filtre -NamespacePrefixes.id = ID -NamespacePrefixes.prefix.URI = Prefix URI -NamespacePrefixes.prefix.name = Prefix meno -NamespacePrefixes.prefix.new = Vytvori\u0165 nov\u00FD prefix - -NewLogAccessor.dpu = In\u0161tancia kroku -NewLogAccessor.message = Spr\u00E1va +NamespacePrefixes.dialog.description = Zmaza\u0165 {0} prefix? +NamespacePrefixes.edit = Editova\u0165 +NamespacePrefixes.filters.clear = Vy\u010Disti\u0165 filtre +NamespacePrefixes.id = ID +NamespacePrefixes.prefix.URI = Prefix URI +NamespacePrefixes.prefix.name = Prefix meno +NamespacePrefixes.prefix.new = Vytvori\u0165 nov\u00FD prefix + +NewLogAccessor.dpu = In\u0161tancia kroku +NewLogAccessor.message = Spr\u00E1va NewLogAccessor.timestamp = \u010Casov\u00E1 zn\u00E1mka -NewLogAccessor.type = Typ +NewLogAccessor.type = Typ PRIVATE = Priv\u00E1tny @@ -351,435 +351,436 @@ PUBLIC_RO = Verejn\u00FD (Len na \u010D\u00EDtanie) PUBLIC_RW = Verejn\u00FD -PipelineAccessor.id = Id +PipelineAccessor.id = Id PipelineAccessor.lastExecution = Posledn\u00E9 spracovanie -PipelineAccessor.lastRun = Posledn\u00E9 spustenie -PipelineAccessor.lastStatus = Posledn\u00FD stav -PipelineAccessor.name = N\u00E1zov - -PipelineCanvas.edge.failed = Nepodarilo sa prida\u0165 hranu -PipelineCanvas.edge.from = Hrana od {0} do {1}: {2}.\r\n -PipelineCanvas.invalid.mappings = Bolo n\u00E1jden\u00E9 neplatn\u00E9 prepojenie! -PipelineCanvas.mandatory.missing = Ch\u00FDba povinn\u00FD vstup/v\u00FDstupy! -PipelineCanvas.pipeline.invalid = Proces obsahoval neplatn\u00E9 prepojenia, ktor\u00E9 boli odstr\u00E1nen\u00E9. Zoznam odstr\u00E1nen\u00FDch prepojen\u00ED: +PipelineAccessor.lastRun = Posledn\u00E9 spustenie +PipelineAccessor.lastStatus = Posledn\u00FD stav +PipelineAccessor.name = N\u00E1zov + +PipelineCanvas.edge.failed = Nepodarilo sa prida\u0165 hranu +PipelineCanvas.edge.from = Hrana od {0} do {1}: {2}.\r\n +PipelineCanvas.invalid.mappings = Bolo n\u00E1jden\u00E9 neplatn\u00E9 prepojenie! +PipelineCanvas.mandatory.missing = Ch\u00FDba povinn\u00FD vstup/v\u00FDstupy! +PipelineCanvas.pipeline.invalid = Proces obsahoval neplatn\u00E9 prepojenia, ktor\u00E9 boli odstr\u00E1nen\u00E9. Zoznam odstr\u00E1nen\u00FDch prepojen\u00ED: PipelineCanvas.pipeline.invalid.blank.pipeline = Proces neobsahuje \u017Eiadnu DPU -PipelineCanvas.pipeline.valid = Proces je platn\u00FD! +PipelineCanvas.pipeline.valid = Proces je platn\u00FD! -PipelineConflicts.cancel = Zru\u0161i\u0165 -PipelineConflicts.clear.conflicts = Odstr\u00E1ni\u0165 z\u00E1vislosti +PipelineConflicts.cancel = Zru\u0161i\u0165 +PipelineConflicts.clear.conflicts = Odstr\u00E1ni\u0165 z\u00E1vislosti PipelineConflicts.conflicting.pipelines = Z\u00E1vislosti procesu -PipelineConflicts.description = Vyberte procesy, na ktor\u00FDch z\u00E1vis\u00ED tento proces. Tento proces bude be\u017Ea\u0165 iba v pr\u00EDpade ak nebe\u017E\u00ED \u017Eiaden proces, na ktorom z\u00E1vis\u00ED alebo ak v\u0161etky vybran\u00E9 procesy skon\u010Dia. -PipelineConflicts.ok = OK -PipelineConflicts.pipeline.conflicts = Z\u00E1vislosti procesu -PipelineConflicts.pipeline.list = Zoznam procesov - -PipelineEdit.align.bottom = Zarovna\u0165 nadol -PipelineEdit.align.left = Zarovna\u0165 na\u013Eavo -PipelineEdit.align.right = Zarovna\u0165 napravo -PipelineEdit.align.top = Zarovna\u0165 nahor -PipelineEdit.close = Zatvori\u0165 -PipelineEdit.conflict.another.user = In\u00FD pou\u017E\u00EDvate\u013E urobil zmeny vo verzii, ktor\u00FA editujete, pros\u00EDm obnovte detail procesu! -PipelineEdit.conflicts = Z\u00E1vislosti -PipelineEdit.copy = Kop\u00EDrova\u0165 -PipelineEdit.copy.and.close = Kop\u00EDrova\u0165 & Zatvori\u0165 -PipelineEdit.copy.notActual = Kop\u00EDruje sa neaktu\u00E1lna verzia -PipelineEdit.copy.notActual.cancel = Zru\u0161i\u0165 -PipelineEdit.copy.notActual.copyAnyway = Ponecha\u0165 kop\u00EDrovanie -PipelineEdit.copy.notActual.description = Kop\u00EDrujete verziu, ktor\u00E1 u\u017E nie je aktu\u00E1lna. V pr\u00EDpade ulo\u017Eenia nebudete vidie\u0165 zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom. -PipelineEdit.copy.unsaved = Kop\u00EDruje sa neulo\u017Een\u00FD proces. -PipelineEdit.copy.unsaved.cancel = Zru\u0161i\u0165 -PipelineEdit.copy.unsaved.copyAnyway = Vyn\u00FAti\u0165 kop\u00EDrovanie -PipelineEdit.copy.unsaved.description = Kop\u00EDrujete neulo\u017Een\u00FA verziu procesu. Skop\u00EDruje sa aktu\u00E1lna neulo\u017Eena verzia do nov\u00E9ho procesu; tento proces zostane nezmenen\u00FD a uzavrie sa. Kop\u00EDrovan\u00FD proces sa otvor\u00ED. -PipelineEdit.copyClose.notActual = Kop\u00EDruje sa neaktu\u00E1lna verzia -PipelineEdit.copyClose.notActual.cancel = Zru\u0161i\u0165 -PipelineEdit.copyClose.notActual.copyAnyway = Ponecha\u0165 kop\u00EDrovanie -PipelineEdit.copyClose.notActual.description = Kop\u00EDrujete verziu, ktor\u00E1 u\u017E nie je aktu\u00E1lna. V pr\u00EDpade ulo\u017Eenia nebudete vidie\u0165 zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom. -PipelineEdit.copyClose.unsaved = Kop\u00EDruje sa neulo\u017Een\u00E1 verzia procesu. -PipelineEdit.copyClose.unsaved.cancel = Zru\u0161i\u0165 -PipelineEdit.copyClose.unsaved.copyAnyway = Vyn\u00FAti\u0165 kop\u00EDrovanie -PipelineEdit.copyClose.unsaved.description = Kop\u00EDrujete neulo\u017Een\u00FA verziu procesu. S\u00FA\u010Dasn\u00E1 neulo\u017Een\u00E1 verzia bude skop\u00EDrovan\u00E1 do nov\u00E9ho procesu; tento proces zostane nezmenen\u00FD a uzavrie sa. -PipelineEdit.created.by = Vytvoril -PipelineEdit.debug.window = Debug okno -PipelineEdit.description = Popis -PipelineEdit.developMode.caption.develop = V\u00FDvoj -PipelineEdit.developMode.caption.standard = \u0160tandard -PipelineEdit.distribute.horizontally = Rozmiestni\u0165 horizont\u00E1lne -PipelineEdit.distribute.vertically = Rozmiestni\u0165 vertik\u00E1lne -PipelineEdit.exapand = Expandova\u0165 detail procesu -PipelineEdit.export = Export -PipelineEdit.export.fail.not.saved = Proces e\u0161te nebol ulo\u017Een\u00FD. Ulo\u017Ete a sk\u00FAste znova. -PipelineEdit.icon.align.bottom = Zarovna\u0165 nadol -PipelineEdit.icon.align.left = Zarovna\u0165 na\u013Eavo -PipelineEdit.icon.align.right = Zarovna\u0165 napravo -PipelineEdit.icon.align.top = Zarovna\u0165 nahor -PipelineEdit.icon.distribute.horizontally = Rozmiestni\u0165 horizont\u00E1lne -PipelineEdit.icon.distribute.vertically = Rozmiestni\u0165 vertik\u00E1lne -PipelineEdit.icon.undo = Vr\u00E1ti\u0165 zmeny -PipelineEdit.icon.zoomIn = Pribl\u00ED\u017Ei\u0165 -PipelineEdit.icon.zoomOut = Vdiali\u0165 -PipelineEdit.idLabel.id = ID -PipelineEdit.idValue.id = ID -PipelineEdit.minimize = Zmen\u0161i\u0165 detail procesu -PipelineEdit.name = N\u00E1zov -PipelineEdit.name.empty = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! -PipelineEdit.opening.error = Chyba pri otv\u00E1ran\u00ED detailu procesu. -PipelineEdit.opening.error.description = Nem\u00E1te opr\u00E1vnenie na prezeranie tohto procesu. -PipelineEdit.opening.error.notExisting = Chyba pri otv\u00E1ran\u00ED detailu procesu. +PipelineConflicts.description = Vyberte procesy, na ktor\u00FDch z\u00E1vis\u00ED tento proces. Tento proces bude be\u017Ea\u0165 iba v pr\u00EDpade ak nebe\u017E\u00ED \u017Eiaden proces, na ktorom z\u00E1vis\u00ED alebo ak v\u0161etky vybran\u00E9 procesy skon\u010Dia. +PipelineConflicts.ok = OK +PipelineConflicts.pipeline.conflicts = Z\u00E1vislosti procesu +PipelineConflicts.pipeline.list = Zoznam procesov + +PipelineEdit.align.bottom = Zarovna\u0165 nadol +PipelineEdit.align.left = Zarovna\u0165 na\u013Eavo +PipelineEdit.align.right = Zarovna\u0165 napravo +PipelineEdit.align.top = Zarovna\u0165 nahor +PipelineEdit.close = Zatvori\u0165 +PipelineEdit.conflict.another.user = In\u00FD pou\u017E\u00EDvate\u013E urobil zmeny vo verzii, ktor\u00FA editujete, pros\u00EDm obnovte detail procesu! +PipelineEdit.conflicts = Z\u00E1vislosti +PipelineEdit.copy = Kop\u00EDrova\u0165 +PipelineEdit.copy.and.close = Kop\u00EDrova\u0165 & Zatvori\u0165 +PipelineEdit.copy.notActual = Kop\u00EDruje sa neaktu\u00E1lna verzia +PipelineEdit.copy.notActual.cancel = Zru\u0161i\u0165 +PipelineEdit.copy.notActual.copyAnyway = Ponecha\u0165 kop\u00EDrovanie +PipelineEdit.copy.notActual.description = Kop\u00EDrujete verziu, ktor\u00E1 u\u017E nie je aktu\u00E1lna. V pr\u00EDpade ulo\u017Eenia nebudete vidie\u0165 zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom. +PipelineEdit.copy.unsaved = Kop\u00EDruje sa neulo\u017Een\u00FD proces. +PipelineEdit.copy.unsaved.cancel = Zru\u0161i\u0165 +PipelineEdit.copy.unsaved.copyAnyway = Vyn\u00FAti\u0165 kop\u00EDrovanie +PipelineEdit.copy.unsaved.description = Kop\u00EDrujete neulo\u017Een\u00FA verziu procesu. Skop\u00EDruje sa aktu\u00E1lna neulo\u017Eena verzia do nov\u00E9ho procesu; tento proces zostane nezmenen\u00FD a uzavrie sa. Kop\u00EDrovan\u00FD proces sa otvor\u00ED. +PipelineEdit.copyClose.notActual = Kop\u00EDruje sa neaktu\u00E1lna verzia +PipelineEdit.copyClose.notActual.cancel = Zru\u0161i\u0165 +PipelineEdit.copyClose.notActual.copyAnyway = Ponecha\u0165 kop\u00EDrovanie +PipelineEdit.copyClose.notActual.description = Kop\u00EDrujete verziu, ktor\u00E1 u\u017E nie je aktu\u00E1lna. V pr\u00EDpade ulo\u017Eenia nebudete vidie\u0165 zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom. +PipelineEdit.copyClose.unsaved = Kop\u00EDruje sa neulo\u017Een\u00E1 verzia procesu. +PipelineEdit.copyClose.unsaved.cancel = Zru\u0161i\u0165 +PipelineEdit.copyClose.unsaved.copyAnyway = Vyn\u00FAti\u0165 kop\u00EDrovanie +PipelineEdit.copyClose.unsaved.description = Kop\u00EDrujete neulo\u017Een\u00FA verziu procesu. S\u00FA\u010Dasn\u00E1 neulo\u017Een\u00E1 verzia bude skop\u00EDrovan\u00E1 do nov\u00E9ho procesu; tento proces zostane nezmenen\u00FD a uzavrie sa. +PipelineEdit.created.by = Vytvoril +PipelineEdit.debug.window = Debug okno +PipelineEdit.description = Popis +PipelineEdit.developMode.caption.develop = V\u00FDvoj +PipelineEdit.developMode.caption.standard = \u0160tandard +PipelineEdit.distribute.horizontally = Rozmiestni\u0165 horizont\u00E1lne +PipelineEdit.distribute.vertically = Rozmiestni\u0165 vertik\u00E1lne +PipelineEdit.exapand = Expandova\u0165 detail procesu +PipelineEdit.export = Export +PipelineEdit.export.fail.not.saved = Proces e\u0161te nebol ulo\u017Een\u00FD. Ulo\u017Ete a sk\u00FAste znova. +PipelineEdit.icon.align.bottom = Zarovna\u0165 nadol +PipelineEdit.icon.align.left = Zarovna\u0165 na\u013Eavo +PipelineEdit.icon.align.right = Zarovna\u0165 napravo +PipelineEdit.icon.align.top = Zarovna\u0165 nahor +PipelineEdit.icon.distribute.horizontally = Rozmiestni\u0165 horizont\u00E1lne +PipelineEdit.icon.distribute.vertically = Rozmiestni\u0165 vertik\u00E1lne +PipelineEdit.icon.undo = Vr\u00E1ti\u0165 zmeny +PipelineEdit.icon.zoomIn = Pribl\u00ED\u017Ei\u0165 +PipelineEdit.icon.zoomOut = Vdiali\u0165 +PipelineEdit.idLabel.id = ID +PipelineEdit.idValue.id = ID +PipelineEdit.minimize = Zmen\u0161i\u0165 detail procesu +PipelineEdit.name = N\u00E1zov +PipelineEdit.name.empty = N\u00E1zov mus\u00ED by\u0165 vyplnen\u00FD! +PipelineEdit.opening.error = Chyba pri otv\u00E1ran\u00ED detailu procesu. +PipelineEdit.opening.error.description = Nem\u00E1te opr\u00E1vnenie na prezeranie tohto procesu. +PipelineEdit.opening.error.notExisting = Chyba pri otv\u00E1ran\u00ED detailu procesu. PipelineEdit.opening.error.notExisting.description = Proces neexistuje. -PipelineEdit.pipeline.detail =

Detail procesu: ''{0}''

-PipelineEdit.pipeline.duplicate = Proces s rovnak\u00FDm menom v syst\u00E9me u\u017E existuje. -PipelineEdit.pipeline.error.saving = Chyba pri ukladan\u00ED procesu -PipelineEdit.pipeline.insert = Vlo\u017Ete meno procesu -PipelineEdit.pipeline.insert.description = Vlo\u017Ete popis procesu -PipelineEdit.pipeline.overwrite = Proces sa prepisuje -PipelineEdit.pipeline.overwrite.cancel = Zru\u0161i\u0165 -PipelineEdit.pipeline.overwrite.description = Editujete verziu, ktor\u00E1 nie je aktu\u00E1lna. Ak bude ulo\u017Een\u00E1, zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom bud\u00FA prep\u00EDsan\u00E9. -PipelineEdit.pipeline.overwrite.saveAnyway = Ulo\u017Ei\u0165 ka\u017Edop\u00E1dne -PipelineEdit.pipeline.save.public = Ulo\u017Ei\u0165 verejn\u00FD proces -PipelineEdit.pipeline.save.public.cancel = Zru\u0161i\u0165 -PipelineEdit.pipeline.save.public.description = Ak ulo\u017E\u00EDte proces ako verejn\u00FD, v\u0161etky \u0161abl\u00F3ny krokov a procesy, ktor\u00E9 pou\u017E\u00EDva bud\u00FA tie\u017E verejn\u00E9. Nebude mo\u017En\u00E9 ich revertova\u0165 na priv\u00E1tne. -PipelineEdit.pipeline.save.public.save = Ulo\u017Ei\u0165 -PipelineEdit.read-only.mode = Proces je otvoren\u00FD iba na \u010D\u00EDtanie -PipelineEdit.refresh = Obnovi\u0165 -PipelineEdit.rerun = Znovu spusti\u0165 -PipelineEdit.revert = Vr\u00E1ti\u0165 pod\u013Ea posledn\u00E9ho odovzdania (commit) -PipelineEdit.save = Ulo\u017Ei\u0165 -PipelineEdit.save.and.close = Ulo\u017Ei\u0165 & Zatvori\u0165 -PipelineEdit.save.and.commit = Ulo\u017Ei\u0165 & Odovzda\u0165 -PipelineEdit.save.close.debug = Ulo\u017Ei\u0165 & Zatvori\u0165 & Debugova\u0165 -PipelineEdit.save.successfull = Proces bol \u00FAspe\u0161ne ulo\u017Een\u00FD! -PipelineEdit.setMode.isDevelop.develop = V\u00FDvoj\u00E1rsky -PipelineEdit.setMode.isDevelop.standard = \u0160tandardn\u00FD -PipelineEdit.setMode.isStandard.develop = V\u00FDvoj\u00E1rsky -PipelineEdit.setMode.isStandard.standard = \u0160tandardn\u00FD -PipelineEdit.standardMode.caption.develop = V\u00FDvoj\u00E1rsky -PipelineEdit.standardMode.caption.standard = \u0160tandardn\u00FD -PipelineEdit.tab.develop = V\u00FDvoj\u00E1rsky -PipelineEdit.tab.standard = \u0160tandardn\u00FD -PipelineEdit.under.construction = Rozpracovan\u00FD -PipelineEdit.undo = Vr\u00E1ti\u0165 -PipelineEdit.user.browsing = Pou\u017E\u00EDvate\u013E {0} si tie\u017E prezer\u00E1 tento proces. -PipelineEdit.users.browsing = Pou\u017E\u00EDvatelia {0} tie\u017E prezeraj\u00FA tento proces. -PipelineEdit.validate = Validova\u0165 -PipelineEdit.visibility = Vidite\u013Enos\u0165 -PipelineEdit.visibility.help.public = Majte napam\u00E4ti, \u017Ee verejn\u00E9 procesy m\u00F4\u017Ee prehliada\u0165 a kop\u00EDrova\u0165 ka\u017Ed\u00FD pou\u017E\u00EDvate\u013E. Neukladajte do nich preto d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovacie men\u00E1, hesl\u00E1 a in\u00E9 s\u00FAkromn\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) -PipelineEdit.visibility.help.public.rw = Majte pros\u00EDm na pam\u00E4ti, \u017Ee verejn\u00E9 procesy m\u00F4\u017Ee prezera\u0165 a kop\u00EDrova\u0165, resp. aj modifikova\u0165 a spusti\u0165 (ak nie s\u00FA iba na \u010D\u00EDtanie) ak\u00FDko\u013Evek pou\u017E\u00EDvate\u013E. Dbajte preto na opatrnos\u0165 a neuv\u00E1dzajte v nich d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovanie meno, heslo a in\u00E9 s\u00FAkromn\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) -PipelineEdit.zoomIn = Pribl\u00ED\u017Ei\u0165 -PipelineEdit.zoomOut = Vzdiali\u0165 - -PipelineExport.close = Zatvori\u0165 -PipelineExport.dpu.export = Exportova\u0165 d\u00E1ta kroku -PipelineExport.dpu.jarName = N\u00E1zov jar s\u00FAboru kroku -PipelineExport.dpu.template = \u0160abl\u00F3na kroku -PipelineExport.dpu.version = Verzia -PipelineExport.dpus.used = Pou\u017Eit\u00E9 kroky: -PipelineExport.export = Export -PipelineExport.export.fail = Nepodarilo sa exportova\u0165 proces. -PipelineExport.export.fail2 = Nepodarilo sa exportova\u0165 proces. -PipelineExport.jar.export = Exportovat jar s\u00FAbory krokov +PipelineEdit.pipeline.detail =

Detail procesu: ''{0}''

+PipelineEdit.pipeline.duplicate = Proces s rovnak\u00FDm menom v syst\u00E9me u\u017E existuje. +PipelineEdit.pipeline.error.saving = Chyba pri ukladan\u00ED procesu +PipelineEdit.pipeline.insert = Vlo\u017Ete meno procesu +PipelineEdit.pipeline.insert.description = Vlo\u017Ete popis procesu +PipelineEdit.pipeline.overwrite = Proces sa prepisuje +PipelineEdit.pipeline.overwrite.cancel = Zru\u0161i\u0165 +PipelineEdit.pipeline.overwrite.description = Editujete verziu, ktor\u00E1 nie je aktu\u00E1lna. Ak bude ulo\u017Een\u00E1, zmeny vykonan\u00E9 in\u00FDm pou\u017E\u00EDvate\u013Eom bud\u00FA prep\u00EDsan\u00E9. +PipelineEdit.pipeline.overwrite.saveAnyway = Ulo\u017Ei\u0165 ka\u017Edop\u00E1dne +PipelineEdit.pipeline.save.public = Ulo\u017Ei\u0165 verejn\u00FD proces +PipelineEdit.pipeline.save.public.cancel = Zru\u0161i\u0165 +PipelineEdit.pipeline.save.public.description = Ak ulo\u017E\u00EDte proces ako verejn\u00FD, v\u0161etky \u0161abl\u00F3ny krokov a procesy, ktor\u00E9 pou\u017E\u00EDva bud\u00FA tie\u017E verejn\u00E9. Nebude mo\u017En\u00E9 ich revertova\u0165 na priv\u00E1tne. +PipelineEdit.pipeline.save.public.save = Ulo\u017Ei\u0165 +PipelineEdit.read-only.mode = Proces je otvoren\u00FD iba na \u010D\u00EDtanie +PipelineEdit.refresh = Obnovi\u0165 +PipelineEdit.rerun = Znovu spusti\u0165 +PipelineEdit.revert = Vr\u00E1ti\u0165 pod\u013Ea posledn\u00E9ho odovzdania (commit) +PipelineEdit.save = Ulo\u017Ei\u0165 +PipelineEdit.save.and.close = Ulo\u017Ei\u0165 & Zatvori\u0165 +PipelineEdit.save.and.commit = Ulo\u017Ei\u0165 & Odovzda\u0165 +PipelineEdit.save.close.debug = Ulo\u017Ei\u0165 & Zatvori\u0165 & Debugova\u0165 +PipelineEdit.save.successfull = Proces bol \u00FAspe\u0161ne ulo\u017Een\u00FD! +PipelineEdit.setMode.isDevelop.develop = V\u00FDvoj\u00E1rsky +PipelineEdit.setMode.isDevelop.standard = \u0160tandardn\u00FD +PipelineEdit.setMode.isStandard.develop = V\u00FDvoj\u00E1rsky +PipelineEdit.setMode.isStandard.standard = \u0160tandardn\u00FD +PipelineEdit.standardMode.caption.develop = V\u00FDvoj\u00E1rsky +PipelineEdit.standardMode.caption.standard = \u0160tandardn\u00FD +PipelineEdit.tab.develop = V\u00FDvoj\u00E1rsky +PipelineEdit.tab.standard = \u0160tandardn\u00FD +PipelineEdit.under.construction = Rozpracovan\u00FD +PipelineEdit.undo = Vr\u00E1ti\u0165 +PipelineEdit.user.browsing = Pou\u017E\u00EDvate\u013E {0} si tie\u017E prezer\u00E1 tento proces. +PipelineEdit.users.browsing = Pou\u017E\u00EDvatelia {0} tie\u017E prezeraj\u00FA tento proces. +PipelineEdit.validate = Validova\u0165 +PipelineEdit.visibility = Vidite\u013Enos\u0165 +PipelineEdit.visibility.help.public = Majte napam\u00E4ti, \u017Ee verejn\u00E9 procesy m\u00F4\u017Ee prehliada\u0165 a kop\u00EDrova\u0165 ka\u017Ed\u00FD pou\u017E\u00EDvate\u013E. Neukladajte do nich preto d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovacie men\u00E1, hesl\u00E1 a in\u00E9 s\u00FAkromn\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) +PipelineEdit.visibility.help.public.rw = Majte pros\u00EDm na pam\u00E4ti, \u017Ee verejn\u00E9 procesy m\u00F4\u017Ee prezera\u0165 a kop\u00EDrova\u0165, resp. aj modifikova\u0165 a spusti\u0165 (ak nie s\u00FA iba na \u010D\u00EDtanie) ak\u00FDko\u013Evek pou\u017E\u00EDvate\u013E. Dbajte preto na opatrnos\u0165 a neuv\u00E1dzajte v nich d\u00F4vern\u00E9 inform\u00E1cie (napr. prihlasovanie meno, heslo a in\u00E9 s\u00FAkromn\u00E9 identifika\u010Dn\u00E9 \u00FAdaje) +PipelineEdit.zoomIn = Pribl\u00ED\u017Ei\u0165 +PipelineEdit.zoomOut = Vzdiali\u0165 + +PipelineExport.close = Zatvori\u0165 +PipelineExport.dpu.export = Exportova\u0165 d\u00E1ta kroku +PipelineExport.dpu.jarName = N\u00E1zov jar s\u00FAboru kroku +PipelineExport.dpu.template = \u0160abl\u00F3na kroku +PipelineExport.dpu.version = Verzia +PipelineExport.dpus.used = Pou\u017Eit\u00E9 kroky: +PipelineExport.export = Export +PipelineExport.export.fail = Nepodarilo sa exportova\u0165 proces. +PipelineExport.export.fail2 = Nepodarilo sa exportova\u0165 proces. +PipelineExport.jar.export = Exportovat jar s\u00FAbory krokov PipelineExport.pipeline.export = Exportova\u0165 proces PipelineExport.schedule.export = Exportova\u0165 pl\u00E1nova\u010D procesu -PipelineHelper.backend.offline.dialog.cancel = Zru\u0161i\u0165 -PipelineHelper.backend.offline.dialog.message = Administra\u010Dn\u00FD syst\u00E9m je offline. Chcete napl\u00E1nova\u0165 spustenie procesu, ked bude syst\u00E9m online, alebo chcete spracovanie zru\u0161i\u0165? -PipelineHelper.backend.offline.dialog.name = Spracovanie procesu +PipelineHelper.backend.offline.dialog.cancel = Zru\u0161i\u0165 +PipelineHelper.backend.offline.dialog.message = Administra\u010Dn\u00FD syst\u00E9m je offline. Chcete napl\u00E1nova\u0165 spustenie procesu, ked bude syst\u00E9m online, alebo chcete spracovanie zru\u0161i\u0165? +PipelineHelper.backend.offline.dialog.name = Spracovanie procesu PipelineHelper.backend.offline.dialog.schedule = Napl\u00E1nova\u0165 -PipelineHelper.execution.started = Spracovanie procesu za\u010Dalo .. -PipelineHelper.execution.state.description = Stav spracovania sa medzi\u010Dasom zmenil. Skontrolujte a sk\u00FAste znova. -PipelineHelper.execution.state.title = Spracovanie nepl\u00E1novan\u00E9 / zru\u0161en\u00E9 -PipelineHelper.start.failed = Nepodarilo sa na\u0161tartova\u0165 spracovanie. -PipelineHelper.start.failed.description = Spracovanie procesu je v stave be\u017Eiaci alebo vo fronte. - -PipelineImport.archive.notSelected = \u017Diadny arch\u00EDv nebol vybran\u00FD. -PipelineImport.cancel = Zru\u0161i\u0165 -PipelineImport.dpu.jarName = Meno jar s\u00FAboru kroku -PipelineImport.dpu.template = \u0160abl\u00F3na kroku -PipelineImport.dpu.used = Kroky pou\u017Eit\u00E9 v importovan\u00FDch d\u00E1tov\u00FDch tokoch: -PipelineImport.dpu.version = Verzia -PipelineImport.import = Importova\u0165 -PipelineImport.import.fail = Import zlyhal. -PipelineImport.import.schedule = Importova\u0165 pl\u00E1novan\u00FD proces -PipelineImport.import.usersData = Importova\u0165 pou\u017E\u00EDvate\u013Esk\u00E9 d\u00E1ta -PipelineImport.install.dpu = Pros\u00EDm nain\u0161talujte kroky z tabu\u013Eky a potom spustite import znova -PipelineImport.missing.dpu.fail = Nie je mo\u017En\u00E9 importova\u0165 procesy z d\u00F4vodu ch\u00FDbaj\u00FAcich krokov. +PipelineHelper.execution.started = Spracovanie procesu za\u010Dalo .. +PipelineHelper.execution.state.description = Stav spracovania sa medzi\u010Dasom zmenil. Skontrolujte a sk\u00FAste znova. +PipelineHelper.execution.state.title = Spracovanie nepl\u00E1novan\u00E9 / zru\u0161en\u00E9 +PipelineHelper.start.failed = Nepodarilo sa na\u0161tartova\u0165 spracovanie. +PipelineHelper.start.failed.description = Spracovanie procesu je v stave be\u017Eiaci alebo vo fronte. + +PipelineImport.archive.notSelected = \u017Diadny arch\u00EDv nebol vybran\u00FD. +PipelineImport.cancel = Zru\u0161i\u0165 +PipelineImport.dpu.jarName = Meno jar s\u00FAboru kroku +PipelineImport.dpu.template = \u0160abl\u00F3na kroku +PipelineImport.dpu.used = Kroky pou\u017Eit\u00E9 v importovan\u00FDch d\u00E1tov\u00FDch tokoch: +PipelineImport.dpu.version = Verzia +PipelineImport.import = Importova\u0165 +PipelineImport.import.fail = Import zlyhal. +PipelineImport.import.schedule = Importova\u0165 pl\u00E1novan\u00FD proces +PipelineImport.import.usersData = Importova\u0165 pou\u017E\u00EDvate\u013Esk\u00E9 d\u00E1ta +PipelineImport.install.dpu = Pros\u00EDm nain\u0161talujte kroky z tabu\u013Eky a potom spustite import znova +PipelineImport.missing.dpu.fail = Nie je mo\u017En\u00E9 importova\u0165 procesy z d\u00F4vodu ch\u00FDbaj\u00FAcich krokov. PipelineImport.missing.dpu.template = \u0161abl\u00F3ny krokov -PipelineImport.missing.dpus = Kroky, ktor\u00E9 ch\u00FDbaj\u00FA v syst\u00E9me. In\u0161talujte ich pred importom: -PipelineImport.missing.jarName = Meno jar s\u00FAboru kroku -PipelineImport.missing.version = Verzia -PipelineImport.not.zip.file = Vybran\u00FD s\u00FAbor nie je zip s\u00FAbor -PipelineImport.pipeline.import = Import d\u00E1tov\u00E9ho toku -PipelineImport.read.file.fail = Nie je mo\u017En\u00E9 \u010D\u00EDta\u0165 s\u00FAbor [used_dpu.xml]\r\nkde s\u00FA pou\u017Eit\u00E9 kroky. -PipelineImport.upload.file = Odovzda\u0165 s\u00FAbor -PipelineImport.zip.archive = Zip arch\u00EDv: - -PipelineListPresenterImpl.copy.successfull = Proces {0} bol \u00FAspe\u0161ne skop\u00EDrovan\u00FD. -PipelineListPresenterImpl.delete.confirmation = Potvrdenie zmazania procesu +PipelineImport.missing.dpus = Kroky, ktor\u00E9 ch\u00FDbaj\u00FA v syst\u00E9me. In\u0161talujte ich pred importom: +PipelineImport.missing.jarName = Meno jar s\u00FAboru kroku +PipelineImport.missing.version = Verzia +PipelineImport.not.zip.file = Vybran\u00FD s\u00FAbor nie je zip s\u00FAbor +PipelineImport.pipeline.import = Import d\u00E1tov\u00E9ho toku +PipelineImport.read.file.fail = Nie je mo\u017En\u00E9 \u010D\u00EDta\u0165 s\u00FAbor [used_dpu.xml]\r\nkde s\u00FA pou\u017Eit\u00E9 kroky. +PipelineImport.upload.file = Odovzda\u0165 s\u00FAbor +PipelineImport.zip.archive = Zip arch\u00EDv: + +PipelineListPresenterImpl.copy.successfull = Proces {0} bol \u00FAspe\u0161ne skop\u00EDrovan\u00FD. +PipelineListPresenterImpl.delete.confirmation = Potvrdenie zmazania procesu PipelineListPresenterImpl.delete.confirmation.cancelButton = Zru\u0161i\u0165 PipelineListPresenterImpl.delete.confirmation.deleteButton = Zmaza\u0165 proces -PipelineListPresenterImpl.delete.dialog = Chceli by ste naozaj zmaza\u0165 "{0}" proces a v\u0161etky s\u00FAvisiace z\u00E1znamy (In\u0161tancie krokov napr.)? -PipelineListPresenterImpl.pipeline.running = Proces {0} m\u00E1 aktu\u00E1lne v stave (QUEUED alebo RUNNING) svoje spracovania a nem\u00F4\u017Ee by\u0165 teraz zmazan\u00FD! -PipelineListPresenterImpl.pipeline.scheduled = Tento proces je pl\u00E1novan\u00FD pou\u017E\u00EDvate\u013Eom(mi) {0}. Ka\u017Edop\u00E1dne zmaza\u0165? - -PipelineListViewImpl.actions = Akcie -PipelineListViewImpl.clear.filters = Vy\u010Disti\u0165 filtre -PipelineListViewImpl.clear.sort = Vy\u010Disti\u0165 triedenie -PipelineListViewImpl.copy = Kop\u00EDrova\u0165 +PipelineListPresenterImpl.delete.dialog = Chceli by ste naozaj zmaza\u0165 "{0}" proces a v\u0161etky s\u00FAvisiace z\u00E1znamy (In\u0161tancie krokov napr.)? +PipelineListPresenterImpl.pipeline.running = Proces {0} m\u00E1 aktu\u00E1lne v stave (QUEUED alebo RUNNING) svoje spracovania a nem\u00F4\u017Ee by\u0165 teraz zmazan\u00FD! +PipelineListPresenterImpl.pipeline.scheduled = Tento proces je pl\u00E1novan\u00FD pou\u017E\u00EDvate\u013Eom(mi) {0}. Ka\u017Edop\u00E1dne zmaza\u0165? + +PipelineListViewImpl.actions = Akcie +PipelineListViewImpl.clear.filters = Vy\u010Disti\u0165 filtre +PipelineListViewImpl.clear.sort = Vy\u010Disti\u0165 triedenie +PipelineListViewImpl.copy = Kop\u00EDrova\u0165 PipelineListViewImpl.create.pipeline = Vytvori\u0165 proces -PipelineListViewImpl.debug = Debugova\u0165 -PipelineListViewImpl.delete = Zmaza\u0165 -PipelineListViewImpl.edit = Editova\u0165 +PipelineListViewImpl.debug = Debugova\u0165 +PipelineListViewImpl.delete = Zmaza\u0165 +PipelineListViewImpl.edit = Editova\u0165 PipelineListViewImpl.import.pipeline = Importova\u0165 proces -PipelineListViewImpl.run = Spusti\u0165 -PipelineListViewImpl.schedule = Pl\u00E1nova\u0165 +PipelineListViewImpl.run = Spusti\u0165 +PipelineListViewImpl.schedule = Pl\u00E1nova\u0165 -PipelineStatus.last.run = Posledn\u00E9 spustenie: +PipelineStatus.last.run = Posledn\u00E9 spustenie: PipelineStatus.run.numbers = Po\u010Det spusten\u00ED: -PipelineStatus.status = Stav procesu: +PipelineStatus.status = Stav procesu: -PipelineViewAccessor.createdBy = Vytvoril -PipelineViewAccessor.id = Id +PipelineViewAccessor.createdBy = Vytvoril +PipelineViewAccessor.id = Id PipelineViewAccessor.lastExecution = Za\u010Diatok posledn\u00E9ho spracovania -PipelineViewAccessor.lastRun = Trvanie posledn\u00E9ho spracovania -PipelineViewAccessor.lastStatus = Posledn\u00FD stav -PipelineViewAccessor.name = N\u00E1zov +PipelineViewAccessor.lastRun = Trvanie posledn\u00E9ho spracovania +PipelineViewAccessor.lastStatus = Posledn\u00FD stav +PipelineViewAccessor.name = N\u00E1zov -PrefixCreate.cancel = Zru\u0161i\u0165 +PrefixCreate.cancel = Zru\u0161i\u0165 PrefixCreate.prefix.details = Detaily prefixu -PrefixCreate.prefix.empty = Meno prefixu mus\u00ED by\u0165 vyplnen\u00FD -PrefixCreate.prefix.exists = Prefix tohto mena u\u017E existuje -PrefixCreate.prefix.name = Meno prefixu: -PrefixCreate.save = Ulo\u017Ei\u0165 -PrefixCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia. Pr\u00ED\u010Dina: -PrefixCreate.uri.empty = URI prefix mus\u00ED by\u0165 vyplnen\u00FD -PrefixCreate.uri.prefix = URI prefix: -PrefixCreate.uri.wrong = Zl\u00FD form\u00E1t Uri +PrefixCreate.prefix.empty = Meno prefixu mus\u00ED by\u0165 vyplnen\u00FD +PrefixCreate.prefix.exists = Prefix tohto mena u\u017E existuje +PrefixCreate.prefix.name = Meno prefixu: +PrefixCreate.save = Ulo\u017Ei\u0165 +PrefixCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia. Pr\u00ED\u010Dina: +PrefixCreate.uri.empty = URI prefix mus\u00ED by\u0165 vyplnen\u00FD +PrefixCreate.uri.prefix = URI prefix: +PrefixCreate.uri.wrong = Zl\u00FD form\u00E1t Uri PresenterViewDisplay_no.component = Prehliada\u010D nevracia komponent: PresenterViewDisplay_view.not.component = N\u00E1h\u013Ead nie je komponent: -RDFQuery.constructItem.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. -RDFQuery.constructSize.invalidQuery = Tento dotaz pravdepodobne nie je platn\u00FD. -RDFQuery.constructSize.malformedQuery = Tento dotaz pravdepodobne nie je platn\u00FD construct dotaz. -RDFQuery.deleteAllItems.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. -RDFQuery.loadItems.dataUnit.description = Chyba: -RDFQuery.loadItems.dataUnit.name = Probl\u00E9m s d\u00E1tovou jednotkou -RDFQuery.loadItems.exception = Nebolo mo\u017En\u00E9 na\u010D\u00EDta\u0165 RDFDataUnit. -RDFQuery.loadItems.invalidQuery.description = Dotaz je neplatn\u00FD: -RDFQuery.loadItems.invalidQuery.name = Valid\u00E1tor dotazu -RDFQuery.loadItems.queryEvaluation.description = Chyba pri hodnoten\u00ED dotazu: -RDFQuery.loadItems.queryEvaluation.name = Hodnotenie dotazu -RDFQuery.queryType.invalidQuery = Neplatn\u00FD dotaz: -RDFQuery.resultSize.invalidQuery = Dan\u00FD dotaz: {0} mus\u00ED by\u0165 typu SELECT alebo CONSTRUCT. -RDFQuery.saveItems.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. -RDFQuery.selectSize.invalidQuery = Dotaz: {0} nem\u00E1 \u017Eiadne v\u00E4zby na inform\u00E1cie o jeho ve\u013Ekosti. -RDFQuery.selectSize.malformedQuery = Tento dotaz pravdepodobne nie je platn\u00FD. -RDFQuery.selectSize.notValid = Tento dotaz pravdepodobne nie je platn\u00FD. -RDFQuery.size.exception = Nebolo mo\u017En\u00E9 na\u010D\u00EDta\u0165 RDFDataUnit. -RDFQuery.size.invalidQuery.description = Tento dotaz nie je platn\u00FD. -RDFQuery.size.invalidQuery.name = Valid\u00E1tor dotazu +RDFQuery.constructItem.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. +RDFQuery.constructSize.invalidQuery = Tento dotaz pravdepodobne nie je platn\u00FD. +RDFQuery.constructSize.malformedQuery = Tento dotaz pravdepodobne nie je platn\u00FD construct dotaz. +RDFQuery.deleteAllItems.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. +RDFQuery.loadItems.dataUnit.description = Chyba: +RDFQuery.loadItems.dataUnit.name = Probl\u00E9m s d\u00E1tovou jednotkou +RDFQuery.loadItems.exception = Nebolo mo\u017En\u00E9 na\u010D\u00EDta\u0165 RDFDataUnit. +RDFQuery.loadItems.invalidQuery.description = Dotaz je neplatn\u00FD: +RDFQuery.loadItems.invalidQuery.name = Valid\u00E1tor dotazu +RDFQuery.loadItems.queryEvaluation.description = Chyba pri hodnoten\u00ED dotazu: +RDFQuery.loadItems.queryEvaluation.name = Hodnotenie dotazu +RDFQuery.queryType.invalidQuery = Neplatn\u00FD dotaz: +RDFQuery.resultSize.invalidQuery = Dan\u00FD dotaz: {0} mus\u00ED by\u0165 typu SELECT alebo CONSTRUCT. +RDFQuery.saveItems.unsupported = RDFLazyQueryContainer je na \u010D\u00EDtanie. +RDFQuery.selectSize.invalidQuery = Dotaz: {0} nem\u00E1 \u017Eiadne v\u00E4zby na inform\u00E1cie o jeho ve\u013Ekosti. +RDFQuery.selectSize.malformedQuery = Tento dotaz pravdepodobne nie je platn\u00FD. +RDFQuery.selectSize.notValid = Tento dotaz pravdepodobne nie je platn\u00FD. +RDFQuery.size.exception = Nebolo mo\u017En\u00E9 na\u010D\u00EDta\u0165 RDFDataUnit. +RDFQuery.size.invalidQuery.description = Tento dotaz nie je platn\u00FD. +RDFQuery.size.invalidQuery.name = Valid\u00E1tor dotazu RDFQueryFactory.exception = Trieda QueryDefinition nie je podporovan\u00E1. -RDFQueryView.closing.problem = Probl\u00E9m pri zatv\u00E1ran\u00ED pripojenia (connection) -RDFQueryView.consctuct.not.supported = Form\u00E1t pre CONSTRUCT dotaz nie je podporovan\u00FD ! +RDFQueryView.closing.problem = Probl\u00E9m pri zatv\u00E1ran\u00ED pripojenia (connection) +RDFQueryView.consctuct.not.supported = Form\u00E1t pre CONSTRUCT dotaz nie je podporovan\u00FD ! RDFQueryView.consctuct.not.supported.description = Tento form\u00E1t m\u00F4\u017Ee by\u0165 pou\u017Eit\u00FD iba pre dotaz typu SELECT ! -RDFQueryView.dataunit.problem = Probl\u00E9m s d\u00E1tovou jednotkou -RDFQueryView.download = Na\u010D\u00EDtanie -RDFQueryView.download.error = Vyskytla sa chyba pri na\u010D\u00EDtavan\u00ED s\u00FAboru! -RDFQueryView.download.query.not.valid = Dotaz nie je platn\u00FD: -RDFQueryView.download.validator = Valid\u00E1tor dotazu -RDFQueryView.format.empty = Form\u00E1t nebol vybran\u00FD! -RDFQueryView.format.empty.description = Pre na\u010D\u00EDtanie mus\u00ED by\u0165 vybran\u00FD form\u00E1t! -RDFQueryView.format.not.supported.construct = Tento form\u00E1t m\u00F4\u017Ee by\u0165 pou\u017Eit\u00FD iba pre CONSTRUCT dotaz ! -RDFQueryView.query = SPARQL Dotaz: -RDFQueryView.query.empty = Dotaz nebol zadan\u00FD. Pros\u00EDm zadajte dotaz pred spusten\u00EDm. -RDFQueryView.query.invalid = Neplatn\u00FD dotaz: -RDFQueryView.query.not.valid = Dotaz nie je platn\u00FD: -RDFQueryView.run = Spustit dotaz (query) -RDFQueryView.run.and.download = Spustite dotaz a na\u010D\u00EDtavanie -RDFQueryView.run.query.not.valid = Dotaz nie je platn\u00FD: -RDFQueryView.run.validator = Valid\u00E1tor dotazu -RDFQueryView.select.not.supported = Nie je podporovan\u00FD form\u00E1t pre dotaz SELECT ! -RDFQueryView.validator = Valid\u00E1tor dotazu - -RecordDetail.close = Zatvori\u0165 -RecordDetail.excecution = Spracovanie procesu: -RecordDetail.message = Spr\u00E1va: +RDFQueryView.dataunit.problem = Probl\u00E9m s d\u00E1tovou jednotkou +RDFQueryView.download = Na\u010D\u00EDtanie +RDFQueryView.download.error = Vyskytla sa chyba pri na\u010D\u00EDtavan\u00ED s\u00FAboru! +RDFQueryView.download.query.not.valid = Dotaz nie je platn\u00FD: +RDFQueryView.download.validator = Valid\u00E1tor dotazu +RDFQueryView.format.empty = Form\u00E1t nebol vybran\u00FD! +RDFQueryView.format.empty.description = Pre na\u010D\u00EDtanie mus\u00ED by\u0165 vybran\u00FD form\u00E1t! +RDFQueryView.format.not.supported.construct = Tento form\u00E1t m\u00F4\u017Ee by\u0165 pou\u017Eit\u00FD iba pre CONSTRUCT dotaz ! +RDFQueryView.query = SPARQL Dotaz: +RDFQueryView.query.empty = Dotaz nebol zadan\u00FD. Pros\u00EDm zadajte dotaz pred spusten\u00EDm. +RDFQueryView.query.invalid = Neplatn\u00FD dotaz: +RDFQueryView.query.not.valid = Dotaz nie je platn\u00FD: +RDFQueryView.run = Spustit dotaz (query) +RDFQueryView.run.and.download = Spustite dotaz a na\u010D\u00EDtavanie +RDFQueryView.run.query.not.valid = Dotaz nie je platn\u00FD: +RDFQueryView.run.validator = Valid\u00E1tor dotazu +RDFQueryView.select.not.supported = Nie je podporovan\u00FD form\u00E1t pre dotaz SELECT ! +RDFQueryView.validator = Valid\u00E1tor dotazu + +RecordDetail.close = Zatvori\u0165 +RecordDetail.excecution = Spracovanie procesu: +RecordDetail.message = Spr\u00E1va: RecordDetail.record.detail = Detail z\u00E1znamu RecordDetail.short.message = Kr\u00E1tka spr\u00E1va: -RecordDetail.time = \u010Cas: -RecordDetail.type = Typ: +RecordDetail.time = \u010Cas: +RecordDetail.type = Typ: RelationalQueryView.browser.not.available =  Prehliada\u010D nie je k dispoz\u00EDcii. -RepositoryFrontendHelper.construct.evaluation = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.construct.failed = Nepodarilo sa z\u00EDska\u0165 GraphQueryResult pou\u017Eit\u00EDm SPARQL konstrukcie dotazu. -RepositoryFrontendHelper.construct.malformed = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.construct2.evaluation = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.construct2.failed = Nepodarilo sa vytvori\u0165 s\u00FAbor s RDF d\u00E1tami. -RepositoryFrontendHelper.describe.resource = Zdroj {0} nie je typu URI. -RepositoryFrontendHelper.evaluationException = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.select.dataFault = Nepodarilo sa vytvori\u0165 s\u00FAbor s RDF d\u00E1tami. -RepositoryFrontendHelper.select.invalidQuery = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.construct.evaluation = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.construct.failed = Nepodarilo sa z\u00EDska\u0165 GraphQueryResult pou\u017Eit\u00EDm SPARQL konstrukcie dotazu. +RepositoryFrontendHelper.construct.malformed = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.construct2.evaluation = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.construct2.failed = Nepodarilo sa vytvori\u0165 s\u00FAbor s RDF d\u00E1tami. +RepositoryFrontendHelper.describe.resource = Zdroj {0} nie je typu URI. +RepositoryFrontendHelper.evaluationException = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.select.dataFault = Nepodarilo sa vytvori\u0165 s\u00FAbor s RDF d\u00E1tami. +RepositoryFrontendHelper.select.invalidQuery = Tento dotaz pravdepodobne nie je platn\u00FD. RepositoryFrontendHelper.selectAsTuples.evaluation = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.selectAsTuples.failed = Nepodarilo sa z\u00EDska\u0165 TupleQueryResult pou\u017Eit\u00EDm SPARQL dotazu. -RepositoryFrontendHelper.selectAsTuples.malformed = Tento dotaz pravdepodobne nie je platn\u00FD. -RepositoryFrontendHelper.update.exception = Pripojenie do repozit\u00E1ra je nedostupn\u00E9. -RepositoryFrontendHelper.update.not.executed = SPARQL dotaz nebol spracovan\u00FD! - -SchedulePipeline.are.introduced = , s\u00FA uveden\u00E9 viackr\u00E1t, pros\u00EDm opravte. -SchedulePipeline.cancel = Zru\u0161i\u0165 -SchedulePipeline.core = Jadro -SchedulePipeline.create.rule.failed = Nepodarilo sa vytvori\u0165 pravidl\u00E1 \u010Dasov\u00E9ho pl\u00E1nu. +RepositoryFrontendHelper.selectAsTuples.failed = Nepodarilo sa z\u00EDska\u0165 TupleQueryResult pou\u017Eit\u00EDm SPARQL dotazu. +RepositoryFrontendHelper.selectAsTuples.malformed = Tento dotaz pravdepodobne nie je platn\u00FD. +RepositoryFrontendHelper.update.exception = Pripojenie do repozit\u00E1ra je nedostupn\u00E9. +RepositoryFrontendHelper.update.not.executed = SPARQL dotaz nebol spracovan\u00FD! + +SchedulePipeline.are.introduced = , s\u00FA uveden\u00E9 viackr\u00E1t, pros\u00EDm opravte. +SchedulePipeline.cancel = Zru\u0161i\u0165 +SchedulePipeline.core = Jadro +SchedulePipeline.create.rule.failed = Nepodarilo sa vytvori\u0165 pravidl\u00E1 \u010Dasov\u00E9ho pl\u00E1nu. SchedulePipeline.create.rule.failed.description = \ Pros\u00EDm opravte toto pred ulo\u017Een\u00EDm. -SchedulePipeline.date.and.time.execution = D\u00E1tum a \u010Das prv\u00E9ho spracovania: -SchedulePipeline.days = Dni -SchedulePipeline.description = Popis -SchedulePipeline.email = Email -SchedulePipeline.email.at.least.once = Aspo\u0148 jeden mail mus\u00ED by\u0165 vyplnen\u00FD, aby bolo mo\u017En\u00E9 posiela\u0165 notifik\u00E1cie. -SchedulePipeline.email2 = Email -SchedulePipeline.emails = Emaily -SchedulePipeline.emails.format.wrong = , m\u00E1 zl\u00FD form\u00E1t. -SchedulePipeline.emails2 = Emaily -SchedulePipeline.every = in\u00FD -SchedulePipeline.every.day = ka\u017Ed\u00FD de\u0148 -SchedulePipeline.every.month = ka\u017Ed\u00FD mesiac -SchedulePipeline.every.week = ka\u017Ed\u00FD t\u00FD\u017Ede\u0148 -SchedulePipeline.format.wrong = \ m\u00E1 zl\u00FD form\u00E1t. -SchedulePipeline.hours = Hodiny -SchedulePipeline.id = ID -SchedulePipeline.immediate.start = \ - okam\u017Eit\u00FD \u0161tart -SchedulePipeline.interval = Interval: -SchedulePipeline.interval.positive = ; hodnota intervalu mus\u00ED by\u0165 kladn\u00E9 cel\u00E9 \u010D\u00EDslo " -SchedulePipeline.interval.positive2 = Hodnota intervalu mus\u00ED by\u0165 kladn\u00E9 cel\u00E9 \u010D\u00EDslo " -SchedulePipeline.is.introduced = \ je vlo\u017Een\u00E9 viackr\u00E1t, pros\u00EDm opravte. -SchedulePipeline.minutes = Min\u00FAty -SchedulePipeline.months = Mesiace -SchedulePipeline.new = Nov\u00FD -SchedulePipeline.notifications = Notifik\u00E1cie -SchedulePipeline.once = Len raz -SchedulePipeline.pipeline = Proces -SchedulePipeline.pipeline.empty = Proces mus\u00ED by\u0165 vyplnen\u00FD -SchedulePipeline.pipeline.filter = Typ filtrovania procesov -SchedulePipeline.pipeline.select = Vybra\u0165 proces: -SchedulePipeline.pipelines.available = Dostupn\u00E9 procesy -SchedulePipeline.pipelines.selected = Vybran\u00E9 procesy -SchedulePipeline.pipelines.selected.empty = Vybran\u00FD proces mus\u00ED by\u0165 vyplnen\u00FD -SchedulePipeline.positive.value = Hodnota mus\u00ED by\u0165 kladn\u00E1 -SchedulePipeline.priority = Priorita -SchedulePipeline.save = Ulo\u017Ei\u0165 -SchedulePipeline.save.success = Proces {0} napl\u00E1novan\u00FD \u00FAspe\u0161ne! -SchedulePipeline.schedule = Pl\u00E1nova\u0165 proces -SchedulePipeline.schedule.after = Napl\u00E1nujte spustenie procesu potom ako skon\u010Dia vybran\u00E9 procesy. -SchedulePipeline.schedule.periodically = Napl\u00E1nujte, aby bol proces sputen\u00FD automaticky v pevn\u00FDch intervaloch. -SchedulePipeline.scheduled.by = Napl\u00E1noval -SchedulePipeline.settings.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: -SchedulePipeline.timed.strictly = Pr\u00EDsne \u010Dasovan\u00FD -SchedulePipeline.tolerance = Tolerancia: -SchedulePipeline.tolerance.positive = ; Tolerancia mus\u00ED by\u0165 cel\u00E9 kladn\u00E9 \u010D\u00EDslo " -SchedulePipeline.tolerance.positive2 = Tolerancia mus\u00ED by\u0165 cel\u00E9 kladn\u00E9 \u010D\u00EDslo " -SchedulePipeline.use.default = Pou\u017Ei\u0165 predvolen\u00E9 notifika\u010Dn\u00E9 nastavenia -SchedulePipeline.value.minutes = min\u00FAty -SchedulePipeline.value.positive = Hodnota mus\u00ED by\u0165 kladn\u00E1 - -Scheduler.actions = Akcie -Scheduler.add.rule = Prida\u0165 nov\u00E9 pravidlo pl\u00E1novania -Scheduler.and.repeat = \ s peri\u00F3dou opakovania: -Scheduler.button.disable = Vypn\u00FA\u0165 -Scheduler.button.enable = Zapn\u00FA\u0165 -Scheduler.clear.filters = Vy\u010Disti\u0165 filtre -Scheduler.day.lte.four = dni -Scheduler.day.more = dn\u00ED -Scheduler.day.one = de\u0148 -Scheduler.delete = Zmaza\u0165 -Scheduler.delete.scheduling = Potvrdenie zmazania pravidiel \u010Dasov\u00E9ho pl\u00E1novania +SchedulePipeline.date.and.time.execution = D\u00E1tum a \u010Das prv\u00E9ho spracovania: +SchedulePipeline.days = Dni +SchedulePipeline.description = Popis +SchedulePipeline.email = Email +SchedulePipeline.email.at.least.once = Aspo\u0148 jeden mail mus\u00ED by\u0165 vyplnen\u00FD, aby bolo mo\u017En\u00E9 posiela\u0165 notifik\u00E1cie. +SchedulePipeline.email2 = Email +SchedulePipeline.emails = Emaily +SchedulePipeline.emails.format.wrong = , m\u00E1 zl\u00FD form\u00E1t. +SchedulePipeline.emails2 = Emaily +SchedulePipeline.every = in\u00FD +SchedulePipeline.every.day = ka\u017Ed\u00FD de\u0148 +SchedulePipeline.every.month = ka\u017Ed\u00FD mesiac +SchedulePipeline.every.week = ka\u017Ed\u00FD t\u00FD\u017Ede\u0148 +SchedulePipeline.format.wrong = \ m\u00E1 zl\u00FD form\u00E1t. +SchedulePipeline.hours = Hodiny +SchedulePipeline.id = ID +SchedulePipeline.immediate.start = \ - okam\u017Eit\u00FD \u0161tart +SchedulePipeline.interval = Interval: +SchedulePipeline.interval.positive = ; hodnota intervalu mus\u00ED by\u0165 kladn\u00E9 cel\u00E9 \u010D\u00EDslo " +SchedulePipeline.interval.positive2 = Hodnota intervalu mus\u00ED by\u0165 kladn\u00E9 cel\u00E9 \u010D\u00EDslo " +SchedulePipeline.is.introduced = \ je vlo\u017Een\u00E9 viackr\u00E1t, pros\u00EDm opravte. +SchedulePipeline.minutes = Min\u00FAty +SchedulePipeline.months = Mesiace +SchedulePipeline.new = Nov\u00FD +SchedulePipeline.notifications = Notifik\u00E1cie +SchedulePipeline.once = Len raz +SchedulePipeline.pipeline = Proces +SchedulePipeline.pipeline.empty = Proces mus\u00ED by\u0165 vyplnen\u00FD +SchedulePipeline.pipeline.filter = Typ filtrovania procesov +SchedulePipeline.pipeline.select = Vybra\u0165 proces: +SchedulePipeline.pipelines.available = Dostupn\u00E9 procesy +SchedulePipeline.pipelines.selected = Vybran\u00E9 procesy +SchedulePipeline.pipelines.selected.empty = Vybran\u00FD proces mus\u00ED by\u0165 vyplnen\u00FD +SchedulePipeline.positive.value = Hodnota mus\u00ED by\u0165 kladn\u00E1 +SchedulePipeline.priority = Priorita +SchedulePipeline.save = Ulo\u017Ei\u0165 +SchedulePipeline.save.success = Proces {0} napl\u00E1novan\u00FD \u00FAspe\u0161ne! +SchedulePipeline.schedule = Pl\u00E1nova\u0165 proces +SchedulePipeline.schedule.after = Napl\u00E1nujte spustenie procesu potom ako skon\u010Dia vybran\u00E9 procesy. +SchedulePipeline.schedule.periodically = Napl\u00E1nujte, aby bol proces sputen\u00FD automaticky v pevn\u00FDch intervaloch. +SchedulePipeline.scheduled.by = Napl\u00E1noval +SchedulePipeline.settings.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: +SchedulePipeline.timed.strictly = Pr\u00EDsne \u010Dasovan\u00FD +SchedulePipeline.tolerance = Tolerancia: +SchedulePipeline.tolerance.positive = ; Tolerancia mus\u00ED by\u0165 cel\u00E9 kladn\u00E9 \u010D\u00EDslo " +SchedulePipeline.tolerance.positive2 = Tolerancia mus\u00ED by\u0165 cel\u00E9 kladn\u00E9 \u010D\u00EDslo " +SchedulePipeline.use.default = Pou\u017Ei\u0165 predvolen\u00E9 notifika\u010Dn\u00E9 nastavenia +SchedulePipeline.value.minutes = min\u00FAty +SchedulePipeline.value.positive = Hodnota mus\u00ED by\u0165 kladn\u00E1 + +Scheduler.actions = Akcie +Scheduler.add.rule = Prida\u0165 nov\u00E9 pravidlo pl\u00E1novania +Scheduler.and.repeat = \ s peri\u00F3dou opakovania: +Scheduler.button.disable = Vypn\u00FA\u0165 +Scheduler.button.enable = Zapn\u00FA\u0165 +Scheduler.clear.filters = Vy\u010Disti\u0165 filtre +Scheduler.day.lte.four = dni +Scheduler.day.more = dn\u00ED +Scheduler.day.one = de\u0148 +Scheduler.delete = Zmaza\u0165 +Scheduler.delete.scheduling = Potvrdenie zmazania pravidiel \u010Dasov\u00E9ho pl\u00E1novania Scheduler.delete.scheduling.calcelButton = Zru\u0161i\u0165 Scheduler.delete.scheduling.deleteButton = Zmaza\u0165 -Scheduler.delete.scheduling.description = Zmaza\u0165 "{0}" pravidlo \u010Dasov\u00E9ho pl\u00E1novania procesu? -Scheduler.disabled = Vypn\u00FA\u0165 -Scheduler.edit = Editova\u0165 -Scheduler.enabled = Zapn\u00FA\u0165 -Scheduler.hour.lte.four = hodiny -Scheduler.hour.more = hod\u00EDn -Scheduler.hour.one = hodina -Scheduler.image.disabled = Vypn\u00FA\u0165 -Scheduler.image.enabled = Zapn\u00FA\u0165 -Scheduler.last = Posledn\u00FD -Scheduler.last.runTime = \u010Cas posledn\u00E9ho spustenia -Scheduler.minute.lte.four = min\u00FAty -Scheduler.minute.more = min\u00FAt -Scheduler.minute.one = min\u00FAta -Scheduler.month.lte.four = mesiace -Scheduler.month.more = mesiacov -Scheduler.month.one = mesiac -Scheduler.next = Nasleduj\u00FAci -Scheduler.pipeline = Proces -Scheduler.rule = Pravidlo -Scheduler.run.after.pipeline = Spustit po procese: -Scheduler.run.after.pipelines = Spustit po procesoch: -Scheduler.run.on = Spusti\u0165 {0} -Scheduler.scheduled.by = Napl\u00E1noval -Scheduler.status = Stav -Scheduler.week.lte.four = t\u00FD\u017Edne -Scheduler.week.more = t\u00FD\u017Ed\u0148ov -Scheduler.week.one = t\u00FD\u017Ede\u0148 -Scheduler.week.the.four = t\u00FD\u017Edne -Scheduler.year.lte.four = roky -Scheduler.year.more = rokov -Scheduler.year.one = rok - -Settings.default.form = Predvolen\u00E1 forma reportu o pl\u00E1novanom spracovan\u00ED procesu -Settings.default.form.detail = (m\u00F4\u017Ee by\u0165 prep\u00EDsan\u00E1 na konkr\u00E9tne pl\u00E1novan\u00E9 udalosti) : -Settings.email.notifications = Emailov\u00E9 notifik\u00E1cie pre: -Settings.failed.to.save = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: -Settings.failed.to.save.description = "Po\u010Det riadkov v tabu\u013Ek\u00E1ch" mus\u00ED by\u0165 \u010D\u00EDslo medzi 5 a 100. Zadali ste "{0}". Opravte to pros\u00EDm, \u017Ee pred ulo\u017Een\u00EDm. -Settings.failed.to.save.reason = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: -Settings.manage.debugAndWorkingData = Spr\u00E1va pracovn\u00FDch \u00FAdajov -Settings.manage.debugAndWorkingData.WDdelErr = Nie je mo\u017En\u00E9 zmaza\u0165 pracovn\u00E9 \u00FAdaje z vykon\u00E1vania procesu. -Settings.manage.debugAndWorkingData.btnDelete = Zmaza\u0165 -Settings.manage.debugAndWorkingData.lblDays = \u00A0 dn\u00ED.\u00A0 -Settings.manage.debugAndWorkingData.lblStatus = Stav: -Settings.manage.debugAndWorkingData.lblStatus.done = Stav: Hotovo -Settings.manage.debugAndWorkingData.lblStatus.running = Stav: Prebieha mazanie -Settings.manage.debugAndWorkingData.recordsDeleted = Po\u010Det vymazan\u00FDch z\u00E1znamov:\u00A0 -Settings.manage.debugAndWorkingData.txtDayCount.blank = Nie je zadan\u00FD po\u010Det dn\u00ED pre vymazanie. -Settings.manage.debugAndWorkingData.txtDayCount.negative = Po\u010Det dn\u00ED mus\u00ED by\u0165 nez\u00E1porn\u00E9 \u010D\u00EDslo. +Scheduler.delete.scheduling.description = Zmaza\u0165 "{0}" pravidlo \u010Dasov\u00E9ho pl\u00E1novania procesu? +Scheduler.disabled = Vypn\u00FA\u0165 +Scheduler.edit = Editova\u0165 +Scheduler.enabled = Zapn\u00FA\u0165 +Scheduler.error = Pl\u00E1novan\u00E9 vykonanie s ID={0} neexistuje! +Scheduler.hour.lte.four = hodiny +Scheduler.hour.more = hod\u00EDn +Scheduler.hour.one = hodina +Scheduler.image.disabled = Vypn\u00FA\u0165 +Scheduler.image.enabled = Zapn\u00FA\u0165 +Scheduler.last = Posledn\u00FD +Scheduler.last.runTime = \u010Cas posledn\u00E9ho spustenia +Scheduler.minute.lte.four = min\u00FAty +Scheduler.minute.more = min\u00FAt +Scheduler.minute.one = min\u00FAta +Scheduler.month.lte.four = mesiace +Scheduler.month.more = mesiacov +Scheduler.month.one = mesiac +Scheduler.next = Nasleduj\u00FAci +Scheduler.pipeline = Proces +Scheduler.rule = Pravidlo +Scheduler.run.after.pipeline = Spustit po procese: +Scheduler.run.after.pipelines = Spustit po procesoch: +Scheduler.run.on = Spusti\u0165 {0} +Scheduler.scheduled.by = Napl\u00E1noval +Scheduler.status = Stav +Scheduler.week.lte.four = t\u00FD\u017Edne +Scheduler.week.more = t\u00FD\u017Ed\u0148ov +Scheduler.week.one = t\u00FD\u017Ede\u0148 +Scheduler.week.the.four = t\u00FD\u017Edne +Scheduler.year.lte.four = roky +Scheduler.year.more = rokov +Scheduler.year.one = rok + +Settings.default.form = Predvolen\u00E1 forma reportu o pl\u00E1novanom spracovan\u00ED procesu +Settings.default.form.detail = (m\u00F4\u017Ee by\u0165 prep\u00EDsan\u00E1 na konkr\u00E9tne pl\u00E1novan\u00E9 udalosti) : +Settings.email.notifications = Emailov\u00E9 notifik\u00E1cie pre: +Settings.failed.to.save = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: +Settings.failed.to.save.description = "Po\u010Det riadkov v tabu\u013Ek\u00E1ch" mus\u00ED by\u0165 \u010D\u00EDslo medzi 5 a 100. Zadali ste "{0}". Opravte to pros\u00EDm, \u017Ee pred ulo\u017Een\u00EDm. +Settings.failed.to.save.reason = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: +Settings.manage.debugAndWorkingData = Spr\u00E1va pracovn\u00FDch \u00FAdajov +Settings.manage.debugAndWorkingData.WDdelErr = Nie je mo\u017En\u00E9 zmaza\u0165 pracovn\u00E9 \u00FAdaje z vykon\u00E1vania procesu. +Settings.manage.debugAndWorkingData.btnDelete = Zmaza\u0165 +Settings.manage.debugAndWorkingData.lblDays = \u00A0 dn\u00ED.\u00A0 +Settings.manage.debugAndWorkingData.lblStatus = Stav: +Settings.manage.debugAndWorkingData.lblStatus.done = Stav: Hotovo +Settings.manage.debugAndWorkingData.lblStatus.running = Stav: Prebieha mazanie +Settings.manage.debugAndWorkingData.recordsDeleted = Po\u010Det vymazan\u00FDch z\u00E1znamov:\u00A0 +Settings.manage.debugAndWorkingData.txtDayCount.blank = Nie je zadan\u00FD po\u010Det dn\u00ED pre vymazanie. +Settings.manage.debugAndWorkingData.txtDayCount.negative = Po\u010Det dn\u00ED mus\u00ED by\u0165 nez\u00E1porn\u00E9 \u010D\u00EDslo. Settings.manage.debugAndWorkingData.txtDayCount.notNumber = Po\u010Det dn\u00ED mus\u00ED by\u0165 cel\u00E9 \u010D\u00EDslo. -Settings.manage.debugAndWorkingData.txtDaysCount = Zmazanie v\u0161etk\u00FDch \u00FAdajov z behu procesu star\u0161\u00EDch ako\u00A0 -Settings.manage.users = Spr\u00E1va pou\u017E\u00EDvate\u013Eov -Settings.my.account = M\u00F4j \u00FA\u010Det -Settings.myAccount.save = Ulo\u017Ei\u0165 -Settings.myAccout.successfull = Nastavenia m\u00F4jho \u00FA\u010Dtu boli \u00FAspe\u0161ne ulo\u017Een\u00E9 -Settings.name.required = Meno je povinn\u00E9 -Settings.notifications.save = Ulo\u017Ei\u0165 -Settings.notifications.unsaved = Neulo\u017Een\u00E9 zmeny -Settings.notifications.unsaved.dialog = K dispoz\u00EDcii s\u00FA neulo\u017Een\u00E9 zmeny.\r\nPrajete si ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? -Settings.notifications.unsaved.discard = Zru\u0161i\u0165 zmeny -Settings.notifications.unsaved.save = Ulo\u017Ei\u0165 -Settings.prompt.name = meno -Settings.prompt.value = hodnota -Settings.range.validation = Pros\u00EDm vlo\u017Ete hodnotu medzi 5 a 100. -Settings.runtime.properties = Vlastnosti spustenia (runtime) -Settings.runtime.properties.invalid.value = Nepodarilo sa ulo\u017Ei\u0165. -Settings.runtime.properties.save = Ulo\u017Ei\u0165 -Settings.runtime.properties.save.failed = Nepodarilo sa ulo\u017Ei\u0165. -Settings.runtime.properties.save.failed.description = Dve alebo viac vlastnost\u00ED m\u00E1 rovnak\u00E9 meno: -Settings.runtime.properties.save.successfull = Ulo\u017Eenie \u00FAspe\u0161n\u00E9. -Settings.runtime.properties.save.successfull.description = Vlastnosti spustenia boli \u00FAspe\u0161ne ulo\u017Een\u00E9. -Settings.schedule.fail = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: -Settings.schedule.fail.description = ; "Po\u010Det riadkov v tabu\u013Ek\u00E1ch" mus\u00ED by\u0165 \u010D\u00EDslo medzi 5 a 100. Zadali ste "{0}". Opravte to pros\u00EDm, \u017Ee pred ulo\u017Een\u00EDm. -Settings.scheduler.notifications = Notifik\u00E1cie na\u010Dasovan\u00FDch procesov -Settings.table.row.count = Po\u010Det riadkov v tabu\u013Ek\u00E1ch: -Settings.unsaved.changes = Neulo\u017Een\u00E9 zmeny -Settings.unsaved.changes.dialog = K dispoz\u00EDcii s\u00FA neulo\u017Een\u00E9 zmeny.\r\nPrajete si ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? -Settings.unsaved.changes.discard = Zru\u0161i\u0165 zmeny -Settings.unsaved.changes.save = Ulo\u017Ei\u0165 -Settings.validation.email = Email -Settings.validation.email.minimum = Aspo\u0148 jeden mail mus\u00ED by\u0165 vyplnen\u00FD, aby bolo mo\u017En\u00E9 odosiela\u0165 notifik\u00E1cie. -Settings.validation.emails = Emaily -Settings.validation.emails.wrong.format = , m\u00E1 zl\u00FD form\u00E1t. -Settings.validation.wrong.format = \ m\u00E1 zl\u00FD form\u00E1t. +Settings.manage.debugAndWorkingData.txtDaysCount = Zmazanie v\u0161etk\u00FDch \u00FAdajov z behu procesu star\u0161\u00EDch ako\u00A0 +Settings.manage.users = Spr\u00E1va pou\u017E\u00EDvate\u013Eov +Settings.my.account = M\u00F4j \u00FA\u010Det +Settings.myAccount.save = Ulo\u017Ei\u0165 +Settings.myAccout.successfull = Nastavenia m\u00F4jho \u00FA\u010Dtu boli \u00FAspe\u0161ne ulo\u017Een\u00E9 +Settings.name.required = Meno je povinn\u00E9 +Settings.notifications.save = Ulo\u017Ei\u0165 +Settings.notifications.unsaved = Neulo\u017Een\u00E9 zmeny +Settings.notifications.unsaved.dialog = K dispoz\u00EDcii s\u00FA neulo\u017Een\u00E9 zmeny.\r\nPrajete si ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? +Settings.notifications.unsaved.discard = Zru\u0161i\u0165 zmeny +Settings.notifications.unsaved.save = Ulo\u017Ei\u0165 +Settings.prompt.name = meno +Settings.prompt.value = hodnota +Settings.range.validation = Pros\u00EDm vlo\u017Ete hodnotu medzi 5 a 100. +Settings.runtime.properties = Vlastnosti spustenia (runtime) +Settings.runtime.properties.invalid.value = Nepodarilo sa ulo\u017Ei\u0165. +Settings.runtime.properties.save = Ulo\u017Ei\u0165 +Settings.runtime.properties.save.failed = Nepodarilo sa ulo\u017Ei\u0165. +Settings.runtime.properties.save.failed.description = Dve alebo viac vlastnost\u00ED m\u00E1 rovnak\u00E9 meno: +Settings.runtime.properties.save.successfull = Ulo\u017Eenie \u00FAspe\u0161n\u00E9. +Settings.runtime.properties.save.successfull.description = Vlastnosti spustenia boli \u00FAspe\u0161ne ulo\u017Een\u00E9. +Settings.schedule.fail = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: +Settings.schedule.fail.description = ; "Po\u010Det riadkov v tabu\u013Ek\u00E1ch" mus\u00ED by\u0165 \u010D\u00EDslo medzi 5 a 100. Zadali ste "{0}". Opravte to pros\u00EDm, \u017Ee pred ulo\u017Een\u00EDm. +Settings.scheduler.notifications = Notifik\u00E1cie na\u010Dasovan\u00FDch procesov +Settings.table.row.count = Po\u010Det riadkov v tabu\u013Ek\u00E1ch: +Settings.unsaved.changes = Neulo\u017Een\u00E9 zmeny +Settings.unsaved.changes.dialog = K dispoz\u00EDcii s\u00FA neulo\u017Een\u00E9 zmeny.\r\nPrajete si ich ulo\u017Ei\u0165 alebo zru\u0161i\u0165? +Settings.unsaved.changes.discard = Zru\u0161i\u0165 zmeny +Settings.unsaved.changes.save = Ulo\u017Ei\u0165 +Settings.validation.email = Email +Settings.validation.email.minimum = Aspo\u0148 jeden mail mus\u00ED by\u0165 vyplnen\u00FD, aby bolo mo\u017En\u00E9 odosiela\u0165 notifik\u00E1cie. +Settings.validation.emails = Emaily +Settings.validation.emails.wrong.format = , m\u00E1 zl\u00FD form\u00E1t. +Settings.validation.wrong.format = \ m\u00E1 zl\u00FD form\u00E1t. SystemMessages.authenticationErrorCaption = Probl\u00E9m s autentifik\u00E1ciou SystemMessages.authenticationErrorMessage = Skontrolujte v\u0161etky neulo\u017Een\u00E9 d\u00E1ta a kliknite sem alebo pokra\u010Dujte stla\u010Den\u00EDm ESC @@ -794,52 +795,52 @@ SystemMessages.outOfSyncMessage = Nie\u010Do zapr\u00ED\u010Dinilo, \u SystemMessages.sessionExpiredCaption = Spojenie vypr\u0161alo SystemMessages.sessionExpiredMessage = Skontrolujte v\u0161etky neulo\u017Een\u00E9 d\u00E1ta a kliknite sem alebo pokra\u010Dujte stla\u010Den\u00EDm ESC. -UploadInfoWindow.cancel = Zru\u0161i\u0165 +UploadInfoWindow.cancel = Zru\u0161i\u0165 UploadInfoWindow.current.state = Aktu\u00E1lny stav -UploadInfoWindow.file.name = Meno s\u00FAboru -UploadInfoWindow.idle = Ne\u010Dinn\u00FD -UploadInfoWindow.processed = Spracovan\u00FDch {0} k bytes z {1} k. -UploadInfoWindow.progress = Progres -UploadInfoWindow.status = Stav -UploadInfoWindow.upload.idle = Ne\u010Dinn\u00FD -UploadInfoWindow.uploading = Posielanie - -UserCreate.cancel = Zru\u0161i\u0165 -UserCreate.email = E-mail: -UserCreate.email.empty = e-mail mus\u00ED by\u0165 vyplnen\u00FD -UserCreate.full.empty = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno mus\u00ED by\u0165 vyplnen\u00E9 -UserCreate.full.user.name = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno: -UserCreate.password = Heslo: +UploadInfoWindow.file.name = Meno s\u00FAboru +UploadInfoWindow.idle = Ne\u010Dinn\u00FD +UploadInfoWindow.processed = Spracovan\u00FDch {0} k bytes z {1} k. +UploadInfoWindow.progress = Progres +UploadInfoWindow.status = Stav +UploadInfoWindow.upload.idle = Ne\u010Dinn\u00FD +UploadInfoWindow.uploading = Posielanie + +UserCreate.cancel = Zru\u0161i\u0165 +UserCreate.email = E-mail: +UserCreate.email.empty = e-mail mus\u00ED by\u0165 vyplnen\u00FD +UserCreate.full.empty = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno mus\u00ED by\u0165 vyplnen\u00E9 +UserCreate.full.user.name = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno: +UserCreate.password = Heslo: UserCreate.password.confirmation = Heslo
potvrdenie: -UserCreate.password.different = Heslo vlo\u017Een\u00E9 a potvrdzuj\u00FAce s\u00FA rozdielne -UserCreate.password.different2 = Heslo vlo\u017Een\u00E9 a potvrdzuj\u00FAce s\u00FA rozdielne -UserCreate.password.empty = Heslo nem\u00F4\u017Ee by\u0165 pr\u00E1zdne -UserCreate.password.empty2 = Heslo nem\u00F4\u017Ee by\u0165 pr\u00E1zdne -UserCreate.roles.atLeastOne = aspo\u0148 jedna rola mus\u00ED by\u0165 nastaven\u00E1 -UserCreate.roles.defined = Definovan\u00E9 role: -UserCreate.roles.set = Nastavi\u0165 role: -UserCreate.save = Ulo\u017Ei\u0165 -UserCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: -UserCreate.user.details = Detaily o pou\u017E\u00EDvate\u013Eovi -UserCreate.user.exists = Pou\u017E\u00EDvate\u013E s t\u00FDmto menom u\u017E existuje -UserCreate.user.filled = Pou\u017E\u00EDvate\u013Esk\u00E9 meno mus\u00ED by\u0165 vyplnen\u00E9 -UserCreate.user.name = Pou\u017E\u00EDvate\u013Esk\u00E9 meno: -UserCreate.wrong.confirmation = Potvrdenie hesla je nespr\u00E1vne -UserCreate.wrong.confirmation2 = Potvrdenie hesla je nespr\u00E1vne -UserCreate.wrong.confirmation3 = Potvrdenie hesla je nespr\u00E1vne -UserCreate.wrong.confirmation4 = Potvrdenie hesla je nespr\u00E1vne -UserCreate.wrong.email = nespr\u00E1vny e-mail form\u00E1t - -UsersList.actions = Akcie -UsersList.cancel.option = Zru\u0161i\u0165 -UsersList.delete = Zmaza\u0165 +UserCreate.password.different = Heslo vlo\u017Een\u00E9 a potvrdzuj\u00FAce s\u00FA rozdielne +UserCreate.password.different2 = Heslo vlo\u017Een\u00E9 a potvrdzuj\u00FAce s\u00FA rozdielne +UserCreate.password.empty = Heslo nem\u00F4\u017Ee by\u0165 pr\u00E1zdne +UserCreate.password.empty2 = Heslo nem\u00F4\u017Ee by\u0165 pr\u00E1zdne +UserCreate.roles.atLeastOne = aspo\u0148 jedna rola mus\u00ED by\u0165 nastaven\u00E1 +UserCreate.roles.defined = Definovan\u00E9 role: +UserCreate.roles.set = Nastavi\u0165 role: +UserCreate.save = Ulo\u017Ei\u0165 +UserCreate.save.failed = Nepodarilo sa ulo\u017Ei\u0165 nastavenia, pr\u00ED\u010Dina: +UserCreate.user.details = Detaily o pou\u017E\u00EDvate\u013Eovi +UserCreate.user.exists = Pou\u017E\u00EDvate\u013E s t\u00FDmto menom u\u017E existuje +UserCreate.user.filled = Pou\u017E\u00EDvate\u013Esk\u00E9 meno mus\u00ED by\u0165 vyplnen\u00E9 +UserCreate.user.name = Pou\u017E\u00EDvate\u013Esk\u00E9 meno: +UserCreate.wrong.confirmation = Potvrdenie hesla je nespr\u00E1vne +UserCreate.wrong.confirmation2 = Potvrdenie hesla je nespr\u00E1vne +UserCreate.wrong.confirmation3 = Potvrdenie hesla je nespr\u00E1vne +UserCreate.wrong.confirmation4 = Potvrdenie hesla je nespr\u00E1vne +UserCreate.wrong.email = nespr\u00E1vny e-mail form\u00E1t + +UsersList.actions = Akcie +UsersList.cancel.option = Zru\u0161i\u0165 +UsersList.delete = Zmaza\u0165 UsersList.delete.confirmation = Potvrdenie zmazania pou\u017E\u00EDvate\u013Ea -UsersList.delete.option = Zmaza\u0165 -UsersList.detele.message = Odstr\u00E1ni\u0165 {0} pou\u017E\u00EDvate\u013Ea? -UsersList.edit = Editova\u0165 -UsersList.filter.clear = Vy\u010Disti\u0165 filtre -UsersList.full.username = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno: -UsersList.id = Id -UsersList.roles = Rola(e) -UsersList.user.create = Vytvori\u0165 nov\u00E9ho pou\u017E\u00EDvate\u013Ea -UsersList.username = Pou\u017E\u00EDvate\u013E +UsersList.delete.option = Zmaza\u0165 +UsersList.detele.message = Odstr\u00E1ni\u0165 {0} pou\u017E\u00EDvate\u013Ea? +UsersList.edit = Editova\u0165 +UsersList.filter.clear = Vy\u010Disti\u0165 filtre +UsersList.full.username = \u00DApln\u00E9 u\u017E\u00EDvate\u013Esk\u00E9 meno: +UsersList.id = Id +UsersList.roles = Rola(e) +UsersList.user.create = Vytvori\u0165 nov\u00E9ho pou\u017E\u00EDvate\u013Ea +UsersList.username = Pou\u017E\u00EDvate\u013E